]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/controls.i
Demo cleanup
[wxWidgets.git] / wxPython / src / controls.i
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
13 %module controls
14
15 %{
16 #include "helpers.h"
17 #include <wx/slider.h>
18 #include <wx/spinbutt.h>
19 #include <wx/spinctrl.h>
20 #include <wx/dynarray.h>
21 #include <wx/statline.h>
22 #include <wx/tglbtn.h>
23
24 #ifdef __WXMSW__
25 #if wxUSE_OWNER_DRAWN
26 #include <wx/checklst.h>
27 #endif
28 #endif
29
30 #ifdef __WXGTK__
31 #include <wx/checklst.h>
32 #endif
33
34 %}
35
36 //----------------------------------------------------------------------
37
38 %include typemaps.i
39 %include my_typemaps.i
40
41 // Import some definitions of other classes, etc.
42 %import _defs.i
43 %import misc.i
44 %import windows.i
45 %import gdi.i
46 %import events.i
47
48 %pragma(python) code = "import wx"
49
50 //----------------------------------------------------------------------
51
52 %readonly
53 wxValidator wxDefaultValidator;
54 %readwrite
55
56 //----------------------------------------------------------------------
57
58 class wxControl : public wxWindow {
59 public:
60 wxControl(wxWindow *parent,
61 wxWindowID id,
62 const wxPoint& pos=wxDefaultPosition,
63 const wxSize& size=wxDefaultSize,
64 long style=0,
65 const wxValidator& validator=wxDefaultValidator,
66 const char* name="control");
67 %name(wxPreControl)wxControl();
68
69 bool Create(wxWindow *parent,
70 wxWindowID id,
71 const wxPoint& pos=wxDefaultPosition,
72 const wxSize& size=wxDefaultSize,
73 long style=0,
74 const wxValidator& validator=wxDefaultValidator,
75 const char* name="control");
76
77 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
78 %pragma(python) addtomethod = "wxPreControl:val._setOORInfo(val)"
79
80 void Command(wxCommandEvent& event);
81 wxString GetLabel();
82 void SetLabel(const wxString& label);
83 };
84
85
86 //----------------------------------------------------------------------
87
88
89 class wxControlWithItems : public wxControl {
90 public:
91
92 // void Clear(); ambiguous, redefine below...
93 void Delete(int n);
94
95 int GetCount();
96 %pragma(python) addtoclass = "Number = GetCount"
97 wxString GetString(int n);
98 void SetString(int n, const wxString& s);
99 int FindString(const wxString& s);
100
101 void Select(int n);
102 int GetSelection();
103
104 wxString GetStringSelection() const;
105
106 // void Append(const wxString& item);
107 // void Append(const wxString& item, char* clientData);
108 // char* GetClientData(const int n);
109 // void SetClientData(const int n, char* data);
110 %addmethods {
111 void Append(const wxString& item, PyObject* clientData=NULL) {
112 if (clientData) {
113 wxPyClientData* data = new wxPyClientData(clientData);
114 self->Append(item, data);
115 } else
116 self->Append(item);
117 }
118
119 PyObject* GetClientData(int n) {
120 wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n);
121 if (data) {
122 Py_INCREF(data->m_obj);
123 return data->m_obj;
124 } else {
125 Py_INCREF(Py_None);
126 return Py_None;
127 }
128 }
129
130 void SetClientData(int n, PyObject* clientData) {
131 wxPyClientData* data = new wxPyClientData(clientData);
132 self->SetClientObject(n, data);
133 }
134 }
135
136 };
137 //----------------------------------------------------------------------
138
139 class wxButton : public wxControl {
140 public:
141 wxButton(wxWindow* parent, wxWindowID id, const wxString& label,
142 const wxPoint& pos = wxDefaultPosition,
143 const wxSize& size = wxDefaultSize,
144 long style = 0,
145 const wxValidator& validator = wxDefaultValidator,
146 char* name = "button");
147 %name(wxPreButton)wxButton();
148
149 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
150 const wxPoint& pos = wxDefaultPosition,
151 const wxSize& size = wxDefaultSize,
152 long style = 0,
153 const wxValidator& validator = wxDefaultValidator,
154 char* name = "button");
155
156 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
157 %pragma(python) addtomethod = "wxPreButton:val._setOORInfo(val)"
158
159 void SetDefault();
160 void SetBackgroundColour(const wxColour& colour);
161 void SetForegroundColour(const wxColour& colour);
162 #ifdef __WXMSW__
163 void SetImageLabel(const wxBitmap& bitmap);
164 void SetImageMargins(wxCoord x, wxCoord y);
165 #endif
166 static wxSize GetDefaultSize();
167 };
168
169 //----------------------------------------------------------------------
170
171 class wxBitmapButton : public wxButton {
172 public:
173 wxBitmapButton(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap,
174 const wxPoint& pos = wxDefaultPosition,
175 const wxSize& size = wxDefaultSize,
176 long style = wxBU_AUTODRAW,
177 const wxValidator& validator = wxDefaultValidator,
178 char* name = "button");
179 %name(wxPreBitmapButton)wxBitmapButton();
180
181 bool Create(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap,
182 const wxPoint& pos = wxDefaultPosition,
183 const wxSize& size = wxDefaultSize,
184 long style = wxBU_AUTODRAW,
185 const wxValidator& validator = wxDefaultValidator,
186 char* name = "button");
187
188 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
189 %pragma(python) addtomethod = "wxPreBitmapButton:val._setOORInfo(val)"
190
191 wxBitmap& GetBitmapLabel();
192 wxBitmap& GetBitmapDisabled();
193 wxBitmap& GetBitmapFocus();
194 wxBitmap& GetBitmapSelected();
195 void SetBitmapDisabled(const wxBitmap& bitmap);
196 void SetBitmapFocus(const wxBitmap& bitmap);
197 void SetBitmapSelected(const wxBitmap& bitmap);
198 void SetBitmapLabel(const wxBitmap& bitmap);
199
200 void SetMargins(int x, int y) { m_marginX = x; m_marginY = y; }
201 int GetMarginX() const { return m_marginX; }
202 int GetMarginY() const { return m_marginY; }
203 };
204
205 //----------------------------------------------------------------------
206
207 class wxCheckBox : public wxControl {
208 public:
209 wxCheckBox(wxWindow* parent, wxWindowID id, const wxString& label,
210 const wxPoint& pos = wxDefaultPosition,
211 const wxSize& size = wxDefaultSize,
212 long style = 0,
213 const wxValidator& val = wxDefaultValidator,
214 char* name = "checkBox");
215 %name(wxPreCheckBox)wxCheckBox();
216
217 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
218 const wxPoint& pos = wxDefaultPosition,
219 const wxSize& size = wxDefaultSize,
220 long style = 0,
221 const wxValidator& val = wxDefaultValidator,
222 char* name = "checkBox");
223
224 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
225 %pragma(python) addtomethod = "wxPreCheckBox:val._setOORInfo(val)"
226
227 bool GetValue();
228 void SetValue(const bool state);
229 };
230
231 //----------------------------------------------------------------------
232
233 class wxChoice : public wxControlWithItems {
234 public:
235 wxChoice(wxWindow *parent, wxWindowID id,
236 const wxPoint& pos = wxDefaultPosition,
237 const wxSize& size = wxDefaultSize,
238 int LCOUNT=0, wxString* choices=NULL,
239 long style = 0,
240 const wxValidator& validator = wxDefaultValidator,
241 char* name = "choice");
242 %name(wxPreChoice)wxChoice();
243
244 bool Create(wxWindow *parent, wxWindowID id,
245 const wxPoint& pos = wxDefaultPosition,
246 const wxSize& size = wxDefaultSize,
247 int LCOUNT=0, wxString* choices=NULL,
248 long style = 0,
249 const wxValidator& validator = wxDefaultValidator,
250 char* name = "choice");
251
252 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
253 %pragma(python) addtomethod = "wxPreChoice:val._setOORInfo(val)"
254
255 void Clear();
256
257 int GetColumns();
258 void SetColumns(const int n = 1);
259 void SetSelection(const int n);
260 void SetStringSelection(const wxString& string);
261 void SetString(int n, const wxString& s);
262
263 %pragma(python) addtoclass = "
264 Select = SetSelection
265 "
266 };
267
268 //----------------------------------------------------------------------
269
270 // wxGTK's wxComboBox doesn't derive from wxChoice like wxMSW, or
271 // even wxControlWithItems, so we have to duplicate the methods
272 // here... <blech!>
273
274 #ifdef __WXGTK__
275 class wxComboBox : public wxControl
276 {
277 public:
278 wxComboBox(wxWindow* parent, wxWindowID id, char* value = "",
279 const wxPoint& pos = wxDefaultPosition,
280 const wxSize& size = wxDefaultSize,
281 int LCOUNT=0, wxString* choices=NULL,
282 long style = 0,
283 const wxValidator& validator = wxDefaultValidator,
284 char* name = "comboBox");
285 %name(wxPreComboBox)wxComboBox();
286
287 bool Create(wxWindow* parent, wxWindowID id, char* value = "",
288 const wxPoint& pos = wxDefaultPosition,
289 const wxSize& size = wxDefaultSize,
290 int LCOUNT=0, wxString* choices=NULL,
291 long style = 0,
292 const wxValidator& validator = wxDefaultValidator,
293 char* name = "comboBox");
294
295 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
296 %pragma(python) addtomethod = "wxPreComboBox:val._setOORInfo(val)"
297
298 void Copy();
299 void Cut();
300 long GetInsertionPoint();
301 long GetLastPosition();
302 wxString GetValue();
303 void Paste();
304 void Replace(long from, long to, const wxString& text);
305 void Remove(long from, long to);
306 void SetInsertionPoint(long pos);
307 void SetInsertionPointEnd();
308 void SetSelection(int n);
309 %name(SetMark)void SetSelection(long from, long to);
310 void SetValue(const wxString& text);
311 void SetEditable(bool editable);
312
313
314 void Clear();
315 void Delete(int n);
316
317 int GetCount();
318 %pragma(python) addtoclass = "Number = GetCount"
319 wxString GetString(int n);
320 int FindString(const wxString& s);
321
322 //void SetString(int n, const wxString& s); *** No equivalent for wxGTK!!!
323
324 // void Select(int n);
325 %pragma(python) addtoclass = "Select = SetSelection"
326
327 int GetSelection();
328 wxString GetStringSelection() const;
329
330 // void Append(const wxString& item);
331 // void Append(const wxString& item, char* clientData);
332 // char* GetClientData(const int n);
333 // void SetClientData(const int n, char* data);
334 %addmethods {
335 void Append(const wxString& item, PyObject* clientData=NULL) {
336 if (clientData) {
337 wxPyClientData* data = new wxPyClientData(clientData);
338 self->Append(item, data);
339 } else
340 self->Append(item);
341 }
342
343 PyObject* GetClientData(int n) {
344 wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n);
345 if (data) {
346 Py_INCREF(data->m_obj);
347 return data->m_obj;
348 } else {
349 Py_INCREF(Py_None);
350 return Py_None;
351 }
352 }
353
354 void SetClientData(int n, PyObject* clientData) {
355 wxPyClientData* data = new wxPyClientData(clientData);
356 self->SetClientObject(n, data);
357 }
358 }
359
360 };
361
362
363
364 #else // For all but wxGTK
365
366
367 class wxComboBox : public wxChoice {
368 public:
369 wxComboBox(wxWindow* parent, wxWindowID id, char* value = "",
370 const wxPoint& pos = wxDefaultPosition,
371 const wxSize& size = wxDefaultSize,
372 int LCOUNT=0, wxString* choices=NULL,
373 long style = 0,
374 const wxValidator& validator = wxDefaultValidator,
375 char* name = "comboBox");
376 %name(wxPreComboBox)wxComboBox();
377
378 bool Create(wxWindow* parent, wxWindowID id, char* value = "",
379 const wxPoint& pos = wxDefaultPosition,
380 const wxSize& size = wxDefaultSize,
381 int LCOUNT=0, wxString* choices=NULL,
382 long style = 0,
383 const wxValidator& validator = wxDefaultValidator,
384 char* name = "comboBox");
385
386 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
387 %pragma(python) addtomethod = "wxPreComboBox:val._setOORInfo(val)"
388
389 void Copy();
390 void Cut();
391 long GetInsertionPoint();
392 long GetLastPosition();
393 wxString GetValue();
394 void Paste();
395 void Replace(long from, long to, const wxString& text);
396 void Remove(long from, long to);
397 void SetInsertionPoint(long pos);
398 void SetInsertionPointEnd();
399 void SetSelection(int n);
400 %name(SetMark)void SetSelection(long from, long to);
401 void SetValue(const wxString& text);
402 void SetEditable(bool editable);
403 };
404 #endif
405
406
407 //----------------------------------------------------------------------
408
409 class wxGauge : public wxControl {
410 public:
411 wxGauge(wxWindow* parent, wxWindowID id, int range,
412 const wxPoint& pos = wxDefaultPosition,
413 const wxSize& size = wxDefaultSize,
414 long style = wxGA_HORIZONTAL,
415 const wxValidator& validator = wxDefaultValidator,
416 char* name = "gauge");
417 %name(wxPreGauge)wxGauge();
418
419 bool Create(wxWindow* parent, wxWindowID id, int range,
420 const wxPoint& pos = wxDefaultPosition,
421 const wxSize& size = wxDefaultSize,
422 long style = wxGA_HORIZONTAL,
423 const wxValidator& validator = wxDefaultValidator,
424 char* name = "gauge");
425
426 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
427 %pragma(python) addtomethod = "wxPreGauge:val._setOORInfo(val)"
428
429 int GetBezelFace();
430 int GetRange();
431 int GetShadowWidth();
432 int GetValue();
433 void SetBezelFace(int width);
434 void SetRange(int range);
435 void SetShadowWidth(int width);
436 void SetValue(int pos);
437 };
438
439 //----------------------------------------------------------------------
440
441 class wxStaticBox : public wxControl {
442 public:
443 wxStaticBox(wxWindow* parent, wxWindowID id, const wxString& label,
444 const wxPoint& pos = wxDefaultPosition,
445 const wxSize& size = wxDefaultSize,
446 long style = 0,
447 char* name = "staticBox");
448 %name(wxPreStaticBox)wxStaticBox();
449
450 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
451 const wxPoint& pos = wxDefaultPosition,
452 const wxSize& size = wxDefaultSize,
453 long style = 0,
454 char* name = "staticBox");
455
456 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
457 %pragma(python) addtomethod = "wxPreStaticBox:val._setOORInfo(val)"
458 };
459
460
461 //----------------------------------------------------------------------
462
463
464 class wxStaticLine : public wxControl {
465 public:
466 wxStaticLine( wxWindow *parent, wxWindowID id,
467 const wxPoint &pos = wxDefaultPosition,
468 const wxSize &size = wxDefaultSize,
469 long style = wxLI_HORIZONTAL,
470 const char* name = "staticLine" );
471 %name(wxPreStaticLine)wxStaticLine();
472
473 bool Create( wxWindow *parent, wxWindowID id,
474 const wxPoint &pos = wxDefaultPosition,
475 const wxSize &size = wxDefaultSize,
476 long style = wxLI_HORIZONTAL,
477 const char* name = "staticLine" );
478
479 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
480 %pragma(python) addtomethod = "wxPreStaticLine:val._setOORInfo(val)"
481 };
482
483
484 //----------------------------------------------------------------------
485
486 class wxStaticText : public wxControl {
487 public:
488 wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label,
489 const wxPoint& pos = wxDefaultPosition,
490 const wxSize& size = wxDefaultSize,
491 long style = 0,
492 char* name = "staticText");
493 %name(wxPreStaticText)wxStaticText();
494
495 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
496 const wxPoint& pos = wxDefaultPosition,
497 const wxSize& size = wxDefaultSize,
498 long style = 0,
499 char* name = "staticText");
500
501 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
502 %pragma(python) addtomethod = "wxPreStaticText:val._setOORInfo(val)"
503
504 wxString GetLabel();
505 void SetLabel(const wxString& label);
506 };
507
508 //----------------------------------------------------------------------
509
510 class wxListBox : public wxControlWithItems {
511 public:
512 wxListBox(wxWindow* parent, wxWindowID id,
513 const wxPoint& pos = wxDefaultPosition,
514 const wxSize& size = wxDefaultSize,
515 int LCOUNT, wxString* choices = NULL,
516 long style = 0,
517 const wxValidator& validator = wxDefaultValidator,
518 char* name = "listBox");
519 %name(wxPreListBox)wxListBox();
520
521 bool Create(wxWindow* parent, wxWindowID id,
522 const wxPoint& pos = wxDefaultPosition,
523 const wxSize& size = wxDefaultSize,
524 int LCOUNT, wxString* choices = NULL,
525 long style = 0,
526 const wxValidator& validator = wxDefaultValidator,
527 char* name = "listBox");
528
529 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
530 %pragma(python) addtomethod = "wxPreListBox:val._setOORInfo(val)"
531
532 void Clear();
533 void Deselect(int n);
534
535 // int GetSelections(int **selections);
536 %addmethods {
537 PyObject* GetSelections() {
538 wxArrayInt lst;
539 self->GetSelections(lst);
540 PyObject *tup = PyTuple_New(lst.GetCount());
541 for(size_t i=0; i<lst.GetCount(); i++) {
542 PyTuple_SetItem(tup, i, PyInt_FromLong(lst[i]));
543 }
544 return tup;
545 }
546 }
547
548
549 void InsertItems(int LCOUNT, wxString* choices, int pos);
550
551 bool IsSelected(const int n);
552 bool Selected(const int n);
553 void Set(int LCOUNT, wxString* choices);
554 void SetFirstItem(int n);
555 %name(SetFirstItemStr)void SetFirstItem(const wxString& string);
556 void SetSelection(int n, bool select = TRUE);
557 void SetString(int n, const wxString& string);
558 void SetStringSelection(const wxString& string, bool select = TRUE);
559 };
560
561
562 //----------------------------------------------------------------------
563
564 class wxCheckListBox : public wxListBox {
565 public:
566 wxCheckListBox(wxWindow *parent, wxWindowID id,
567 const wxPoint& pos = wxDefaultPosition,
568 const wxSize& size = wxDefaultSize,
569 int LCOUNT = 0,
570 wxString* choices = NULL,
571 long style = 0,
572 const wxValidator& validator = wxDefaultValidator,
573 char* name = "listBox");
574 %name(wxPreCheckListBox)wxCheckListBox();
575
576 bool Create(wxWindow *parent, wxWindowID id,
577 const wxPoint& pos = wxDefaultPosition,
578 const wxSize& size = wxDefaultSize,
579 int LCOUNT = 0,
580 wxString* choices = NULL,
581 long style = 0,
582 const wxValidator& validator = wxDefaultValidator,
583 char* name = "listBox");
584
585 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
586 %pragma(python) addtomethod = "wxPreCheckListBox:val._setOORInfo(val)"
587
588 bool IsChecked(int uiIndex);
589 void Check(int uiIndex, int bCheck = TRUE);
590 void InsertItems(int LCOUNT, wxString* choices, int pos);
591
592 #ifndef __WXMAC__
593 int GetItemHeight();
594 #endif
595 };
596
597 //----------------------------------------------------------------------
598
599
600 class wxTextAttr
601 {
602 public:
603 // ctors
604 wxTextAttr(const wxColour& colText = wxNullColour,
605 const wxColour& colBack = wxNullColour,
606 const wxFont& font = wxNullFont);
607 ~wxTextAttr();
608
609 // setters
610 void SetTextColour(const wxColour& colText);
611 void SetBackgroundColour(const wxColour& colBack);
612 void SetFont(const wxFont& font);
613
614 // accessors
615 bool HasTextColour() const;
616 bool HasBackgroundColour() const;
617 bool HasFont() const;
618
619 const wxColour& GetTextColour() const;
620 const wxColour& GetBackgroundColour() const;
621 const wxFont& GetFont() const;
622
623 // returns false if we have any attributes set, true otherwise
624 bool IsDefault();
625 };
626
627
628
629 class wxTextCtrl : public wxControl {
630 public:
631 wxTextCtrl(wxWindow* parent, wxWindowID id, char* value = "",
632 const wxPoint& pos = wxDefaultPosition,
633 const wxSize& size = wxDefaultSize,
634 long style = 0,
635 const wxValidator& validator = wxDefaultValidator,
636 char* name = "text");
637 %name(wxPreTextCtrl)wxTextCtrl();
638
639 bool Create(wxWindow* parent, wxWindowID id, char* value = "",
640 const wxPoint& pos = wxDefaultPosition,
641 const wxSize& size = wxDefaultSize,
642 long style = 0,
643 const wxValidator& validator = wxDefaultValidator,
644 char* name = "text");
645
646 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
647 %pragma(python) addtomethod = "wxPreTextCtrl:val._setOORInfo(val)"
648
649
650 wxString GetValue() const;
651 void SetValue(const wxString& value);
652
653 int GetLineLength(long lineNo) const;
654 wxString GetLineText(long lineNo) const;
655 int GetNumberOfLines() const;
656
657 bool IsModified() const;
658 bool IsEditable() const;
659
660 // If the return values from and to are the same, there is no selection.
661 void GetSelection(long* OUTPUT, long* OUTPUT) const;
662 wxString GetStringSelection();
663
664 void Clear();
665 void Replace(long from, long to, const wxString& value);
666 void Remove(long from, long to);
667
668 // load/save the controls contents from/to the file
669 bool LoadFile(const wxString& file);
670 bool SaveFile(const wxString& file = wxEmptyString);
671
672 // clears the dirty flag
673 void DiscardEdits();
674
675 // set the max number of characters which may be entered in a single line
676 // text control
677 void SetMaxLength(unsigned long len);
678
679 // writing text inserts it at the current position, appending always
680 // inserts it at the end
681 void WriteText(const wxString& text);
682 void AppendText(const wxString& text);
683
684 // text control under some platforms supports the text styles: these
685 // methods allow to apply the given text style to the given selection or to
686 // set/get the style which will be used for all appended text
687 bool SetStyle(long start, long end, const wxTextAttr& style);
688 bool SetDefaultStyle(const wxTextAttr& style);
689 const wxTextAttr& GetDefaultStyle() const;
690
691 // translate between the position (which is just an index in the text ctrl
692 // considering all its contents as a single strings) and (x, y) coordinates
693 // which represent column and line.
694 long XYToPosition(long x, long y) const;
695 bool PositionToXY(long pos, long *OUTPUT, long *OUTPUT) const;
696
697 void ShowPosition(long pos);
698
699 // Clipboard operations
700 void Copy();
701 void Cut();
702 void Paste();
703
704 bool CanCopy() const;
705 bool CanCut() const;
706 bool CanPaste() const;
707
708 // Undo/redo
709 void Undo();
710 void Redo();
711
712 bool CanUndo() const;
713 bool CanRedo() const;
714
715 // Insertion point
716 void SetInsertionPoint(long pos);
717 void SetInsertionPointEnd();
718 long GetInsertionPoint() const;
719 long GetLastPosition() const;
720
721 void SetSelection(long from, long to);
722 void SelectAll();
723 void SetEditable(bool editable);
724
725 %addmethods {
726 void write(const wxString& text) {
727 self->AppendText(text);
728 }
729 }
730 };
731
732 //----------------------------------------------------------------------
733
734 class wxScrollBar : public wxControl {
735 public:
736 wxScrollBar(wxWindow* parent, wxWindowID id = -1,
737 const wxPoint& pos = wxDefaultPosition,
738 const wxSize& size = wxDefaultSize,
739 long style = wxSB_HORIZONTAL,
740 const wxValidator& validator = wxDefaultValidator,
741 char* name = "scrollBar");
742 %name(wxPreScrollBar)wxScrollBar();
743
744 bool Create(wxWindow* parent, wxWindowID id = -1,
745 const wxPoint& pos = wxDefaultPosition,
746 const wxSize& size = wxDefaultSize,
747 long style = wxSB_HORIZONTAL,
748 const wxValidator& validator = wxDefaultValidator,
749 char* name = "scrollBar");
750
751 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
752 %pragma(python) addtomethod = "wxPreScrollBar:val._setOORInfo(val)"
753
754 int GetRange();
755 int GetPageSize();
756 int GetThumbPosition();
757 int GetThumbSize();
758 %name(GetThumbLength) int GetThumbSize(); // to match the docs
759 void SetThumbPosition(int viewStart);
760 void SetScrollbar(int position, int thumbSize,
761 int range, int pageSize,
762 bool refresh = TRUE);
763 };
764
765 //----------------------------------------------------------------------
766
767 class wxSpinButton : public wxControl {
768 public:
769 wxSpinButton(wxWindow* parent, wxWindowID id = -1,
770 const wxPoint& pos = wxDefaultPosition,
771 const wxSize& size = wxDefaultSize,
772 long style = wxSP_HORIZONTAL,
773 char* name = "spinButton");
774 %name(wxPreSpinButton)wxSpinButton();
775
776 bool Create(wxWindow* parent, wxWindowID id = -1,
777 const wxPoint& pos = wxDefaultPosition,
778 const wxSize& size = wxDefaultSize,
779 long style = wxSP_HORIZONTAL,
780 char* name = "spinButton");
781
782 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
783 %pragma(python) addtomethod = "wxPreSpinButton:val._setOORInfo(val)"
784
785 int GetMax();
786 int GetMin();
787 int GetValue();
788 void SetRange(int min, int max);
789 void SetValue(int value);
790 };
791
792 //----------------------------------------------------------------------
793
794 class wxStaticBitmap : public wxControl {
795 public:
796 wxStaticBitmap(wxWindow* parent, wxWindowID id,
797 const wxBitmap& bitmap,
798 const wxPoint& pos = wxDefaultPosition,
799 const wxSize& size = wxDefaultSize,
800 long style = 0,
801 char* name = "staticBitmap");
802 %name(wxPreStaticBitmap)wxStaticBitmap();
803
804 bool Create(wxWindow* parent, wxWindowID id,
805 const wxBitmap& bitmap,
806 const wxPoint& pos = wxDefaultPosition,
807 const wxSize& size = wxDefaultSize,
808 long style = 0,
809 char* name = "staticBitmap");
810
811 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
812 %pragma(python) addtomethod = "wxPreStaticBitmap:val._setOORInfo(val)"
813
814 const wxBitmap& GetBitmap();
815 void SetBitmap(const wxBitmap& bitmap);
816 void SetIcon(const wxIcon& icon);
817 };
818
819 //----------------------------------------------------------------------
820
821 class wxRadioBox : public wxControl {
822 public:
823 wxRadioBox(wxWindow* parent, wxWindowID id,
824 const wxString& label,
825 const wxPoint& point = wxDefaultPosition,
826 const wxSize& size = wxDefaultSize,
827 int LCOUNT = 0, wxString* choices = NULL,
828 int majorDimension = 0,
829 long style = wxRA_HORIZONTAL,
830 const wxValidator& validator = wxDefaultValidator,
831 char* name = "radioBox");
832 %name(wxPreRadioBox)wxRadioBox();
833
834 bool Create(wxWindow* parent, wxWindowID id,
835 const wxString& label,
836 const wxPoint& point = wxDefaultPosition,
837 const wxSize& size = wxDefaultSize,
838 int LCOUNT = 0, wxString* choices = NULL,
839 int majorDimension = 0,
840 long style = wxRA_HORIZONTAL,
841 const wxValidator& validator = wxDefaultValidator,
842 char* name = "radioBox");
843
844 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
845 %pragma(python) addtomethod = "wxPreRadioBox:val._setOORInfo(val)"
846
847 void Enable(bool enable);
848 %name(EnableItem)void Enable(int n, bool enable);
849 int FindString(const wxString& string);
850
851 wxString GetString(int n);
852
853 #ifdef __WXGTK__
854 %name(GetItemLabel)wxString GetLabel( int item );
855 %name(SetItemLabel)void SetLabel( int item, const wxString& label );
856 #else
857 void SetString(int n, const wxString& label);
858 %pragma(python) addtoclass = "
859 GetItemLabel = GetString
860 SetItemLabel = SetString
861 "
862 int GetColumnCount();
863 int GetRowCount();
864 #endif
865
866 int GetSelection();
867 wxString GetStringSelection();
868 int GetCount();
869 %pragma(python) addtoclass = "Number = GetCount"
870
871 void SetSelection(int n);
872 void SetStringSelection(const wxString& string);
873 void Show(bool show);
874 %name(ShowItem)void Show(int item, bool show);
875 };
876
877 //----------------------------------------------------------------------
878
879 class wxRadioButton : public wxControl {
880 public:
881 wxRadioButton(wxWindow* parent, wxWindowID id,
882 const wxString& label,
883 const wxPoint& pos = wxDefaultPosition,
884 const wxSize& size = wxDefaultSize,
885 long style = 0,
886 const wxValidator& validator = wxDefaultValidator,
887 char* name = "radioButton");
888 %name(wxPreRadioButton)wxRadioButton();
889
890 bool Create(wxWindow* parent, wxWindowID id,
891 const wxString& label,
892 const wxPoint& pos = wxDefaultPosition,
893 const wxSize& size = wxDefaultSize,
894 long style = 0,
895 const wxValidator& validator = wxDefaultValidator,
896 char* name = "radioButton");
897
898 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
899 %pragma(python) addtomethod = "wxPreRadioButton:val._setOORInfo(val)"
900
901 bool GetValue();
902 void SetValue(bool value);
903 };
904
905 //----------------------------------------------------------------------
906
907 class wxSlider : public wxControl {
908 public:
909 wxSlider(wxWindow* parent, wxWindowID id,
910 int value, int minValue, int maxValue,
911 const wxPoint& point = wxDefaultPosition,
912 const wxSize& size = wxDefaultSize,
913 long style = wxSL_HORIZONTAL,
914 const wxValidator& validator = wxDefaultValidator,
915 char* name = "slider");
916 %name(wxPreSlider)wxSlider();
917
918 bool Create(wxWindow* parent, wxWindowID id,
919 int value, int minValue, int maxValue,
920 const wxPoint& point = wxDefaultPosition,
921 const wxSize& size = wxDefaultSize,
922 long style = wxSL_HORIZONTAL,
923 const wxValidator& validator = wxDefaultValidator,
924 char* name = "slider");
925
926 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
927 %pragma(python) addtomethod = "wxPreSlider:val._setOORInfo(val)"
928
929 void ClearSel();
930 void ClearTicks();
931 int GetLineSize();
932 int GetMax();
933 int GetMin();
934 int GetPageSize();
935 int GetSelEnd();
936 int GetSelStart();
937 int GetThumbLength();
938 int GetTickFreq();
939 int GetValue();
940 void SetRange(int minValue, int maxValue);
941 void SetTickFreq(int n, int pos);
942 void SetLineSize(int lineSize);
943 void SetPageSize(int pageSize);
944 void SetSelection(int startPos, int endPos);
945 void SetThumbLength(int len);
946 void SetTick(int tickPos);
947 void SetValue(int value);
948 };
949
950
951 //----------------------------------------------------------------------
952
953 class wxSpinCtrl : public wxSpinButton {
954 public:
955 wxSpinCtrl(wxWindow *parent,
956 wxWindowID id = -1,
957 const char* value = "",
958 const wxPoint& pos = wxDefaultPosition,
959 const wxSize& size = wxDefaultSize,
960 long style = wxSP_ARROW_KEYS,
961 int min = 0, int max = 100, int initial = 0,
962 const char* name = "wxSpinCtrl");
963 %name(wxPreSpinCtrl)wxSpinCtrl();
964
965 bool Create(wxWindow *parent,
966 wxWindowID id = -1,
967 const char* value = "",
968 const wxPoint& pos = wxDefaultPosition,
969 const wxSize& size = wxDefaultSize,
970 long style = wxSP_ARROW_KEYS,
971 int min = 0, int max = 100, int initial = 0,
972 const char* name = "wxSpinCtrl");
973
974 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
975 %pragma(python) addtomethod = "wxPreSpinCtrl:val._setOORInfo(val)"
976
977 int GetMax();
978 int GetMin();
979 int GetValue();
980 void SetRange(int min, int max);
981 void SetValue(int value);
982
983 };
984
985
986 //----------------------------------------------------------------------
987
988 #ifndef __WXMAC__
989 enum { wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, };
990
991 class wxToggleButton : public wxControl {
992 public:
993 wxToggleButton(wxWindow *parent,
994 wxWindowID id,
995 const wxString& label,
996 const wxPoint& pos = wxDefaultPosition,
997 const wxSize& size = wxDefaultSize,
998 long style = 0,
999 const wxValidator& validator = wxDefaultValidator,
1000 const char* name = "toggle");
1001 %name(wxPreToggleButton)wxToggleButton();
1002
1003 bool Create(wxWindow *parent,
1004 wxWindowID id,
1005 const wxString& label,
1006 const wxPoint& pos = wxDefaultPosition,
1007 const wxSize& size = wxDefaultSize,
1008 long style = 0,
1009 const wxValidator& validator = wxDefaultValidator,
1010 const char* name = "toggle");
1011
1012 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
1013 %pragma(python) addtomethod = "wxPreToggleButton:val._setOORInfo(val)"
1014
1015 void SetValue(bool value);
1016 bool GetValue() const ;
1017 void SetLabel(const wxString& label);
1018
1019 };
1020
1021 #endif
1022 //----------------------------------------------------------------------
1023 //----------------------------------------------------------------------
1024 //----------------------------------------------------------------------
1025
1026
1027