1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for wxControl and other base classes
7 // Created: 10-June-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
18 MAKE_CONST_WXSTRING(ControlNameStr);
20 //---------------------------------------------------------------------------
25 "This is the base class for a control or 'widget'.
27 A control is generally a small window which processes user input
28 and/or displays one or more item of data.", "");
30 MustHaveApp(wxControl);
32 class wxControl : public wxWindow
35 %pythonAppend wxControl "self._setOORInfo(self)"
36 %pythonAppend wxControl() ""
39 wxControl(wxWindow *parent,
41 const wxPoint& pos=wxDefaultPosition,
42 const wxSize& size=wxDefaultSize,
44 const wxValidator& validator=wxDefaultValidator,
45 const wxString& name=wxPyControlNameStr),
46 "Create a Control. Normally you should only call this from a subclass'
47 __init__ as a plain old wx.Control is not very useful.", "");
51 "Precreate a Control control for 2-phase creation", "",
55 bool , Create(wxWindow *parent,
57 const wxPoint& pos=wxDefaultPosition,
58 const wxSize& size=wxDefaultSize,
60 const wxValidator& validator=wxDefaultValidator,
61 const wxString& name=wxPyControlNameStr),
62 "Do the 2nd phase and create the GUI control.", "");
66 void , Command(wxCommandEvent& event),
67 "Simulates the effect of the user issuing a command to the item.
69 :see: `wx.CommandEvent`
73 wxString , GetLabel(),
74 "Return a control's text.", "");
77 void , SetLabel(const wxString& label),
78 "Sets the item's text.", "");
81 static wxVisualAttributes
82 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
86 //---------------------------------------------------------------------------
90 DocStr(wxItemContainer,
91 "wx.ItemContainer defines an interface which is implemented by all
92 controls which have string subitems, each of which may be selected,
93 such as `wx.ListBox`, `wx.CheckListBox`, `wx.Choice` as well as
94 `wx.ComboBox` which implements an extended interface deriving from
97 It defines the methods for accessing the control's items and although
98 each of the derived classes implements them differently, they still
99 all conform to the same interface.
101 The items in a wx.ItemContainer have (non empty) string labels and,
102 optionally, client data associated with them.
105 class wxItemContainer
108 // wxItemContainer() { m_clientDataItemsType = wxClientData_None; } ** It's an ABC
113 "Adds the item to the control, associating the given data with the item
114 if not None. The return value is the index of the newly added item
115 which may be different from the last one if the control is sorted (e.g.
116 has wx.LB_SORT or wx.CB_SORT style).", "");
117 int Append(const wxString& item, PyObject* clientData=NULL) {
119 wxPyClientData* data = new wxPyClientData(clientData);
120 return self->Append(item, data);
122 return self->Append(item);
127 void , Append(const wxArrayString& strings),
128 "Apend several items at once to the control. Notice that calling this
129 method may be much faster than appending the items one by one if you
130 need to add a lot of items.", "",
136 "Insert an item into the control before the item at the ``pos`` index,
137 optionally associating some data object with the item.", "");
138 int Insert(const wxString& item, int pos, PyObject* clientData=NULL) {
140 wxPyClientData* data = new wxPyClientData(clientData);
141 return self->Insert(item, pos, data);
143 return self->Insert(item, pos);
149 virtual void , Clear(),
150 "Removes all items from the control.", "");
153 virtual void , Delete(int n),
154 "Deletes the item at the zero-based index 'n' from the control. Note
155 that it is an error (signalled by a `wx.PyAssertionError` exception if
156 enabled) to remove an item with the index negative or greater or equal
157 than the number of items in the control.", "");
162 virtual int , GetCount() const,
163 "Returns the number of items in the control.", "");
166 bool , IsEmpty() const,
167 "Returns True if the control is empty or False if it has some items.", "");
170 virtual wxString , GetString(int n) const,
171 "Returns the label of the item with the given index.", "");
174 wxArrayString , GetStrings() const,
178 virtual void , SetString(int n, const wxString& s),
179 "Sets the label for the given item.", "");
182 virtual int , FindString(const wxString& s) const,
183 "Finds an item whose label matches the given string. Returns the
184 zero-based position of the item, or ``wx.NOT_FOUND`` if the string was not
190 virtual void , Select(int n),
191 "Sets the item at index 'n' to be the selected item.", "");
193 %pythoncode { SetSelection = Select }
196 virtual int , GetSelection() const,
197 "Returns the index of the selected item or ``wx.NOT_FOUND`` if no item
202 wxString , GetStringSelection() const,
203 "Returns the label of the selected item or an empty string if no item
209 DocStr(GetClientData,
210 "Returns the client data associated with the given item, (if any.)", "");
211 PyObject* GetClientData(int n) {
212 wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n);
214 Py_INCREF(data->m_obj);
222 DocStr(SetClientData,
223 "Associate the given client data with the item at position n.", "");
224 void SetClientData(int n, PyObject* clientData) {
225 wxPyClientData* data = new wxPyClientData(clientData);
226 self->SetClientObject(n, data);
233 //---------------------------------------------------------------------------
236 DocStr(wxControlWithItems,
237 "wx.ControlWithItems combines the ``wx.ItemContainer`` class with the
238 wx.Control class, and is used for the base class of various controls
239 that have items.", "");
241 class wxControlWithItems : public wxControl, public wxItemContainer
246 //---------------------------------------------------------------------------