1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for wxComboBox
7 // Created: 10-June-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
18 MAKE_CONST_WXSTRING(ComboBoxNameStr);
20 //---------------------------------------------------------------------------
25 "A combobox is like a combination of an edit control and a listbox. It can be
26 displayed as static list with editable or read-only text field; or a drop-down
27 list with text field.");
31 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
34 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
36 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
37 the combobox choices can be selected, it is impossible
38 to select (even from a program) a string which is not in
41 wx.CB_SORT: Sorts the entries in the list alphabetically.
45 EVT_COMBOBOX: Sent when an item on the list is selected.
46 EVT_TEXT: Sent when the combobox text changes.
52 class wxComboBox : public wxChoice
54 class wxComboBox : public wxControl, public wxItemContainer
58 %pythonAppend wxComboBox "self._setOORInfo(self)"
59 %pythonAppend wxComboBox() ""
62 wxComboBox(wxWindow* parent, wxWindowID id,
63 const wxString& value = wxPyEmptyString,
64 const wxPoint& pos = wxDefaultPosition,
65 const wxSize& size = wxDefaultSize,
66 const wxArrayString& choices = wxPyEmptyStringArray,
68 const wxValidator& validator = wxDefaultValidator,
69 const wxString& name = wxPyComboBoxNameStr),
70 "__init__(Window parent, int id, String value=EmptyString,\n"
71 " Point pos=DefaultPosition, Size size=DefaultSize,\n"
72 " List choices=[], long style=0, Validator validator=DefaultValidator,\n"
73 " String name=ComboBoxNameStr) -> ComboBox",
74 "Constructor, creates and shows a ComboBox control.");
78 "Precreate a ComboBox control for 2-phase creation.",
83 bool, Create(wxWindow *parent, wxWindowID id,
84 const wxString& value = wxPyEmptyString,
85 const wxPoint& pos = wxDefaultPosition,
86 const wxSize& size = wxDefaultSize,
87 const wxArrayString& choices = wxPyEmptyStringArray,
89 const wxValidator& validator = wxDefaultValidator,
90 const wxString& name = wxPyChoiceNameStr),
91 "Create(Window parent, int id, String value=EmptyString,\n"
92 " Point pos=DefaultPosition, Size size=DefaultSize,\n"
93 " List choices=[], long style=0, Validator validator=DefaultValidator,\n"
94 " String name=ChoiceNameStr) -> bool",
95 "Actually create the GUI Choice control for 2-phase creation");
99 virtual wxString , GetValue() const,
100 "Returns the current value in the combobox text field.");
103 virtual void , SetValue(const wxString& value),
108 virtual void , Copy(),
109 "Copies the selected text to the clipboard.");
112 virtual void , Cut(),
113 "Copies the selected text to the clipboard and removes the selection.");
116 virtual void , Paste(),
117 "Pastes text from the clipboard to the text field.");
121 virtual void , SetInsertionPoint(long pos),
122 "Sets the insertion point in the combobox text field.");
125 virtual long , GetInsertionPoint() const,
126 "Returns the insertion point for the combobox's text field.");
129 virtual long , GetLastPosition() const,
130 "Returns the last position in the combobox text field.");
133 virtual void , Replace(long from, long to, const wxString& value),
134 "Replaces the text between two positions with the given text, in the\n"
135 "combobox text field.");
138 void , SetSelection(int n),
139 "Selects the text between the two positions, in the combobox text field.");
141 %name(SetMark) virtual void SetSelection(long from, long to);
144 virtual void , SetEditable(bool editable),
149 virtual void , SetInsertionPointEnd(),
150 "Sets the insertion point at the end of the combobox text field.");
153 virtual void , Remove(long from, long to),
154 "Removes the text between the two positions in the combobox text field.");
158 //---------------------------------------------------------------------------