2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: combobox.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxComboBox
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxComboBox
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-12 23:27:36 +00:00
|
|
|
A combobox is like a combination of an edit control and a listbox. It can
|
|
|
|
be displayed as static list with editable or read-only text field; or a
|
|
|
|
drop-down list with text field; or a drop-down list without a text field.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-12 23:27:36 +00:00
|
|
|
A combobox permits a single selection only. Combobox items are numbered
|
|
|
|
from zero.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-12 23:27:36 +00:00
|
|
|
If you need a customized combobox, have a look at wxComboCtrl,
|
|
|
|
wxOwnerDrawnComboBox, wxComboPopup and the ready-to-use wxBitmapComboBox.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@beginStyleTable
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCB_SIMPLE}
|
2008-03-08 13:52:38 +00:00
|
|
|
Creates a combobox with a permanently displayed list. Windows only.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCB_DROPDOWN}
|
2008-03-08 13:52:38 +00:00
|
|
|
Creates a combobox with a drop-down list.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCB_READONLY}
|
2008-04-12 23:27:36 +00:00
|
|
|
Same as wxCB_DROPDOWN but only the strings specified as the combobox
|
|
|
|
choices can be selected, it is impossible to select (even from a
|
|
|
|
program) a string which is not in the choices list.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCB_SORT}
|
2008-03-08 13:52:38 +00:00
|
|
|
Sorts the entries in the list alphabetically.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxTE_PROCESS_ENTER}
|
2008-03-08 13:52:38 +00:00
|
|
|
The control will generate the event wxEVT_COMMAND_TEXT_ENTER
|
|
|
|
(otherwise pressing Enter key is either processed internally by the
|
|
|
|
control or used for navigation between dialog controls). Windows
|
|
|
|
only.
|
|
|
|
@endStyleTable
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-28 16:19:12 +00:00
|
|
|
@beginEventTable{wxCommandEvent}
|
2008-04-06 14:43:04 +00:00
|
|
|
@event{EVT_COMBOBOX(id, func)}
|
2008-03-08 13:52:38 +00:00
|
|
|
Process a wxEVT_COMMAND_COMBOBOX_SELECTED event, when an item on
|
2008-04-12 23:27:36 +00:00
|
|
|
the list is selected. Note that calling GetValue() returns the new
|
2008-03-08 13:52:38 +00:00
|
|
|
value of selection.
|
2008-04-06 14:43:04 +00:00
|
|
|
@event{EVT_TEXT(id, func)}
|
2008-03-08 13:52:38 +00:00
|
|
|
Process a wxEVT_COMMAND_TEXT_UPDATED event, when the combobox text
|
|
|
|
changes.
|
2008-04-06 14:43:04 +00:00
|
|
|
@event{EVT_TEXT_ENTER(id, func)}
|
2008-03-08 13:52:38 +00:00
|
|
|
Process a wxEVT_COMMAND_TEXT_ENTER event, when RETURN is pressed in
|
|
|
|
the combobox (notice that the combobox must have been created with
|
|
|
|
wxTE_PROCESS_ENTER style to receive this event).
|
|
|
|
@endEventTable
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxcore}
|
|
|
|
@category{ctrl}
|
2008-10-13 08:05:18 +00:00
|
|
|
@appearance{combobox.png}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-10 15:24:38 +00:00
|
|
|
@see wxListBox, wxTextCtrl, wxChoice, wxCommandEvent
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-04-11 22:12:31 +00:00
|
|
|
class wxComboBox : public wxControl, public wxItemContainer
|
2008-03-08 13:52:38 +00:00
|
|
|
{
|
|
|
|
public:
|
2008-04-12 23:27:36 +00:00
|
|
|
/**
|
|
|
|
Default constructor.
|
|
|
|
*/
|
|
|
|
wxComboBox();
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Constructor, creating and showing a combobox.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param parent
|
2008-03-09 12:33:59 +00:00
|
|
|
Parent window. Must not be @NULL.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param id
|
2008-03-09 12:33:59 +00:00
|
|
|
Window identifier. The value wxID_ANY indicates a default value.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param value
|
2008-03-09 12:33:59 +00:00
|
|
|
Initial selection string. An empty string indicates no selection.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param pos
|
2008-03-09 12:33:59 +00:00
|
|
|
Window position.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param size
|
2008-04-12 23:27:36 +00:00
|
|
|
Window size. If wxDefaultSize is specified then the window is sized
|
2008-03-09 12:33:59 +00:00
|
|
|
appropriately.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param n
|
2008-03-09 12:33:59 +00:00
|
|
|
Number of strings with which to initialise the control.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param choices
|
2008-03-09 12:33:59 +00:00
|
|
|
An array of strings with which to initialise the control.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param style
|
2008-03-09 12:33:59 +00:00
|
|
|
Window style. See wxComboBox.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param validator
|
2008-03-09 12:33:59 +00:00
|
|
|
Window validator.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param name
|
2008-03-09 12:33:59 +00:00
|
|
|
Window name.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-04-12 23:27:36 +00:00
|
|
|
@beginWxPythonOnly
|
|
|
|
The wxComboBox constructor in wxPython reduces the @a n and @a choices
|
|
|
|
arguments are to a single argument, which is a list of strings.
|
|
|
|
@endWxPythonOnly
|
|
|
|
|
2008-03-09 12:33:59 +00:00
|
|
|
@see Create(), wxValidator
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
wxComboBox(wxWindow* parent, wxWindowID id,
|
2009-01-10 18:31:45 +00:00
|
|
|
const wxString& value = wxEmptyString,
|
2008-03-08 14:43:31 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0,
|
2008-03-09 12:33:59 +00:00
|
|
|
const wxString choices[] = NULL,
|
2008-03-08 14:43:31 +00:00
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2009-01-10 23:44:44 +00:00
|
|
|
const wxString& name = wxComboBoxNameStr);
|
2008-08-30 12:44:43 +00:00
|
|
|
/**
|
|
|
|
Constructor, creating and showing a combobox.
|
|
|
|
|
|
|
|
@param parent
|
|
|
|
Parent window. Must not be @NULL.
|
|
|
|
@param id
|
|
|
|
Window identifier. The value wxID_ANY indicates a default value.
|
|
|
|
@param value
|
|
|
|
Initial selection string. An empty string indicates no selection.
|
|
|
|
@param pos
|
|
|
|
Window position.
|
|
|
|
@param size
|
|
|
|
Window size. If wxDefaultSize is specified then the window is sized
|
|
|
|
appropriately.
|
|
|
|
@param choices
|
|
|
|
An array of strings with which to initialise the control.
|
|
|
|
@param style
|
|
|
|
Window style. See wxComboBox.
|
|
|
|
@param validator
|
|
|
|
Window validator.
|
|
|
|
@param name
|
|
|
|
Window name.
|
|
|
|
|
|
|
|
@beginWxPythonOnly
|
|
|
|
The wxComboBox constructor in wxPython reduces the @a n and @a choices
|
|
|
|
arguments are to a single argument, which is a list of strings.
|
|
|
|
@endWxPythonOnly
|
|
|
|
|
|
|
|
@see Create(), wxValidator
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
wxComboBox(wxWindow* parent, wxWindowID id,
|
|
|
|
const wxString& value,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2009-01-10 23:44:44 +00:00
|
|
|
const wxString& name = wxComboBoxNameStr);
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor, destroying the combobox.
|
|
|
|
*/
|
2008-09-22 19:01:17 +00:00
|
|
|
virtual ~wxComboBox();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
2008-04-12 23:27:36 +00:00
|
|
|
//@{
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
Creates the combobox for two-step construction. Derived classes should
|
|
|
|
call or replace this function. See wxComboBox() for further details.
|
|
|
|
*/
|
2009-01-10 22:10:54 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString& value = wxEmptyString,
|
2008-04-12 23:27:36 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2009-01-10 22:10:54 +00:00
|
|
|
int n = 0, const wxString choices[] = (const wxString *) NULL,
|
2008-04-12 23:27:36 +00:00
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2009-01-10 22:10:54 +00:00
|
|
|
const wxString& name = wxComboBoxNameStr);
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
2008-04-12 23:27:36 +00:00
|
|
|
const wxString& value,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2009-01-10 22:10:54 +00:00
|
|
|
const wxString& name = wxComboBoxNameStr);
|
2008-04-12 23:27:36 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns @true if the combobox is editable and there is a text selection
|
|
|
|
to copy to the clipboard. Only available on Windows.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual bool CanCopy() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
Returns @true if the combobox is editable and there is a text selection
|
|
|
|
to copy to the clipboard. Only available on Windows.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual bool CanCut() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
Returns @true if the combobox is editable and there is text on the
|
|
|
|
clipboard that can be pasted into the text field. Only available on
|
|
|
|
Windows.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual bool CanPaste() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
Returns @true if the combobox is editable and the last undo can be
|
|
|
|
redone. Only available on Windows.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual bool CanRedo() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
Returns @true if the combobox is editable and the last edit can be
|
|
|
|
undone. Only available on Windows.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual bool CanUndo() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Copies the selected text to the clipboard.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Copy();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Copies the selected text to the clipboard and removes the selection.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Cut();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
This function does the same things as wxChoice::GetCurrentSelection()
|
|
|
|
and returns the item currently selected in the dropdown list if it's
|
|
|
|
open or the same thing as wxControlWithItems::GetSelection() otherwise.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-22 19:01:17 +00:00
|
|
|
virtual int GetCurrentSelection() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the insertion point for the combobox's text field.
|
2008-04-12 23:27:36 +00:00
|
|
|
|
2008-04-01 13:59:28 +00:00
|
|
|
@note Under wxMSW, this function always returns 0 if the combobox
|
2008-04-12 23:27:36 +00:00
|
|
|
doesn't have the focus.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual long GetInsertionPoint() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the last position in the combobox text field.
|
|
|
|
*/
|
2008-10-28 15:36:26 +00:00
|
|
|
virtual long GetLastPosition() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
This is the same as wxTextCtrl::GetSelection() for the text control
|
|
|
|
which is part of the combobox. Notice that this is a different method
|
|
|
|
from wxControlWithItems::GetSelection().
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
Currently this method is only implemented in wxMSW and wxGTK.
|
|
|
|
*/
|
2008-09-22 19:01:17 +00:00
|
|
|
virtual void GetSelection(long* from, long* to) const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the current value in the combobox text field.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual wxString GetValue() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Pastes text from the clipboard to the text field.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Paste();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Redoes the last undo in the text field. Windows only.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Redo();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Removes the text between the two positions in the combobox text field.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param from
|
2008-03-09 12:33:59 +00:00
|
|
|
The first position.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param to
|
2008-03-09 12:33:59 +00:00
|
|
|
The last position.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Remove(long from, long to);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-12 23:27:36 +00:00
|
|
|
Replaces the text between two positions with the given text, in the
|
|
|
|
combobox text field.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param from
|
2008-03-09 12:33:59 +00:00
|
|
|
The first position.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param to
|
2008-03-09 12:33:59 +00:00
|
|
|
The second position.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param text
|
2008-03-09 12:33:59 +00:00
|
|
|
The text to insert.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Replace(long from, long to, const wxString& text);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the insertion point in the combobox text field.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param pos
|
2008-03-09 12:33:59 +00:00
|
|
|
The new insertion point.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void SetInsertionPoint(long pos);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the insertion point at the end of the combobox text field.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void SetInsertionPointEnd();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Selects the text between the two positions, in the combobox text field.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param from
|
2008-03-09 12:33:59 +00:00
|
|
|
The first position.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param to
|
2008-03-09 12:33:59 +00:00
|
|
|
The second position.
|
2008-04-12 23:27:36 +00:00
|
|
|
|
|
|
|
@beginWxPythonOnly
|
|
|
|
This method is called SetMark() in wxPython, "SetSelection" is kept for
|
|
|
|
wxControlWithItems::SetSelection().
|
|
|
|
@endWxPythonOnly
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-09-22 19:01:17 +00:00
|
|
|
virtual void SetSelection(long from, long to);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the text for the combobox text field.
|
2008-03-28 16:19:12 +00:00
|
|
|
|
|
|
|
@note For a combobox with @c wxCB_READONLY style the string must be in
|
2008-04-12 23:27:36 +00:00
|
|
|
the combobox choices list, otherwise the call to SetValue() is
|
|
|
|
ignored.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param text
|
2008-03-09 12:33:59 +00:00
|
|
|
The text to set.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void SetValue(const wxString& text);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Undoes the last edit in the text field. Windows only.
|
|
|
|
*/
|
2008-10-13 11:09:56 +00:00
|
|
|
virtual void Undo();
|
2008-03-08 13:52:38 +00:00
|
|
|
};
|
2008-03-10 15:24:38 +00:00
|
|
|
|