1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Control (widget) classes for wxPython
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
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>
26 #include <wx/checklst.h>
31 #include <wx/checklst.h>
36 //----------------------------------------------------------------------
39 %include my_typemaps.i
41 // Import some definitions of other classes, etc.
48 %pragma(python) code = "import wx"
50 //----------------------------------------------------------------------
53 wxValidator wxDefaultValidator;
56 //----------------------------------------------------------------------
58 class wxControl : public wxWindow {
60 wxControl(wxWindow *parent,
62 const wxPoint& pos=wxDefaultPosition,
63 const wxSize& size=wxDefaultSize,
65 const wxValidator& validator=wxDefaultValidator,
66 const char* name="control");
67 %name(wxPreControl)wxControl();
69 bool Create(wxWindow *parent,
71 const wxPoint& pos=wxDefaultPosition,
72 const wxSize& size=wxDefaultSize,
74 const wxValidator& validator=wxDefaultValidator,
75 const char* name="control");
77 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
78 %pragma(python) addtomethod = "wxPreControl:val._setOORInfo(val)"
80 void Command(wxCommandEvent& event);
82 void SetLabel(const wxString& label);
86 //----------------------------------------------------------------------
89 class wxControlWithItems : public wxControl {
92 // void Clear(); ambiguous, redefine below...
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);
104 wxString GetStringSelection() const;
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);
111 void Append(const wxString& item, PyObject* clientData=NULL) {
113 wxPyClientData* data = new wxPyClientData(clientData);
114 self->Append(item, data);
119 PyObject* GetClientData(int n) {
120 wxPyClientData* data = (wxPyClientData*)self->GetClientObject(n);
122 Py_INCREF(data->m_obj);
130 void SetClientData(int n, PyObject* clientData) {
131 wxPyClientData* data = new wxPyClientData(clientData);
132 self->SetClientObject(n, data);
137 //----------------------------------------------------------------------
139 class wxButton : public wxControl {
141 wxButton(wxWindow* parent, wxWindowID id, const wxString& label,
142 const wxPoint& pos = wxDefaultPosition,
143 const wxSize& size = wxDefaultSize,
145 const wxValidator& validator = wxDefaultValidator,
146 char* name = "button");
147 %name(wxPreButton)wxButton();
149 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
150 const wxPoint& pos = wxDefaultPosition,
151 const wxSize& size = wxDefaultSize,
153 const wxValidator& validator = wxDefaultValidator,
154 char* name = "button");
156 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
157 %pragma(python) addtomethod = "wxPreButton:val._setOORInfo(val)"
160 void SetBackgroundColour(const wxColour& colour);
161 void SetForegroundColour(const wxColour& colour);
163 void SetImageLabel(const wxBitmap& bitmap);
164 void SetImageMargins(wxCoord x, wxCoord y);
166 static wxSize GetDefaultSize();
169 //----------------------------------------------------------------------
171 class wxBitmapButton : public wxButton {
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();
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");
188 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
189 %pragma(python) addtomethod = "wxPreBitmapButton:val._setOORInfo(val)"
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);
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; }
205 //----------------------------------------------------------------------
207 class wxCheckBox : public wxControl {
209 wxCheckBox(wxWindow* parent, wxWindowID id, const wxString& label,
210 const wxPoint& pos = wxDefaultPosition,
211 const wxSize& size = wxDefaultSize,
213 const wxValidator& val = wxDefaultValidator,
214 char* name = "checkBox");
215 %name(wxPreCheckBox)wxCheckBox();
217 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
218 const wxPoint& pos = wxDefaultPosition,
219 const wxSize& size = wxDefaultSize,
221 const wxValidator& val = wxDefaultValidator,
222 char* name = "checkBox");
224 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
225 %pragma(python) addtomethod = "wxPreCheckBox:val._setOORInfo(val)"
228 void SetValue(const bool state);
231 //----------------------------------------------------------------------
233 class wxChoice : public wxControlWithItems {
235 wxChoice(wxWindow *parent, wxWindowID id,
236 const wxPoint& pos = wxDefaultPosition,
237 const wxSize& size = wxDefaultSize,
238 int LCOUNT=0, wxString* choices=NULL,
240 const wxValidator& validator = wxDefaultValidator,
241 char* name = "choice");
242 %name(wxPreChoice)wxChoice();
244 bool Create(wxWindow *parent, wxWindowID id,
245 const wxPoint& pos = wxDefaultPosition,
246 const wxSize& size = wxDefaultSize,
247 int LCOUNT=0, wxString* choices=NULL,
249 const wxValidator& validator = wxDefaultValidator,
250 char* name = "choice");
252 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
253 %pragma(python) addtomethod = "wxPreChoice:val._setOORInfo(val)"
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);
263 %pragma(python) addtoclass = "
264 Select = SetSelection
268 //----------------------------------------------------------------------
270 class wxComboBox : public wxChoice {
272 wxComboBox(wxWindow* parent, wxWindowID id, char* value = "",
273 const wxPoint& pos = wxDefaultPosition,
274 const wxSize& size = wxDefaultSize,
275 int LCOUNT=0, wxString* choices=NULL,
277 const wxValidator& validator = wxDefaultValidator,
278 char* name = "comboBox");
279 %name(wxPreComboBox)wxComboBox();
281 bool Create(wxWindow* parent, wxWindowID id, char* value = "",
282 const wxPoint& pos = wxDefaultPosition,
283 const wxSize& size = wxDefaultSize,
284 int LCOUNT=0, wxString* choices=NULL,
286 const wxValidator& validator = wxDefaultValidator,
287 char* name = "comboBox");
289 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
290 %pragma(python) addtomethod = "wxPreComboBox:val._setOORInfo(val)"
294 long GetInsertionPoint();
295 long GetLastPosition();
298 void Replace(long from, long to, const wxString& text);
299 void Remove(long from, long to);
300 void SetInsertionPoint(long pos);
301 void SetInsertionPointEnd();
302 void SetSelection(int n);
303 %name(SetMark)void SetSelection(long from, long to);
304 void SetValue(const wxString& text);
305 void SetEditable(bool editable);
308 //----------------------------------------------------------------------
310 class wxGauge : public wxControl {
312 wxGauge(wxWindow* parent, wxWindowID id, int range,
313 const wxPoint& pos = wxDefaultPosition,
314 const wxSize& size = wxDefaultSize,
315 long style = wxGA_HORIZONTAL,
316 const wxValidator& validator = wxDefaultValidator,
317 char* name = "gauge");
318 %name(wxPreGauge)wxGauge();
320 bool Create(wxWindow* parent, wxWindowID id, int range,
321 const wxPoint& pos = wxDefaultPosition,
322 const wxSize& size = wxDefaultSize,
323 long style = wxGA_HORIZONTAL,
324 const wxValidator& validator = wxDefaultValidator,
325 char* name = "gauge");
327 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
328 %pragma(python) addtomethod = "wxPreGauge:val._setOORInfo(val)"
332 int GetShadowWidth();
334 void SetBezelFace(int width);
335 void SetRange(int range);
336 void SetShadowWidth(int width);
337 void SetValue(int pos);
340 //----------------------------------------------------------------------
342 class wxStaticBox : public wxControl {
344 wxStaticBox(wxWindow* parent, wxWindowID id, const wxString& label,
345 const wxPoint& pos = wxDefaultPosition,
346 const wxSize& size = wxDefaultSize,
348 char* name = "staticBox");
349 %name(wxPreStaticBox)wxStaticBox();
351 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
352 const wxPoint& pos = wxDefaultPosition,
353 const wxSize& size = wxDefaultSize,
355 char* name = "staticBox");
357 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
358 %pragma(python) addtomethod = "wxPreStaticBox:val._setOORInfo(val)"
362 //----------------------------------------------------------------------
365 class wxStaticLine : public wxControl {
367 wxStaticLine( wxWindow *parent, wxWindowID id,
368 const wxPoint &pos = wxDefaultPosition,
369 const wxSize &size = wxDefaultSize,
370 long style = wxLI_HORIZONTAL,
371 const char* name = "staticLine" );
372 %name(wxPreStaticLine)wxStaticLine();
374 bool Create( wxWindow *parent, wxWindowID id,
375 const wxPoint &pos = wxDefaultPosition,
376 const wxSize &size = wxDefaultSize,
377 long style = wxLI_HORIZONTAL,
378 const char* name = "staticLine" );
380 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
381 %pragma(python) addtomethod = "wxPreStaticLine:val._setOORInfo(val)"
385 //----------------------------------------------------------------------
387 class wxStaticText : public wxControl {
389 wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label,
390 const wxPoint& pos = wxDefaultPosition,
391 const wxSize& size = wxDefaultSize,
393 char* name = "staticText");
394 %name(wxPreStaticText)wxStaticText();
396 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
397 const wxPoint& pos = wxDefaultPosition,
398 const wxSize& size = wxDefaultSize,
400 char* name = "staticText");
402 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
403 %pragma(python) addtomethod = "wxPreStaticText:val._setOORInfo(val)"
406 void SetLabel(const wxString& label);
409 //----------------------------------------------------------------------
411 class wxListBox : public wxControlWithItems {
413 wxListBox(wxWindow* parent, wxWindowID id,
414 const wxPoint& pos = wxDefaultPosition,
415 const wxSize& size = wxDefaultSize,
416 int LCOUNT, wxString* choices = NULL,
418 const wxValidator& validator = wxDefaultValidator,
419 char* name = "listBox");
420 %name(wxPreListBox)wxListBox();
422 bool Create(wxWindow* parent, wxWindowID id,
423 const wxPoint& pos = wxDefaultPosition,
424 const wxSize& size = wxDefaultSize,
425 int LCOUNT, wxString* choices = NULL,
427 const wxValidator& validator = wxDefaultValidator,
428 char* name = "listBox");
430 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
431 %pragma(python) addtomethod = "wxPreListBox:val._setOORInfo(val)"
434 void Deselect(int n);
436 // int GetSelections(int **selections);
438 PyObject* GetSelections() {
440 self->GetSelections(lst);
441 PyObject *tup = PyTuple_New(lst.GetCount());
442 for(size_t i=0; i<lst.GetCount(); i++) {
443 PyTuple_SetItem(tup, i, PyInt_FromLong(lst[i]));
450 void InsertItems(int LCOUNT, wxString* choices, int pos);
452 bool IsSelected(const int n);
453 bool Selected(const int n);
454 void Set(int LCOUNT, wxString* choices);
455 void SetFirstItem(int n);
456 %name(SetFirstItemStr)void SetFirstItem(const wxString& string);
457 void SetSelection(int n, bool select = TRUE);
458 void SetString(int n, const wxString& string);
459 void SetStringSelection(const wxString& string, bool select = TRUE);
463 //----------------------------------------------------------------------
465 class wxCheckListBox : public wxListBox {
467 wxCheckListBox(wxWindow *parent, wxWindowID id,
468 const wxPoint& pos = wxDefaultPosition,
469 const wxSize& size = wxDefaultSize,
471 wxString* choices = NULL,
473 const wxValidator& validator = wxDefaultValidator,
474 char* name = "listBox");
475 %name(wxPreCheckListBox)wxCheckListBox();
477 bool Create(wxWindow *parent, wxWindowID id,
478 const wxPoint& pos = wxDefaultPosition,
479 const wxSize& size = wxDefaultSize,
481 wxString* choices = NULL,
483 const wxValidator& validator = wxDefaultValidator,
484 char* name = "listBox");
486 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
487 %pragma(python) addtomethod = "wxPreCheckListBox:val._setOORInfo(val)"
489 bool IsChecked(int uiIndex);
490 void Check(int uiIndex, int bCheck = TRUE);
491 void InsertItems(int LCOUNT, wxString* choices, int pos);
498 //----------------------------------------------------------------------
505 wxTextAttr(const wxColour& colText = wxNullColour,
506 const wxColour& colBack = wxNullColour,
507 const wxFont& font = wxNullFont);
511 void SetTextColour(const wxColour& colText);
512 void SetBackgroundColour(const wxColour& colBack);
513 void SetFont(const wxFont& font);
516 bool HasTextColour() const;
517 bool HasBackgroundColour() const;
518 bool HasFont() const;
520 const wxColour& GetTextColour() const;
521 const wxColour& GetBackgroundColour() const;
522 const wxFont& GetFont() const;
524 // returns false if we have any attributes set, true otherwise
530 class wxTextCtrl : public wxControl {
532 wxTextCtrl(wxWindow* parent, wxWindowID id, char* value = "",
533 const wxPoint& pos = wxDefaultPosition,
534 const wxSize& size = wxDefaultSize,
536 const wxValidator& validator = wxDefaultValidator,
537 char* name = "text");
538 %name(wxPreTextCtrl)wxTextCtrl();
540 bool Create(wxWindow* parent, wxWindowID id, char* value = "",
541 const wxPoint& pos = wxDefaultPosition,
542 const wxSize& size = wxDefaultSize,
544 const wxValidator& validator = wxDefaultValidator,
545 char* name = "text");
547 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
548 %pragma(python) addtomethod = "wxPreTextCtrl:val._setOORInfo(val)"
551 wxString GetValue() const;
552 void SetValue(const wxString& value);
554 int GetLineLength(long lineNo) const;
555 wxString GetLineText(long lineNo) const;
556 int GetNumberOfLines() const;
558 bool IsModified() const;
559 bool IsEditable() const;
561 // If the return values from and to are the same, there is no selection.
562 void GetSelection(long* OUTPUT, long* OUTPUT) const;
565 void Replace(long from, long to, const wxString& value);
566 void Remove(long from, long to);
568 // load/save the controls contents from/to the file
569 bool LoadFile(const wxString& file);
570 bool SaveFile(const wxString& file = wxEmptyString);
572 // clears the dirty flag
575 // set the max number of characters which may be entered in a single line
577 void SetMaxLength(unsigned long len);
579 // writing text inserts it at the current position, appending always
580 // inserts it at the end
581 void WriteText(const wxString& text);
582 void AppendText(const wxString& text);
584 // text control under some platforms supports the text styles: these
585 // methods allow to apply the given text style to the given selection or to
586 // set/get the style which will be used for all appended text
587 bool SetStyle(long start, long end, const wxTextAttr& style);
588 bool SetDefaultStyle(const wxTextAttr& style);
589 const wxTextAttr& GetDefaultStyle() const;
591 // translate between the position (which is just an index in the text ctrl
592 // considering all its contents as a single strings) and (x, y) coordinates
593 // which represent column and line.
594 long XYToPosition(long x, long y) const;
595 bool PositionToXY(long pos, long *OUTPUT, long *OUTPUT) const;
597 void ShowPosition(long pos);
599 // Clipboard operations
604 bool CanCopy() const;
606 bool CanPaste() const;
612 bool CanUndo() const;
613 bool CanRedo() const;
616 void SetInsertionPoint(long pos);
617 void SetInsertionPointEnd();
618 long GetInsertionPoint() const;
619 long GetLastPosition() const;
621 void SetSelection(long from, long to);
623 void SetEditable(bool editable);
626 void write(const wxString& text) {
627 self->AppendText(text);
632 //----------------------------------------------------------------------
634 class wxScrollBar : public wxControl {
636 wxScrollBar(wxWindow* parent, wxWindowID id = -1,
637 const wxPoint& pos = wxDefaultPosition,
638 const wxSize& size = wxDefaultSize,
639 long style = wxSB_HORIZONTAL,
640 const wxValidator& validator = wxDefaultValidator,
641 char* name = "scrollBar");
642 %name(wxPreScrollBar)wxScrollBar();
644 bool Create(wxWindow* parent, wxWindowID id = -1,
645 const wxPoint& pos = wxDefaultPosition,
646 const wxSize& size = wxDefaultSize,
647 long style = wxSB_HORIZONTAL,
648 const wxValidator& validator = wxDefaultValidator,
649 char* name = "scrollBar");
651 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
652 %pragma(python) addtomethod = "wxPreScrollBar:val._setOORInfo(val)"
656 int GetThumbPosition();
658 %name(GetThumbLength) int GetThumbSize(); // to match the docs
659 void SetThumbPosition(int viewStart);
660 void SetScrollbar(int position, int thumbSize,
661 int range, int pageSize,
662 bool refresh = TRUE);
665 //----------------------------------------------------------------------
667 class wxSpinButton : public wxControl {
669 wxSpinButton(wxWindow* parent, wxWindowID id = -1,
670 const wxPoint& pos = wxDefaultPosition,
671 const wxSize& size = wxDefaultSize,
672 long style = wxSP_HORIZONTAL,
673 char* name = "spinButton");
674 %name(wxPreSpinButton)wxSpinButton();
676 bool Create(wxWindow* parent, wxWindowID id = -1,
677 const wxPoint& pos = wxDefaultPosition,
678 const wxSize& size = wxDefaultSize,
679 long style = wxSP_HORIZONTAL,
680 char* name = "spinButton");
682 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
683 %pragma(python) addtomethod = "wxPreSpinButton:val._setOORInfo(val)"
688 void SetRange(int min, int max);
689 void SetValue(int value);
692 //----------------------------------------------------------------------
694 class wxStaticBitmap : public wxControl {
696 wxStaticBitmap(wxWindow* parent, wxWindowID id,
697 const wxBitmap& bitmap,
698 const wxPoint& pos = wxDefaultPosition,
699 const wxSize& size = wxDefaultSize,
701 char* name = "staticBitmap");
702 %name(wxPreStaticBitmap)wxStaticBitmap();
704 bool Create(wxWindow* parent, wxWindowID id,
705 const wxBitmap& bitmap,
706 const wxPoint& pos = wxDefaultPosition,
707 const wxSize& size = wxDefaultSize,
709 char* name = "staticBitmap");
711 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
712 %pragma(python) addtomethod = "wxPreStaticBitmap:val._setOORInfo(val)"
714 const wxBitmap& GetBitmap();
715 void SetBitmap(const wxBitmap& bitmap);
716 void SetIcon(const wxIcon& icon);
719 //----------------------------------------------------------------------
721 class wxRadioBox : public wxControl {
723 wxRadioBox(wxWindow* parent, wxWindowID id,
724 const wxString& label,
725 const wxPoint& point = wxDefaultPosition,
726 const wxSize& size = wxDefaultSize,
727 int LCOUNT = 0, wxString* choices = NULL,
728 int majorDimension = 0,
729 long style = wxRA_HORIZONTAL,
730 const wxValidator& validator = wxDefaultValidator,
731 char* name = "radioBox");
732 %name(wxPreRadioBox)wxRadioBox();
734 bool Create(wxWindow* parent, wxWindowID id,
735 const wxString& label,
736 const wxPoint& point = wxDefaultPosition,
737 const wxSize& size = wxDefaultSize,
738 int LCOUNT = 0, wxString* choices = NULL,
739 int majorDimension = 0,
740 long style = wxRA_HORIZONTAL,
741 const wxValidator& validator = wxDefaultValidator,
742 char* name = "radioBox");
744 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
745 %pragma(python) addtomethod = "wxPreRadioBox:val._setOORInfo(val)"
747 void Enable(bool enable);
748 %name(EnableItem)void Enable(int n, bool enable);
749 int FindString(const wxString& string);
751 wxString GetString(int n);
754 %name(GetItemLabel)wxString GetLabel( int item );
755 %name(SetItemLabel)void SetLabel( int item, const wxString& label );
757 void SetString(int n, const wxString& label);
758 %pragma(python) addtoclass = "
759 GetItemLabel = GetString
760 SetItemLabel = SetString
762 int GetColumnCount();
767 wxString GetStringSelection();
769 %pragma(python) addtoclass = "Number = GetCount"
771 void SetSelection(int n);
772 void SetStringSelection(const wxString& string);
773 void Show(bool show);
774 %name(ShowItem)void Show(int item, bool show);
777 //----------------------------------------------------------------------
779 class wxRadioButton : public wxControl {
781 wxRadioButton(wxWindow* parent, wxWindowID id,
782 const wxString& label,
783 const wxPoint& pos = wxDefaultPosition,
784 const wxSize& size = wxDefaultSize,
786 const wxValidator& validator = wxDefaultValidator,
787 char* name = "radioButton");
788 %name(wxPreRadioButton)wxRadioButton();
790 bool Create(wxWindow* parent, wxWindowID id,
791 const wxString& label,
792 const wxPoint& pos = wxDefaultPosition,
793 const wxSize& size = wxDefaultSize,
795 const wxValidator& validator = wxDefaultValidator,
796 char* name = "radioButton");
798 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
799 %pragma(python) addtomethod = "wxPreRadioButton:val._setOORInfo(val)"
802 void SetValue(bool value);
805 //----------------------------------------------------------------------
807 class wxSlider : public wxControl {
809 wxSlider(wxWindow* parent, wxWindowID id,
810 int value, int minValue, int maxValue,
811 const wxPoint& point = wxDefaultPosition,
812 const wxSize& size = wxDefaultSize,
813 long style = wxSL_HORIZONTAL,
814 const wxValidator& validator = wxDefaultValidator,
815 char* name = "slider");
816 %name(wxPreSlider)wxSlider();
818 bool Create(wxWindow* parent, wxWindowID id,
819 int value, int minValue, int maxValue,
820 const wxPoint& point = wxDefaultPosition,
821 const wxSize& size = wxDefaultSize,
822 long style = wxSL_HORIZONTAL,
823 const wxValidator& validator = wxDefaultValidator,
824 char* name = "slider");
826 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
827 %pragma(python) addtomethod = "wxPreSlider:val._setOORInfo(val)"
837 int GetThumbLength();
840 void SetRange(int minValue, int maxValue);
841 void SetTickFreq(int n, int pos);
842 void SetLineSize(int lineSize);
843 void SetPageSize(int pageSize);
844 void SetSelection(int startPos, int endPos);
845 void SetThumbLength(int len);
846 void SetTick(int tickPos);
847 void SetValue(int value);
851 //----------------------------------------------------------------------
853 class wxSpinCtrl : public wxSpinButton {
855 wxSpinCtrl(wxWindow *parent,
857 const char* value = "",
858 const wxPoint& pos = wxDefaultPosition,
859 const wxSize& size = wxDefaultSize,
860 long style = wxSP_ARROW_KEYS,
861 int min = 0, int max = 100, int initial = 0,
862 const char* name = "wxSpinCtrl");
863 %name(wxPreSpinCtrl)wxSpinCtrl();
865 bool Create(wxWindow *parent,
867 const char* value = "",
868 const wxPoint& pos = wxDefaultPosition,
869 const wxSize& size = wxDefaultSize,
870 long style = wxSP_ARROW_KEYS,
871 int min = 0, int max = 100, int initial = 0,
872 const char* name = "wxSpinCtrl");
874 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
875 %pragma(python) addtomethod = "wxPreSpinCtrl:val._setOORInfo(val)"
880 void SetRange(int min, int max);
881 void SetValue(int value);
886 //----------------------------------------------------------------------
889 enum { wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, };
891 class wxToggleButton : public wxControl {
893 wxToggleButton(wxWindow *parent,
895 const wxString& label,
896 const wxPoint& pos = wxDefaultPosition,
897 const wxSize& size = wxDefaultSize,
899 const wxValidator& validator = wxDefaultValidator,
900 const char* name = "toggle");
901 %name(wxPreToggleButton)wxToggleButton();
903 bool Create(wxWindow *parent,
905 const wxString& label,
906 const wxPoint& pos = wxDefaultPosition,
907 const wxSize& size = wxDefaultSize,
909 const wxValidator& validator = wxDefaultValidator,
910 const char* name = "toggle");
912 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
913 %pragma(python) addtomethod = "wxPreToggleButton:val._setOORInfo(val)"
915 void SetValue(bool value);
916 bool GetValue() const ;
917 void SetLabel(const wxString& label);
922 //----------------------------------------------------------------------
923 //----------------------------------------------------------------------
924 //----------------------------------------------------------------------