]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_control.i
little tweaks
[wxWidgets.git] / wxPython / src / _control.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _control.i
3// Purpose: SWIG interface defs for wxControl and other base classes
4//
5// Author: Robin Dunn
6//
7// Created: 10-June-1998
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15
16//---------------------------------------------------------------------------
17
b2dc1044 18MAKE_CONST_WXSTRING(ControlNameStr);
d14a1e28
RD
19
20//---------------------------------------------------------------------------
21%newgroup;
22
23
861d4832
RD
24DocStr(wxControl,
25"This is the base class for a control or 'widget'.
26
d07d2bc9
RD
27A control is generally a small window which processes user input
28and/or displays one or more item of data.", "");
861d4832 29
ab1f7d2a
RD
30MustHaveApp(wxControl);
31
d14a1e28
RD
32class wxControl : public wxWindow
33{
34public:
2b9048c5
RD
35 %pythonAppend wxControl "self._setOORInfo(self)"
36 %pythonAppend wxControl() ""
d14a1e28 37
861d4832
RD
38 DocCtorStr(
39 wxControl(wxWindow *parent,
d5573410 40 wxWindowID id=-1,
d14a1e28
RD
41 const wxPoint& pos=wxDefaultPosition,
42 const wxSize& size=wxDefaultSize,
43 long style=0,
44 const wxValidator& validator=wxDefaultValidator,
861d4832 45 const wxString& name=wxPyControlNameStr),
d07d2bc9
RD
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.", "");
861d4832
RD
48
49 DocCtorStrName(
50 wxControl(),
d07d2bc9 51 "Precreate a Control control for 2-phase creation", "",
861d4832
RD
52 PreControl);
53
54 DocDeclStr(
55 bool , Create(wxWindow *parent,
d5573410 56 wxWindowID id=-1,
861d4832
RD
57 const wxPoint& pos=wxDefaultPosition,
58 const wxSize& size=wxDefaultSize,
59 long style=0,
60 const wxValidator& validator=wxDefaultValidator,
61 const wxString& name=wxPyControlNameStr),
d07d2bc9 62 "Do the 2nd phase and create the GUI control.", "");
861d4832 63
d14a1e28 64
861d4832
RD
65 DocDeclStr(
66 void , Command(wxCommandEvent& event),
d07d2bc9
RD
67 "Simulates the effect of the user issuing a command to the item.
68
69:see: `wx.CommandEvent`
70", "");
861d4832
RD
71
72 DocDeclStr(
73 wxString , GetLabel(),
d07d2bc9 74 "Return a control's text.", "");
861d4832
RD
75
76 DocDeclStr(
77 void , SetLabel(const wxString& label),
d07d2bc9 78 "Sets the item's text.", "");
174051f6
RD
79
80
81 static wxVisualAttributes
82 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
d14a1e28
RD
83};
84
85
86//---------------------------------------------------------------------------
87%newgroup;
88
89
861d4832
RD
90DocStr(wxItemContainer,
91"wx.ItemContainer defines an interface which is implemented by all
d07d2bc9
RD
92controls which have string subitems, each of which may be selected,
93such as `wx.ListBox`, `wx.CheckListBox`, `wx.Choice` as well as
94`wx.ComboBox` which implements an extended interface deriving from
95this one.
861d4832 96
d07d2bc9
RD
97It defines the methods for accessing the control's items and although
98each of the derived classes implements them differently, they still
99all conform to the same interface.
861d4832 100
d07d2bc9
RD
101The items in a wx.ItemContainer have (non empty) string labels and,
102optionally, client data associated with them.
103", "");
861d4832 104
d14a1e28
RD
105class wxItemContainer
106{
107public:
108 // wxItemContainer() { m_clientDataItemsType = wxClientData_None; } ** It's an ABC
861d4832 109
d14a1e28 110
d14a1e28 111 %extend {
861d4832 112 DocStr(Append,
d07d2bc9
RD
113 "Adds the item to the control, associating the given data with the item
114if not None. The return value is the index of the newly added item
115which may be different from the last one if the control is sorted (e.g.
116has wx.LB_SORT or wx.CB_SORT style).", "");
d14a1e28
RD
117 int Append(const wxString& item, PyObject* clientData=NULL) {
118 if (clientData) {
119 wxPyClientData* data = new wxPyClientData(clientData);
120 return self->Append(item, data);
121 } else
122 return self->Append(item);
123 }
124 }
125
861d4832
RD
126 DocDeclStrName(
127 void , Append(const wxArrayString& strings),
d07d2bc9
RD
128 "Apend several items at once to the control. Notice that calling this
129method may be much faster than appending the items one by one if you
130need to add a lot of items.", "",
861d4832 131 AppendItems);
d14a1e28 132
861d4832 133
d14a1e28 134 %extend {
861d4832 135 DocStr(Insert,
d07d2bc9
RD
136 "Insert an item into the control before the item at the ``pos`` index,
137optionally associating some data object with the item.", "");
d14a1e28
RD
138 int Insert(const wxString& item, int pos, PyObject* clientData=NULL) {
139 if (clientData) {
140 wxPyClientData* data = new wxPyClientData(clientData);
141 return self->Insert(item, pos, data);
142 } else
143 return self->Insert(item, pos);
144 }
145 }
146
147
861d4832
RD
148 DocDeclStr(
149 virtual void , Clear(),
d07d2bc9 150 "Removes all items from the control.", "");
861d4832
RD
151
152 DocDeclStr(
153 virtual void , Delete(int n),
d07d2bc9
RD
154 "Deletes the item at the zero-based index 'n' from the control. Note
155that it is an error (signalled by a `wx.PyAssertionError` exception if
156enabled) to remove an item with the index negative or greater or equal
157than the number of items in the control.", "");
861d4832 158
d14a1e28
RD
159
160
861d4832
RD
161 DocDeclStr(
162 virtual int , GetCount() const,
d07d2bc9 163 "Returns the number of items in the control.", "");
861d4832
RD
164
165 DocDeclStr(
166 bool , IsEmpty() const,
d07d2bc9 167 "Returns True if the control is empty or False if it has some items.", "");
861d4832
RD
168
169 DocDeclStr(
170 virtual wxString , GetString(int n) const,
d07d2bc9 171 "Returns the label of the item with the given index.", "");
861d4832
RD
172
173 DocDeclStr(
174 wxArrayString , GetStrings() const,
d07d2bc9 175 "", "");
861d4832
RD
176
177 DocDeclStr(
178 virtual void , SetString(int n, const wxString& s),
d07d2bc9 179 "Sets the label for the given item.", "");
861d4832
RD
180
181 DocDeclStr(
182 virtual int , FindString(const wxString& s) const,
d07d2bc9
RD
183 "Finds an item whose label matches the given string. Returns the
184zero-based position of the item, or ``wx.NOT_FOUND`` if the string was not
185found.", "");
861d4832 186
d14a1e28
RD
187
188
861d4832
RD
189 DocDeclStr(
190 virtual void , Select(int n),
d07d2bc9 191 "Sets the item at index 'n' to be the selected item.", "");
d14a1e28 192
861d4832
RD
193 %pythoncode { SetSelection = Select }
194
195 DocDeclStr(
196 virtual int , GetSelection() const,
d07d2bc9
RD
197 "Returns the index of the selected item or ``wx.NOT_FOUND`` if no item
198is selected.", "");
861d4832
RD
199
200
201 DocDeclStr(
202 wxString , GetStringSelection() const,
d07d2bc9
RD
203 "Returns the label of the selected item or an empty string if no item
204is selected.", "");
861d4832 205
d14a1e28
RD
206
207
d14a1e28 208 %extend {
861d4832 209 DocStr(GetClientData,
d07d2bc9 210 "Returns the client data associated with the given item, (if any.)", "");
d14a1e28
RD
211 PyObject* GetClientData(int n) {
212 wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n);
213 if (data) {
214 Py_INCREF(data->m_obj);
215 return data->m_obj;
216 } else {
217 Py_INCREF(Py_None);
218 return Py_None;
219 }
220 }
221
861d4832 222 DocStr(SetClientData,
d07d2bc9 223 "Associate the given client data with the item at position n.", "");
d14a1e28
RD
224 void SetClientData(int n, PyObject* clientData) {
225 wxPyClientData* data = new wxPyClientData(clientData);
226 self->SetClientObject(n, data);
227 }
228 }
229
230};
231
232
233//---------------------------------------------------------------------------
234%newgroup;
235
861d4832 236DocStr(wxControlWithItems,
d07d2bc9
RD
237"wx.ControlWithItems combines the ``wx.ItemContainer`` class with the
238wx.Control class, and is used for the base class of various controls
239that have items.", "");
861d4832 240
d14a1e28
RD
241class wxControlWithItems : public wxControl, public wxItemContainer
242{
243public:
244};
245
246//---------------------------------------------------------------------------
247