]>
Commit | Line | Data |
---|---|---|
7bf85405 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: controls.i | |
3 | // Purpose: Control (widget) classes for wxPython | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 6/10/98 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
03e9bead | 13 | %module controls |
7bf85405 | 14 | |
03e9bead | 15 | %{ |
7bf85405 RD |
16 | #include "helpers.h" |
17 | #include <wx/slider.h> | |
62bd0874 | 18 | #include <wx/spinbutt.h> |
f6bcfd97 | 19 | #include <wx/spinctrl.h> |
cf694132 | 20 | #include <wx/dynarray.h> |
8bf5d46e | 21 | #include <wx/statline.h> |
d1679124 | 22 | #include <wx/tglbtn.h> |
fb5e0af0 RD |
23 | |
24 | #ifdef __WXMSW__ | |
9c039d08 RD |
25 | #if wxUSE_OWNER_DRAWN |
26 | #include <wx/checklst.h> | |
27 | #endif | |
fb5e0af0 | 28 | #endif |
c95e68d8 RD |
29 | |
30 | #ifdef __WXGTK__ | |
31 | #include <wx/checklst.h> | |
32 | #endif | |
7bf85405 RD |
33 | %} |
34 | ||
35 | //---------------------------------------------------------------------- | |
36 | ||
37 | %include typemaps.i | |
38 | %include my_typemaps.i | |
39 | ||
40 | // Import some definitions of other classes, etc. | |
41 | %import _defs.i | |
42 | %import misc.i | |
43 | %import windows.i | |
44 | %import gdi.i | |
45 | %import events.i | |
46 | ||
b8b8dda7 | 47 | %pragma(python) code = "import wx" |
9c039d08 | 48 | |
7bf85405 RD |
49 | //---------------------------------------------------------------------- |
50 | ||
2f90df85 RD |
51 | %readonly |
52 | wxValidator wxDefaultValidator; | |
53 | %readwrite | |
54 | ||
7bf85405 RD |
55 | //---------------------------------------------------------------------- |
56 | ||
137b5242 RD |
57 | %{ |
58 | //#define DECLARE_DEF_STRING(name) static wxString* wxPy##name | |
59 | ||
60 | // Put some wx default wxChar* values into wxStrings. | |
61 | DECLARE_DEF_STRING(ControlNameStr); | |
62 | DECLARE_DEF_STRING(ButtonNameStr); | |
63 | DECLARE_DEF_STRING(CheckBoxNameStr); | |
64 | DECLARE_DEF_STRING(ChoiceNameStr); | |
65 | DECLARE_DEF_STRING(ComboBoxNameStr); | |
66 | DECLARE_DEF_STRING(GaugeNameStr); | |
67 | DECLARE_DEF_STRING(StaticBoxNameStr); | |
68 | DECLARE_DEF_STRING(StaticTextNameStr); | |
69 | DECLARE_DEF_STRING(ListBoxNameStr); | |
70 | DECLARE_DEF_STRING(TextCtrlNameStr); | |
71 | DECLARE_DEF_STRING(ScrollBarNameStr); | |
72 | DECLARE_DEF_STRING(SPIN_BUTTON_NAME); | |
73 | DECLARE_DEF_STRING(StaticBitmapNameStr); | |
74 | DECLARE_DEF_STRING(RadioBoxNameStr); | |
75 | DECLARE_DEF_STRING(RadioButtonNameStr); | |
76 | DECLARE_DEF_STRING(SliderNameStr); | |
77 | ||
78 | wxChar* wxSpinCtrlNameStr = _T("wxSpinCtrl"); | |
79 | DECLARE_DEF_STRING(SpinCtrlNameStr); | |
80 | ||
81 | static const wxString wxPyEmptyString(wxT("")); | |
82 | %} | |
83 | ||
84 | //---------------------------------------------------------------------- | |
4268f798 RD |
85 | |
86 | // This is the base class for a control or 'widget'. | |
87 | // | |
88 | // A control is generally a small window which processes user input and/or | |
89 | // displays one or more item of data. | |
7bf85405 RD |
90 | class wxControl : public wxWindow { |
91 | public: | |
4268f798 RD |
92 | |
93 | // | |
9b3d3bc4 | 94 | wxControl(wxWindow *parent, |
b0e5c039 RD |
95 | wxWindowID id, |
96 | const wxPoint& pos=wxDefaultPosition, | |
97 | const wxSize& size=wxDefaultSize, | |
98 | long style=0, | |
99 | const wxValidator& validator=wxDefaultValidator, | |
100 | const wxString& name=wxPyControlNameStr); | |
4268f798 RD |
101 | |
102 | // | |
09f3d4e6 RD |
103 | %name(wxPreControl)wxControl(); |
104 | ||
4268f798 | 105 | // |
09f3d4e6 RD |
106 | bool Create(wxWindow *parent, |
107 | wxWindowID id, | |
108 | const wxPoint& pos=wxDefaultPosition, | |
109 | const wxSize& size=wxDefaultSize, | |
110 | long style=0, | |
111 | const wxValidator& validator=wxDefaultValidator, | |
137b5242 | 112 | const wxString& name=wxPyControlNameStr); |
9b3d3bc4 | 113 | |
0122b7e3 | 114 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 115 | %pragma(python) addtomethod = "wxPreControl:val._setOORInfo(val)" |
6999b0d8 | 116 | |
4268f798 RD |
117 | // Simulates the effect of the user issuing a command to the item. See |
118 | // wxCommandEvent. | |
7bf85405 | 119 | void Command(wxCommandEvent& event); |
4268f798 RD |
120 | |
121 | // Return a control's text. | |
fb5e0af0 | 122 | wxString GetLabel(); |
4268f798 RD |
123 | |
124 | // Sets the item's text. | |
7bf85405 RD |
125 | void SetLabel(const wxString& label); |
126 | }; | |
127 | ||
6999b0d8 | 128 | |
7bf85405 RD |
129 | //---------------------------------------------------------------------- |
130 | ||
900d9886 RD |
131 | |
132 | class wxControlWithItems : public wxControl { | |
133 | public: | |
134 | ||
135 | // void Clear(); ambiguous, redefine below... | |
4268f798 RD |
136 | |
137 | // Deletes an item from the control | |
900d9886 RD |
138 | void Delete(int n); |
139 | ||
4268f798 | 140 | // Returns the number of items in the control. |
900d9886 RD |
141 | int GetCount(); |
142 | %pragma(python) addtoclass = "Number = GetCount" | |
4268f798 RD |
143 | |
144 | // Returns the string at the given position. | |
900d9886 | 145 | wxString GetString(int n); |
4268f798 RD |
146 | |
147 | // Sets the string value of an item. | |
900d9886 | 148 | void SetString(int n, const wxString& s); |
4268f798 RD |
149 | |
150 | // Finds an item matching the given string. Returns the zero-based | |
151 | // position of the item, or -1 if the string was not found. | |
900d9886 RD |
152 | int FindString(const wxString& s); |
153 | ||
4268f798 | 154 | // Select the item at postion n. |
900d9886 | 155 | void Select(int n); |
4268f798 RD |
156 | |
157 | // Gets the position of the selected item. | |
900d9886 RD |
158 | int GetSelection(); |
159 | ||
4268f798 | 160 | // Gets the current selection as a string. |
900d9886 RD |
161 | wxString GetStringSelection() const; |
162 | ||
163 | // void Append(const wxString& item); | |
164 | // void Append(const wxString& item, char* clientData); | |
165 | // char* GetClientData(const int n); | |
166 | // void SetClientData(const int n, char* data); | |
4268f798 RD |
167 | |
168 | ||
900d9886 | 169 | %addmethods { |
4268f798 RD |
170 | // Adds the item to the control, associating the given data with the |
171 | // item if not None. | |
900d9886 RD |
172 | void Append(const wxString& item, PyObject* clientData=NULL) { |
173 | if (clientData) { | |
174 | wxPyClientData* data = new wxPyClientData(clientData); | |
175 | self->Append(item, data); | |
176 | } else | |
177 | self->Append(item); | |
178 | } | |
179 | ||
4268f798 | 180 | // Returns the client data associated with the given item, (if any.) |
900d9886 RD |
181 | PyObject* GetClientData(int n) { |
182 | wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n); | |
183 | if (data) { | |
184 | Py_INCREF(data->m_obj); | |
185 | return data->m_obj; | |
186 | } else { | |
187 | Py_INCREF(Py_None); | |
188 | return Py_None; | |
189 | } | |
190 | } | |
191 | ||
4268f798 | 192 | // Associate the given client data with the item at position n. |
900d9886 RD |
193 | void SetClientData(int n, PyObject* clientData) { |
194 | wxPyClientData* data = new wxPyClientData(clientData); | |
195 | self->SetClientObject(n, data); | |
196 | } | |
197 | } | |
198 | ||
ce914f73 RD |
199 | // append several items at once to the control |
200 | %name(AppendItems)void Append(const wxArrayString& strings); | |
201 | ||
900d9886 | 202 | }; |
4268f798 | 203 | |
900d9886 RD |
204 | //---------------------------------------------------------------------- |
205 | ||
4268f798 RD |
206 | // A button is a control that contains a text string, and is one of the most |
207 | // common elements of a GUI. It may be placed on a dialog box or panel, or | |
208 | // indeed almost any other window. | |
209 | // | |
210 | // Styles | |
211 | // wxBU_LEFT: Left-justifies the label. WIN32 only. | |
212 | // wxBU_TOP: Aligns the label to the top of the button. WIN32 only. | |
213 | // wxBU_RIGHT: Right-justifies the bitmap label. WIN32 only. | |
214 | // wxBU_BOTTOM: Aligns the label to the bottom of the button. WIN32 only. | |
215 | // wxBU_EXACTFIT: Creates the button as small as possible instead of making | |
216 | // it of the standard size (which is the default behaviour.) | |
217 | // | |
218 | // Events | |
219 | // EVT_BUTTON(win,id,func): | |
220 | // Sent when the button is clicked. | |
221 | // | |
7bf85405 RD |
222 | class wxButton : public wxControl { |
223 | public: | |
4268f798 RD |
224 | // Constructor, creating and showing a button. |
225 | // | |
226 | // parent: Parent window. Must not be None. | |
227 | // id: Button identifier. A value of -1 indicates a default value. | |
228 | // label: The text to be displayed on the button. | |
229 | // pos: The button position on it's parent. | |
230 | // size: Button size. If the default size (-1, -1) is specified then the | |
231 | // button is sized appropriately for the text. | |
232 | // style: Window style. See wxButton. | |
233 | // validator: Window validator. | |
234 | // name: Window name. | |
7bf85405 | 235 | wxButton(wxWindow* parent, wxWindowID id, const wxString& label, |
b68dc582 RD |
236 | const wxPoint& pos = wxDefaultPosition, |
237 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 238 | long style = 0, |
b68dc582 | 239 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 240 | const wxString& name = wxPyButtonNameStr); |
4268f798 RD |
241 | |
242 | // Default constructor | |
09f3d4e6 RD |
243 | %name(wxPreButton)wxButton(); |
244 | ||
4268f798 | 245 | // Button creation function for two-step creation. |
09f3d4e6 RD |
246 | bool Create(wxWindow* parent, wxWindowID id, const wxString& label, |
247 | const wxPoint& pos = wxDefaultPosition, | |
248 | const wxSize& size = wxDefaultSize, | |
249 | long style = 0, | |
250 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 251 | const wxString& name = wxPyButtonNameStr); |
9c039d08 | 252 | |
0122b7e3 | 253 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 254 | %pragma(python) addtomethod = "wxPreButton:val._setOORInfo(val)" |
9c039d08 | 255 | |
4268f798 RD |
256 | // This sets the button to be the default item for the panel or dialog box. |
257 | // | |
258 | // Under Windows, only dialog box buttons respond to this function. As | |
259 | // normal under Windows and Motif, pressing return causes the default | |
260 | // button to be depressed when the return key is pressed. See also | |
261 | // wxWindow.SetFocus which sets the keyboard focus for windows and text | |
262 | // panel items, and wxPanel.SetDefaultItem. | |
7bf85405 | 263 | void SetDefault(); |
4268f798 RD |
264 | |
265 | // | |
9b3d3bc4 | 266 | void SetBackgroundColour(const wxColour& colour); |
4268f798 | 267 | // |
9b3d3bc4 | 268 | void SetForegroundColour(const wxColour& colour); |
4268f798 | 269 | |
059a841c | 270 | #ifdef __WXMSW__ |
4268f798 | 271 | // show the image in the button in addition to the label |
09f3d4e6 | 272 | void SetImageLabel(const wxBitmap& bitmap); |
4268f798 RD |
273 | |
274 | // set the margins around the image | |
09f3d4e6 | 275 | void SetImageMargins(wxCoord x, wxCoord y); |
059a841c | 276 | #endif |
4268f798 RD |
277 | |
278 | // returns the default button size for this platform | |
09f3d4e6 RD |
279 | static wxSize GetDefaultSize(); |
280 | }; | |
6999b0d8 | 281 | |
7bf85405 RD |
282 | //---------------------------------------------------------------------- |
283 | ||
284 | class wxBitmapButton : public wxButton { | |
285 | public: | |
286 | wxBitmapButton(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap, | |
b68dc582 RD |
287 | const wxPoint& pos = wxDefaultPosition, |
288 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 289 | long style = wxBU_AUTODRAW, |
b68dc582 | 290 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 291 | const wxString& name = wxPyButtonNameStr); |
09f3d4e6 RD |
292 | %name(wxPreBitmapButton)wxBitmapButton(); |
293 | ||
294 | bool Create(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap, | |
295 | const wxPoint& pos = wxDefaultPosition, | |
296 | const wxSize& size = wxDefaultSize, | |
297 | long style = wxBU_AUTODRAW, | |
298 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 299 | const wxString& name = wxPyButtonNameStr); |
7bf85405 | 300 | |
0122b7e3 | 301 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 302 | %pragma(python) addtomethod = "wxPreBitmapButton:val._setOORInfo(val)" |
9c039d08 | 303 | |
c5943253 RD |
304 | wxBitmap GetBitmapLabel(); |
305 | wxBitmap GetBitmapDisabled(); | |
306 | wxBitmap GetBitmapFocus(); | |
307 | wxBitmap GetBitmapSelected(); | |
7bf85405 RD |
308 | void SetBitmapDisabled(const wxBitmap& bitmap); |
309 | void SetBitmapFocus(const wxBitmap& bitmap); | |
7bf85405 | 310 | void SetBitmapSelected(const wxBitmap& bitmap); |
fb5e0af0 | 311 | void SetBitmapLabel(const wxBitmap& bitmap); |
7bf85405 | 312 | |
f6bcfd97 BP |
313 | void SetMargins(int x, int y) { m_marginX = x; m_marginY = y; } |
314 | int GetMarginX() const { return m_marginX; } | |
315 | int GetMarginY() const { return m_marginY; } | |
7bf85405 RD |
316 | }; |
317 | ||
318 | //---------------------------------------------------------------------- | |
319 | ||
320 | class wxCheckBox : public wxControl { | |
321 | public: | |
322 | wxCheckBox(wxWindow* parent, wxWindowID id, const wxString& label, | |
b68dc582 RD |
323 | const wxPoint& pos = wxDefaultPosition, |
324 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 325 | long style = 0, |
b68dc582 | 326 | const wxValidator& val = wxDefaultValidator, |
137b5242 | 327 | const wxString& name = wxPyCheckBoxNameStr); |
09f3d4e6 RD |
328 | %name(wxPreCheckBox)wxCheckBox(); |
329 | ||
330 | bool Create(wxWindow* parent, wxWindowID id, const wxString& label, | |
331 | const wxPoint& pos = wxDefaultPosition, | |
332 | const wxSize& size = wxDefaultSize, | |
333 | long style = 0, | |
334 | const wxValidator& val = wxDefaultValidator, | |
137b5242 | 335 | const wxString& name = wxPyCheckBoxNameStr); |
7bf85405 | 336 | |
0122b7e3 | 337 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 338 | %pragma(python) addtomethod = "wxPreCheckBox:val._setOORInfo(val)" |
9c039d08 | 339 | |
7bf85405 RD |
340 | bool GetValue(); |
341 | void SetValue(const bool state); | |
342 | }; | |
343 | ||
344 | //---------------------------------------------------------------------- | |
345 | ||
900d9886 | 346 | class wxChoice : public wxControlWithItems { |
7bf85405 RD |
347 | public: |
348 | wxChoice(wxWindow *parent, wxWindowID id, | |
b68dc582 RD |
349 | const wxPoint& pos = wxDefaultPosition, |
350 | const wxSize& size = wxDefaultSize, | |
eec92d76 | 351 | int LCOUNT=0, wxString* choices=NULL, |
7bf85405 | 352 | long style = 0, |
b68dc582 | 353 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 354 | const wxString& name = wxPyChoiceNameStr); |
09f3d4e6 RD |
355 | %name(wxPreChoice)wxChoice(); |
356 | ||
357 | bool Create(wxWindow *parent, wxWindowID id, | |
358 | const wxPoint& pos = wxDefaultPosition, | |
359 | const wxSize& size = wxDefaultSize, | |
360 | int LCOUNT=0, wxString* choices=NULL, | |
361 | long style = 0, | |
362 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 363 | const wxString& name = wxPyChoiceNameStr); |
7bf85405 | 364 | |
0122b7e3 | 365 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 366 | %pragma(python) addtomethod = "wxPreChoice:val._setOORInfo(val)" |
0122b7e3 | 367 | |
7bf85405 | 368 | void Clear(); |
900d9886 | 369 | |
7bf85405 | 370 | int GetColumns(); |
7bf85405 RD |
371 | void SetColumns(const int n = 1); |
372 | void SetSelection(const int n); | |
373 | void SetStringSelection(const wxString& string); | |
0adbc166 RD |
374 | void SetString(int n, const wxString& s); |
375 | ||
376 | %pragma(python) addtoclass = " | |
0adbc166 RD |
377 | Select = SetSelection |
378 | " | |
7bf85405 RD |
379 | }; |
380 | ||
381 | //---------------------------------------------------------------------- | |
382 | ||
c70fd24f RD |
383 | // wxGTK's wxComboBox doesn't derive from wxChoice like wxMSW, or |
384 | // even wxControlWithItems, so we have to duplicate the methods | |
385 | // here... <blech!> | |
386 | ||
387 | #ifdef __WXGTK__ | |
388 | class wxComboBox : public wxControl | |
389 | { | |
390 | public: | |
137b5242 RD |
391 | wxComboBox(wxWindow* parent, wxWindowID id, |
392 | const wxString& value = wxPyEmptyString, | |
c70fd24f RD |
393 | const wxPoint& pos = wxDefaultPosition, |
394 | const wxSize& size = wxDefaultSize, | |
395 | int LCOUNT=0, wxString* choices=NULL, | |
396 | long style = 0, | |
397 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 398 | const wxString& name = wxPyComboBoxNameStr); |
c70fd24f RD |
399 | %name(wxPreComboBox)wxComboBox(); |
400 | ||
137b5242 RD |
401 | bool Create(wxWindow* parent, wxWindowID id, |
402 | const wxString& value = wxPyEmptyString, | |
403 | const wxPoint& pos = wxDefaultPosition, | |
404 | const wxSize& size = wxDefaultSize, | |
405 | int LCOUNT=0, wxString* choices=NULL, | |
406 | long style = 0, | |
407 | const wxValidator& validator = wxDefaultValidator, | |
408 | const wxString& name = wxPyComboBoxNameStr); | |
c70fd24f RD |
409 | |
410 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" | |
411 | %pragma(python) addtomethod = "wxPreComboBox:val._setOORInfo(val)" | |
412 | ||
413 | void Copy(); | |
414 | void Cut(); | |
415 | long GetInsertionPoint(); | |
416 | long GetLastPosition(); | |
417 | wxString GetValue(); | |
418 | void Paste(); | |
419 | void Replace(long from, long to, const wxString& text); | |
420 | void Remove(long from, long to); | |
421 | void SetInsertionPoint(long pos); | |
422 | void SetInsertionPointEnd(); | |
423 | void SetSelection(int n); | |
424 | %name(SetMark)void SetSelection(long from, long to); | |
425 | void SetValue(const wxString& text); | |
426 | void SetEditable(bool editable); | |
427 | ||
428 | ||
429 | void Clear(); | |
430 | void Delete(int n); | |
431 | ||
432 | int GetCount(); | |
433 | %pragma(python) addtoclass = "Number = GetCount" | |
434 | wxString GetString(int n); | |
435 | int FindString(const wxString& s); | |
436 | ||
437 | //void SetString(int n, const wxString& s); *** No equivalent for wxGTK!!! | |
438 | ||
439 | // void Select(int n); | |
440 | %pragma(python) addtoclass = "Select = SetSelection" | |
441 | ||
442 | int GetSelection(); | |
443 | wxString GetStringSelection() const; | |
444 | ||
445 | // void Append(const wxString& item); | |
446 | // void Append(const wxString& item, char* clientData); | |
447 | // char* GetClientData(const int n); | |
448 | // void SetClientData(const int n, char* data); | |
449 | %addmethods { | |
450 | void Append(const wxString& item, PyObject* clientData=NULL) { | |
451 | if (clientData) { | |
452 | wxPyClientData* data = new wxPyClientData(clientData); | |
453 | self->Append(item, data); | |
454 | } else | |
455 | self->Append(item); | |
456 | } | |
457 | ||
458 | PyObject* GetClientData(int n) { | |
459 | wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n); | |
460 | if (data) { | |
461 | Py_INCREF(data->m_obj); | |
462 | return data->m_obj; | |
463 | } else { | |
464 | Py_INCREF(Py_None); | |
465 | return Py_None; | |
466 | } | |
467 | } | |
468 | ||
469 | void SetClientData(int n, PyObject* clientData) { | |
470 | wxPyClientData* data = new wxPyClientData(clientData); | |
471 | self->SetClientObject(n, data); | |
472 | } | |
473 | } | |
474 | ||
475 | }; | |
476 | ||
477 | ||
478 | ||
479 | #else // For all but wxGTK | |
480 | ||
481 | ||
bb0054cd | 482 | class wxComboBox : public wxChoice { |
7bf85405 | 483 | public: |
137b5242 RD |
484 | wxComboBox(wxWindow* parent, wxWindowID id, |
485 | const wxString& value = wxPyEmptyString, | |
b68dc582 RD |
486 | const wxPoint& pos = wxDefaultPosition, |
487 | const wxSize& size = wxDefaultSize, | |
eec92d76 | 488 | int LCOUNT=0, wxString* choices=NULL, |
7bf85405 | 489 | long style = 0, |
b68dc582 | 490 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 491 | const wxString& name = wxPyComboBoxNameStr); |
09f3d4e6 RD |
492 | %name(wxPreComboBox)wxComboBox(); |
493 | ||
137b5242 RD |
494 | bool Create(wxWindow* parent, wxWindowID id, |
495 | const wxString& value = wxPyEmptyString, | |
09f3d4e6 RD |
496 | const wxPoint& pos = wxDefaultPosition, |
497 | const wxSize& size = wxDefaultSize, | |
498 | int LCOUNT=0, wxString* choices=NULL, | |
499 | long style = 0, | |
500 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 501 | const wxString& name = wxPyComboBoxNameStr); |
7bf85405 | 502 | |
0122b7e3 | 503 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 504 | %pragma(python) addtomethod = "wxPreComboBox:val._setOORInfo(val)" |
9c039d08 | 505 | |
7bf85405 RD |
506 | void Copy(); |
507 | void Cut(); | |
7bf85405 RD |
508 | long GetInsertionPoint(); |
509 | long GetLastPosition(); | |
7bf85405 | 510 | wxString GetValue(); |
7bf85405 RD |
511 | void Paste(); |
512 | void Replace(long from, long to, const wxString& text); | |
513 | void Remove(long from, long to); | |
7bf85405 RD |
514 | void SetInsertionPoint(long pos); |
515 | void SetInsertionPointEnd(); | |
1d99702e | 516 | void SetSelection(int n); |
7bf85405 RD |
517 | %name(SetMark)void SetSelection(long from, long to); |
518 | void SetValue(const wxString& text); | |
0adbc166 | 519 | void SetEditable(bool editable); |
7bf85405 | 520 | }; |
c70fd24f RD |
521 | #endif |
522 | ||
7bf85405 RD |
523 | |
524 | //---------------------------------------------------------------------- | |
525 | ||
526 | class wxGauge : public wxControl { | |
527 | public: | |
528 | wxGauge(wxWindow* parent, wxWindowID id, int range, | |
b68dc582 RD |
529 | const wxPoint& pos = wxDefaultPosition, |
530 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 531 | long style = wxGA_HORIZONTAL, |
b68dc582 | 532 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 533 | const wxString& name = wxPyGaugeNameStr); |
09f3d4e6 RD |
534 | %name(wxPreGauge)wxGauge(); |
535 | ||
536 | bool Create(wxWindow* parent, wxWindowID id, int range, | |
537 | const wxPoint& pos = wxDefaultPosition, | |
538 | const wxSize& size = wxDefaultSize, | |
539 | long style = wxGA_HORIZONTAL, | |
540 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 541 | const wxString& name = wxPyGaugeNameStr); |
7bf85405 | 542 | |
0122b7e3 | 543 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 544 | %pragma(python) addtomethod = "wxPreGauge:val._setOORInfo(val)" |
9c039d08 | 545 | |
7bf85405 RD |
546 | int GetBezelFace(); |
547 | int GetRange(); | |
548 | int GetShadowWidth(); | |
549 | int GetValue(); | |
550 | void SetBezelFace(int width); | |
551 | void SetRange(int range); | |
552 | void SetShadowWidth(int width); | |
553 | void SetValue(int pos); | |
554 | }; | |
555 | ||
556 | //---------------------------------------------------------------------- | |
557 | ||
558 | class wxStaticBox : public wxControl { | |
559 | public: | |
560 | wxStaticBox(wxWindow* parent, wxWindowID id, const wxString& label, | |
b68dc582 RD |
561 | const wxPoint& pos = wxDefaultPosition, |
562 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 563 | long style = 0, |
137b5242 | 564 | const wxString& name = wxPyStaticBoxNameStr); |
09f3d4e6 RD |
565 | %name(wxPreStaticBox)wxStaticBox(); |
566 | ||
567 | bool Create(wxWindow* parent, wxWindowID id, const wxString& label, | |
568 | const wxPoint& pos = wxDefaultPosition, | |
569 | const wxSize& size = wxDefaultSize, | |
570 | long style = 0, | |
137b5242 | 571 | const wxString& name = wxPyStaticBoxNameStr); |
0122b7e3 RD |
572 | |
573 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" | |
17c0e08c | 574 | %pragma(python) addtomethod = "wxPreStaticBox:val._setOORInfo(val)" |
7bf85405 RD |
575 | }; |
576 | ||
577 | ||
bb0054cd RD |
578 | //---------------------------------------------------------------------- |
579 | ||
8bf5d46e | 580 | |
bb0054cd RD |
581 | class wxStaticLine : public wxControl { |
582 | public: | |
583 | wxStaticLine( wxWindow *parent, wxWindowID id, | |
b68dc582 RD |
584 | const wxPoint &pos = wxDefaultPosition, |
585 | const wxSize &size = wxDefaultSize, | |
bb0054cd | 586 | long style = wxLI_HORIZONTAL, |
137b5242 | 587 | const wxString& name = wxPyStaticTextNameStr); |
09f3d4e6 RD |
588 | %name(wxPreStaticLine)wxStaticLine(); |
589 | ||
590 | bool Create( wxWindow *parent, wxWindowID id, | |
591 | const wxPoint &pos = wxDefaultPosition, | |
592 | const wxSize &size = wxDefaultSize, | |
593 | long style = wxLI_HORIZONTAL, | |
137b5242 | 594 | const wxString& name = wxPyStaticTextNameStr); |
0122b7e3 RD |
595 | |
596 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" | |
17c0e08c | 597 | %pragma(python) addtomethod = "wxPreStaticLine:val._setOORInfo(val)" |
bb0054cd | 598 | }; |
8bf5d46e | 599 | |
bb0054cd | 600 | |
7bf85405 RD |
601 | //---------------------------------------------------------------------- |
602 | ||
603 | class wxStaticText : public wxControl { | |
604 | public: | |
605 | wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label, | |
b68dc582 RD |
606 | const wxPoint& pos = wxDefaultPosition, |
607 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 608 | long style = 0, |
137b5242 | 609 | const wxString& name = wxPyStaticTextNameStr); |
09f3d4e6 RD |
610 | %name(wxPreStaticText)wxStaticText(); |
611 | ||
612 | bool Create(wxWindow* parent, wxWindowID id, const wxString& label, | |
613 | const wxPoint& pos = wxDefaultPosition, | |
614 | const wxSize& size = wxDefaultSize, | |
615 | long style = 0, | |
137b5242 | 616 | const wxString& name = wxPyStaticTextNameStr); |
7bf85405 | 617 | |
0122b7e3 | 618 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 619 | %pragma(python) addtomethod = "wxPreStaticText:val._setOORInfo(val)" |
9c039d08 | 620 | |
7bf85405 RD |
621 | wxString GetLabel(); |
622 | void SetLabel(const wxString& label); | |
623 | }; | |
624 | ||
625 | //---------------------------------------------------------------------- | |
626 | ||
900d9886 | 627 | class wxListBox : public wxControlWithItems { |
7bf85405 RD |
628 | public: |
629 | wxListBox(wxWindow* parent, wxWindowID id, | |
b68dc582 RD |
630 | const wxPoint& pos = wxDefaultPosition, |
631 | const wxSize& size = wxDefaultSize, | |
eec92d76 | 632 | int LCOUNT, wxString* choices = NULL, |
7bf85405 | 633 | long style = 0, |
b68dc582 | 634 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 635 | const wxString& name = wxPyListBoxNameStr); |
09f3d4e6 RD |
636 | %name(wxPreListBox)wxListBox(); |
637 | ||
638 | bool Create(wxWindow* parent, wxWindowID id, | |
639 | const wxPoint& pos = wxDefaultPosition, | |
640 | const wxSize& size = wxDefaultSize, | |
641 | int LCOUNT, wxString* choices = NULL, | |
642 | long style = 0, | |
643 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 644 | const wxString& name = wxPyListBoxNameStr); |
7bf85405 | 645 | |
0122b7e3 | 646 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 647 | %pragma(python) addtomethod = "wxPreListBox:val._setOORInfo(val)" |
0122b7e3 | 648 | |
7bf85405 | 649 | void Clear(); |
7bf85405 | 650 | void Deselect(int n); |
cf694132 RD |
651 | |
652 | // int GetSelections(int **selections); | |
653 | %addmethods { | |
654 | PyObject* GetSelections() { | |
655 | wxArrayInt lst; | |
656 | self->GetSelections(lst); | |
657 | PyObject *tup = PyTuple_New(lst.GetCount()); | |
f6bcfd97 | 658 | for(size_t i=0; i<lst.GetCount(); i++) { |
cf694132 RD |
659 | PyTuple_SetItem(tup, i, PyInt_FromLong(lst[i])); |
660 | } | |
661 | return tup; | |
662 | } | |
663 | } | |
664 | ||
900d9886 | 665 | |
eec92d76 | 666 | void InsertItems(int LCOUNT, wxString* choices, int pos); |
2f90df85 | 667 | |
0adbc166 | 668 | bool IsSelected(const int n); |
7bf85405 | 669 | bool Selected(const int n); |
eec92d76 | 670 | void Set(int LCOUNT, wxString* choices); |
7bf85405 RD |
671 | void SetFirstItem(int n); |
672 | %name(SetFirstItemStr)void SetFirstItem(const wxString& string); | |
673 | void SetSelection(int n, bool select = TRUE); | |
674 | void SetString(int n, const wxString& string); | |
675 | void SetStringSelection(const wxString& string, bool select = TRUE); | |
676 | }; | |
677 | ||
678 | ||
9c039d08 RD |
679 | //---------------------------------------------------------------------- |
680 | ||
9c039d08 RD |
681 | class wxCheckListBox : public wxListBox { |
682 | public: | |
683 | wxCheckListBox(wxWindow *parent, wxWindowID id, | |
b68dc582 RD |
684 | const wxPoint& pos = wxDefaultPosition, |
685 | const wxSize& size = wxDefaultSize, | |
9c039d08 | 686 | int LCOUNT = 0, |
eec92d76 | 687 | wxString* choices = NULL, |
9c039d08 | 688 | long style = 0, |
b68dc582 | 689 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 690 | const wxString& name = wxPyListBoxNameStr); |
09f3d4e6 RD |
691 | %name(wxPreCheckListBox)wxCheckListBox(); |
692 | ||
693 | bool Create(wxWindow *parent, wxWindowID id, | |
694 | const wxPoint& pos = wxDefaultPosition, | |
695 | const wxSize& size = wxDefaultSize, | |
696 | int LCOUNT = 0, | |
697 | wxString* choices = NULL, | |
698 | long style = 0, | |
699 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 700 | const wxString& name = wxPyListBoxNameStr); |
9c039d08 | 701 | |
0122b7e3 | 702 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 703 | %pragma(python) addtomethod = "wxPreCheckListBox:val._setOORInfo(val)" |
9c039d08 RD |
704 | |
705 | bool IsChecked(int uiIndex); | |
694759cf | 706 | void Check(int uiIndex, int bCheck = TRUE); |
eec92d76 | 707 | void InsertItems(int LCOUNT, wxString* choices, int pos); |
9c039d08 | 708 | |
e6056257 | 709 | #ifndef __WXMAC__ |
9c039d08 | 710 | int GetItemHeight(); |
e6056257 | 711 | #endif |
9c039d08 | 712 | }; |
9c039d08 | 713 | |
7bf85405 RD |
714 | //---------------------------------------------------------------------- |
715 | ||
d56cebe7 RD |
716 | |
717 | class wxTextAttr | |
718 | { | |
719 | public: | |
720 | // ctors | |
721 | wxTextAttr(const wxColour& colText = wxNullColour, | |
722 | const wxColour& colBack = wxNullColour, | |
723 | const wxFont& font = wxNullFont); | |
724 | ~wxTextAttr(); | |
725 | ||
726 | // setters | |
727 | void SetTextColour(const wxColour& colText); | |
728 | void SetBackgroundColour(const wxColour& colBack); | |
729 | void SetFont(const wxFont& font); | |
730 | ||
731 | // accessors | |
732 | bool HasTextColour() const; | |
733 | bool HasBackgroundColour() const; | |
734 | bool HasFont() const; | |
735 | ||
c5943253 RD |
736 | wxColour GetTextColour() const; |
737 | wxColour GetBackgroundColour() const; | |
738 | wxFont GetFont() const; | |
98624b49 RD |
739 | |
740 | // returns false if we have any attributes set, true otherwise | |
741 | bool IsDefault(); | |
2f4e9287 RD |
742 | |
743 | // return the attribute having the valid font and colours: it uses the | |
744 | // attributes set in attr and falls back first to attrDefault and then to | |
745 | // the text control font/colours for those attributes which are not set | |
746 | static wxTextAttr Combine(const wxTextAttr& attr, | |
747 | const wxTextAttr& attrDef, | |
748 | const wxTextCtrl *text); | |
d56cebe7 RD |
749 | }; |
750 | ||
751 | ||
752 | ||
7bf85405 RD |
753 | class wxTextCtrl : public wxControl { |
754 | public: | |
137b5242 RD |
755 | wxTextCtrl(wxWindow* parent, wxWindowID id, |
756 | const wxString& value = wxPyEmptyString, | |
b68dc582 RD |
757 | const wxPoint& pos = wxDefaultPosition, |
758 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 759 | long style = 0, |
b68dc582 | 760 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 761 | const wxString& name = wxPyTextCtrlNameStr); |
09f3d4e6 RD |
762 | %name(wxPreTextCtrl)wxTextCtrl(); |
763 | ||
137b5242 RD |
764 | bool Create(wxWindow* parent, wxWindowID id, |
765 | const wxString& value = wxPyEmptyString, | |
09f3d4e6 RD |
766 | const wxPoint& pos = wxDefaultPosition, |
767 | const wxSize& size = wxDefaultSize, | |
768 | long style = 0, | |
769 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 770 | const wxString& name = wxPyTextCtrlNameStr); |
7bf85405 | 771 | |
0122b7e3 | 772 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 773 | %pragma(python) addtomethod = "wxPreTextCtrl:val._setOORInfo(val)" |
9c039d08 | 774 | |
98624b49 RD |
775 | |
776 | wxString GetValue() const; | |
777 | void SetValue(const wxString& value); | |
778 | ||
68320e40 RD |
779 | wxString GetRange(long from, long to); |
780 | ||
98624b49 RD |
781 | int GetLineLength(long lineNo) const; |
782 | wxString GetLineText(long lineNo) const; | |
783 | int GetNumberOfLines() const; | |
784 | ||
785 | bool IsModified() const; | |
786 | bool IsEditable() const; | |
787 | ||
788 | // If the return values from and to are the same, there is no selection. | |
789 | void GetSelection(long* OUTPUT, long* OUTPUT) const; | |
b78b83ec | 790 | wxString GetStringSelection(); |
98624b49 | 791 | |
7bf85405 | 792 | void Clear(); |
7bf85405 | 793 | void Replace(long from, long to, const wxString& value); |
98624b49 RD |
794 | void Remove(long from, long to); |
795 | ||
796 | // load/save the controls contents from/to the file | |
797 | bool LoadFile(const wxString& file); | |
137b5242 | 798 | bool SaveFile(const wxString& file = wxPyEmptyString); |
98624b49 RD |
799 | |
800 | // clears the dirty flag | |
801 | void DiscardEdits(); | |
802 | ||
803 | // set the max number of characters which may be entered in a single line | |
804 | // text control | |
805 | void SetMaxLength(unsigned long len); | |
806 | ||
807 | // writing text inserts it at the current position, appending always | |
808 | // inserts it at the end | |
7bf85405 | 809 | void WriteText(const wxString& text); |
cf694132 | 810 | void AppendText(const wxString& text); |
b1462dfa | 811 | |
db0ff83e RD |
812 | // insert the character which would have resulted from this key event, |
813 | // return TRUE if anything has been inserted | |
814 | bool EmulateKeyPress(const wxKeyEvent& event); | |
815 | ||
98624b49 RD |
816 | // text control under some platforms supports the text styles: these |
817 | // methods allow to apply the given text style to the given selection or to | |
818 | // set/get the style which will be used for all appended text | |
d56cebe7 RD |
819 | bool SetStyle(long start, long end, const wxTextAttr& style); |
820 | bool SetDefaultStyle(const wxTextAttr& style); | |
821 | const wxTextAttr& GetDefaultStyle() const; | |
822 | ||
98624b49 RD |
823 | // translate between the position (which is just an index in the text ctrl |
824 | // considering all its contents as a single strings) and (x, y) coordinates | |
825 | // which represent column and line. | |
826 | long XYToPosition(long x, long y) const; | |
68320e40 RD |
827 | void PositionToXY(long pos, long *OUTPUT, long *OUTPUT) const; |
828 | ||
829 | //bool PositionToXY(long pos, long *OUTPUT, long *OUTPUT) const; | |
830 | // TODO: check return value, raise exception. | |
98624b49 RD |
831 | |
832 | void ShowPosition(long pos); | |
833 | ||
834 | // Clipboard operations | |
835 | void Copy(); | |
836 | void Cut(); | |
837 | void Paste(); | |
838 | ||
839 | bool CanCopy() const; | |
840 | bool CanCut() const; | |
841 | bool CanPaste() const; | |
842 | ||
843 | // Undo/redo | |
844 | void Undo(); | |
845 | void Redo(); | |
846 | ||
847 | bool CanUndo() const; | |
848 | bool CanRedo() const; | |
849 | ||
850 | // Insertion point | |
851 | void SetInsertionPoint(long pos); | |
852 | void SetInsertionPointEnd(); | |
853 | long GetInsertionPoint() const; | |
854 | long GetLastPosition() const; | |
855 | ||
856 | void SetSelection(long from, long to); | |
857 | void SelectAll(); | |
858 | void SetEditable(bool editable); | |
00b6c4e3 | 859 | |
64c06a50 RD |
860 | bool IsSingleLine(); |
861 | bool IsMultiLine(); | |
862 | ||
863 | ||
b1462dfa RD |
864 | %addmethods { |
865 | void write(const wxString& text) { | |
d56cebe7 | 866 | self->AppendText(text); |
b1462dfa RD |
867 | } |
868 | } | |
2f4e9287 RD |
869 | |
870 | // TODO: replace this when the method is really added to wxTextCtrl | |
871 | %addmethods { | |
872 | wxString GetString(long from, long to) { | |
64c06a50 | 873 | return self->GetValue().Mid(from, to - from); |
2f4e9287 RD |
874 | } |
875 | } | |
7bf85405 RD |
876 | }; |
877 | ||
878 | //---------------------------------------------------------------------- | |
879 | ||
880 | class wxScrollBar : public wxControl { | |
881 | public: | |
882 | wxScrollBar(wxWindow* parent, wxWindowID id = -1, | |
b68dc582 RD |
883 | const wxPoint& pos = wxDefaultPosition, |
884 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 885 | long style = wxSB_HORIZONTAL, |
b68dc582 | 886 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 887 | const wxString& name = wxPyScrollBarNameStr); |
09f3d4e6 RD |
888 | %name(wxPreScrollBar)wxScrollBar(); |
889 | ||
890 | bool Create(wxWindow* parent, wxWindowID id = -1, | |
891 | const wxPoint& pos = wxDefaultPosition, | |
892 | const wxSize& size = wxDefaultSize, | |
893 | long style = wxSB_HORIZONTAL, | |
894 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 895 | const wxString& name = wxPyScrollBarNameStr); |
7bf85405 | 896 | |
0122b7e3 | 897 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 898 | %pragma(python) addtomethod = "wxPreScrollBar:val._setOORInfo(val)" |
9c039d08 | 899 | |
7bf85405 RD |
900 | int GetRange(); |
901 | int GetPageSize(); | |
b8b8dda7 | 902 | int GetThumbPosition(); |
7bf85405 | 903 | int GetThumbSize(); |
26b9cf27 | 904 | %name(GetThumbLength) int GetThumbSize(); // to match the docs |
ebf4302c RD |
905 | |
906 | bool IsVertical(); | |
907 | ||
b8b8dda7 | 908 | void SetThumbPosition(int viewStart); |
7bf85405 RD |
909 | void SetScrollbar(int position, int thumbSize, |
910 | int range, int pageSize, | |
911 | bool refresh = TRUE); | |
912 | }; | |
913 | ||
914 | //---------------------------------------------------------------------- | |
915 | ||
916 | class wxSpinButton : public wxControl { | |
917 | public: | |
918 | wxSpinButton(wxWindow* parent, wxWindowID id = -1, | |
b68dc582 RD |
919 | const wxPoint& pos = wxDefaultPosition, |
920 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 921 | long style = wxSP_HORIZONTAL, |
137b5242 | 922 | const wxString& name = wxPySPIN_BUTTON_NAME); |
09f3d4e6 RD |
923 | %name(wxPreSpinButton)wxSpinButton(); |
924 | ||
925 | bool Create(wxWindow* parent, wxWindowID id = -1, | |
926 | const wxPoint& pos = wxDefaultPosition, | |
927 | const wxSize& size = wxDefaultSize, | |
928 | long style = wxSP_HORIZONTAL, | |
137b5242 | 929 | const wxString& name = wxPySPIN_BUTTON_NAME); |
7bf85405 | 930 | |
0122b7e3 | 931 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 932 | %pragma(python) addtomethod = "wxPreSpinButton:val._setOORInfo(val)" |
0122b7e3 | 933 | |
7bf85405 RD |
934 | int GetMax(); |
935 | int GetMin(); | |
936 | int GetValue(); | |
937 | void SetRange(int min, int max); | |
938 | void SetValue(int value); | |
939 | }; | |
940 | ||
941 | //---------------------------------------------------------------------- | |
942 | ||
943 | class wxStaticBitmap : public wxControl { | |
944 | public: | |
945 | wxStaticBitmap(wxWindow* parent, wxWindowID id, | |
946 | const wxBitmap& bitmap, | |
b68dc582 RD |
947 | const wxPoint& pos = wxDefaultPosition, |
948 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 949 | long style = 0, |
137b5242 | 950 | const wxString& name = wxPyStaticBitmapNameStr); |
09f3d4e6 RD |
951 | %name(wxPreStaticBitmap)wxStaticBitmap(); |
952 | ||
953 | bool Create(wxWindow* parent, wxWindowID id, | |
954 | const wxBitmap& bitmap, | |
955 | const wxPoint& pos = wxDefaultPosition, | |
956 | const wxSize& size = wxDefaultSize, | |
957 | long style = 0, | |
137b5242 | 958 | const wxString& name = wxPyStaticBitmapNameStr); |
7bf85405 | 959 | |
0122b7e3 | 960 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 961 | %pragma(python) addtomethod = "wxPreStaticBitmap:val._setOORInfo(val)" |
9c039d08 | 962 | |
c5943253 | 963 | wxBitmap GetBitmap(); |
7bf85405 | 964 | void SetBitmap(const wxBitmap& bitmap); |
8bf5d46e | 965 | void SetIcon(const wxIcon& icon); |
7bf85405 RD |
966 | }; |
967 | ||
968 | //---------------------------------------------------------------------- | |
969 | ||
970 | class wxRadioBox : public wxControl { | |
971 | public: | |
972 | wxRadioBox(wxWindow* parent, wxWindowID id, | |
973 | const wxString& label, | |
b68dc582 RD |
974 | const wxPoint& point = wxDefaultPosition, |
975 | const wxSize& size = wxDefaultSize, | |
eec92d76 | 976 | int LCOUNT = 0, wxString* choices = NULL, |
7bf85405 RD |
977 | int majorDimension = 0, |
978 | long style = wxRA_HORIZONTAL, | |
b68dc582 | 979 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 980 | const wxString& name = wxPyRadioBoxNameStr); |
09f3d4e6 RD |
981 | %name(wxPreRadioBox)wxRadioBox(); |
982 | ||
983 | bool Create(wxWindow* parent, wxWindowID id, | |
984 | const wxString& label, | |
985 | const wxPoint& point = wxDefaultPosition, | |
986 | const wxSize& size = wxDefaultSize, | |
987 | int LCOUNT = 0, wxString* choices = NULL, | |
988 | int majorDimension = 0, | |
989 | long style = wxRA_HORIZONTAL, | |
990 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 991 | const wxString& name = wxPyRadioBoxNameStr); |
7bf85405 | 992 | |
0122b7e3 | 993 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 994 | %pragma(python) addtomethod = "wxPreRadioBox:val._setOORInfo(val)" |
9c039d08 | 995 | |
0699c864 RD |
996 | void Enable(bool enable); |
997 | %name(EnableItem)void Enable(int n, bool enable); | |
7bf85405 | 998 | int FindString(const wxString& string); |
bb0054cd | 999 | |
7bf85405 | 1000 | wxString GetString(int n); |
2c8a649d | 1001 | |
e6056257 RD |
1002 | #ifdef __WXGTK__ |
1003 | %name(GetItemLabel)wxString GetLabel( int item ); | |
1004 | %name(SetItemLabel)void SetLabel( int item, const wxString& label ); | |
1005 | #else | |
0adbc166 RD |
1006 | void SetString(int n, const wxString& label); |
1007 | %pragma(python) addtoclass = " | |
1008 | GetItemLabel = GetString | |
1009 | SetItemLabel = SetString | |
1010 | " | |
2c8a649d RD |
1011 | int GetColumnCount(); |
1012 | int GetRowCount(); | |
2c8a649d RD |
1013 | #endif |
1014 | ||
0adbc166 | 1015 | int GetSelection(); |
7bf85405 | 1016 | wxString GetStringSelection(); |
0adbc166 RD |
1017 | int GetCount(); |
1018 | %pragma(python) addtoclass = "Number = GetCount" | |
1019 | ||
7bf85405 RD |
1020 | void SetSelection(int n); |
1021 | void SetStringSelection(const wxString& string); | |
1022 | void Show(bool show); | |
1023 | %name(ShowItem)void Show(int item, bool show); | |
1024 | }; | |
1025 | ||
1026 | //---------------------------------------------------------------------- | |
1027 | ||
1028 | class wxRadioButton : public wxControl { | |
1029 | public: | |
1030 | wxRadioButton(wxWindow* parent, wxWindowID id, | |
1031 | const wxString& label, | |
b68dc582 RD |
1032 | const wxPoint& pos = wxDefaultPosition, |
1033 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 1034 | long style = 0, |
b68dc582 | 1035 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 1036 | const wxString& name = wxPyRadioButtonNameStr); |
09f3d4e6 RD |
1037 | %name(wxPreRadioButton)wxRadioButton(); |
1038 | ||
1039 | bool Create(wxWindow* parent, wxWindowID id, | |
1040 | const wxString& label, | |
1041 | const wxPoint& pos = wxDefaultPosition, | |
1042 | const wxSize& size = wxDefaultSize, | |
1043 | long style = 0, | |
1044 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 1045 | const wxString& name = wxPyRadioButtonNameStr); |
7bf85405 | 1046 | |
0122b7e3 | 1047 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 1048 | %pragma(python) addtomethod = "wxPreRadioButton:val._setOORInfo(val)" |
9c039d08 | 1049 | |
7bf85405 RD |
1050 | bool GetValue(); |
1051 | void SetValue(bool value); | |
1052 | }; | |
1053 | ||
1054 | //---------------------------------------------------------------------- | |
1055 | ||
1056 | class wxSlider : public wxControl { | |
1057 | public: | |
1058 | wxSlider(wxWindow* parent, wxWindowID id, | |
1059 | int value, int minValue, int maxValue, | |
b68dc582 RD |
1060 | const wxPoint& point = wxDefaultPosition, |
1061 | const wxSize& size = wxDefaultSize, | |
7bf85405 | 1062 | long style = wxSL_HORIZONTAL, |
b68dc582 | 1063 | const wxValidator& validator = wxDefaultValidator, |
137b5242 | 1064 | const wxString& name = wxPySliderNameStr); |
09f3d4e6 RD |
1065 | %name(wxPreSlider)wxSlider(); |
1066 | ||
1067 | bool Create(wxWindow* parent, wxWindowID id, | |
1068 | int value, int minValue, int maxValue, | |
1069 | const wxPoint& point = wxDefaultPosition, | |
1070 | const wxSize& size = wxDefaultSize, | |
1071 | long style = wxSL_HORIZONTAL, | |
1072 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 1073 | const wxString& name = wxPySliderNameStr); |
7bf85405 | 1074 | |
0122b7e3 | 1075 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 1076 | %pragma(python) addtomethod = "wxPreSlider:val._setOORInfo(val)" |
9c039d08 | 1077 | |
7bf85405 RD |
1078 | void ClearSel(); |
1079 | void ClearTicks(); | |
1080 | int GetLineSize(); | |
1081 | int GetMax(); | |
1082 | int GetMin(); | |
1083 | int GetPageSize(); | |
1084 | int GetSelEnd(); | |
1085 | int GetSelStart(); | |
1086 | int GetThumbLength(); | |
1087 | int GetTickFreq(); | |
1088 | int GetValue(); | |
1089 | void SetRange(int minValue, int maxValue); | |
1090 | void SetTickFreq(int n, int pos); | |
1091 | void SetLineSize(int lineSize); | |
1092 | void SetPageSize(int pageSize); | |
1093 | void SetSelection(int startPos, int endPos); | |
1094 | void SetThumbLength(int len); | |
1095 | void SetTick(int tickPos); | |
1096 | void SetValue(int value); | |
1097 | }; | |
1098 | ||
1099 | ||
1100 | //---------------------------------------------------------------------- | |
1101 | ||
f6bcfd97 BP |
1102 | class wxSpinCtrl : public wxSpinButton { |
1103 | public: | |
1104 | wxSpinCtrl(wxWindow *parent, | |
1105 | wxWindowID id = -1, | |
137b5242 | 1106 | const wxString& value = wxPyEmptyString, |
b68dc582 RD |
1107 | const wxPoint& pos = wxDefaultPosition, |
1108 | const wxSize& size = wxDefaultSize, | |
f6bcfd97 BP |
1109 | long style = wxSP_ARROW_KEYS, |
1110 | int min = 0, int max = 100, int initial = 0, | |
137b5242 | 1111 | const wxString& name = wxPySpinCtrlNameStr); |
09f3d4e6 RD |
1112 | %name(wxPreSpinCtrl)wxSpinCtrl(); |
1113 | ||
1114 | bool Create(wxWindow *parent, | |
1115 | wxWindowID id = -1, | |
137b5242 | 1116 | const wxString& value = wxPyEmptyString, |
09f3d4e6 RD |
1117 | const wxPoint& pos = wxDefaultPosition, |
1118 | const wxSize& size = wxDefaultSize, | |
1119 | long style = wxSP_ARROW_KEYS, | |
1120 | int min = 0, int max = 100, int initial = 0, | |
137b5242 | 1121 | const wxString& name = wxPySpinCtrlNameStr); |
f6bcfd97 | 1122 | |
0122b7e3 | 1123 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 1124 | %pragma(python) addtomethod = "wxPreSpinCtrl:val._setOORInfo(val)" |
f6bcfd97 | 1125 | |
c368d904 RD |
1126 | int GetMax(); |
1127 | int GetMin(); | |
1128 | int GetValue(); | |
1129 | void SetRange(int min, int max); | |
1130 | void SetValue(int value); | |
1131 | ||
f6bcfd97 BP |
1132 | }; |
1133 | ||
1134 | ||
1135 | //---------------------------------------------------------------------- | |
1136 | ||
e6056257 | 1137 | #ifndef __WXMAC__ |
d1679124 RD |
1138 | enum { wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, }; |
1139 | ||
1140 | class wxToggleButton : public wxControl { | |
1141 | public: | |
1142 | wxToggleButton(wxWindow *parent, | |
1143 | wxWindowID id, | |
1144 | const wxString& label, | |
1145 | const wxPoint& pos = wxDefaultPosition, | |
1146 | const wxSize& size = wxDefaultSize, | |
1147 | long style = 0, | |
1148 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 1149 | const wxString& name = wxPyCheckBoxNameStr); |
09f3d4e6 RD |
1150 | %name(wxPreToggleButton)wxToggleButton(); |
1151 | ||
1152 | bool Create(wxWindow *parent, | |
1153 | wxWindowID id, | |
1154 | const wxString& label, | |
1155 | const wxPoint& pos = wxDefaultPosition, | |
1156 | const wxSize& size = wxDefaultSize, | |
1157 | long style = 0, | |
1158 | const wxValidator& validator = wxDefaultValidator, | |
137b5242 | 1159 | const wxString& name = wxPyCheckBoxNameStr); |
d1679124 | 1160 | |
0122b7e3 | 1161 | %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" |
17c0e08c | 1162 | %pragma(python) addtomethod = "wxPreToggleButton:val._setOORInfo(val)" |
0122b7e3 | 1163 | |
d1679124 RD |
1164 | void SetValue(bool value); |
1165 | bool GetValue() const ; | |
1166 | void SetLabel(const wxString& label); | |
1167 | ||
1168 | }; | |
1169 | ||
e6056257 | 1170 | #endif |
68320e40 | 1171 | |
d1679124 RD |
1172 | //---------------------------------------------------------------------- |
1173 | //---------------------------------------------------------------------- | |
1174 | //---------------------------------------------------------------------- | |
1175 | ||
c368d904 RD |
1176 | |
1177 |