X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..33366127e8595c2d1e73d5884a27532f54141e3d:/wxPython/src/_radio.i diff --git a/wxPython/src/_radio.i b/wxPython/src/_radio.i index e3d02a71a1..972f260c59 100644 --- a/wxPython/src/_radio.i +++ b/wxPython/src/_radio.i @@ -15,40 +15,42 @@ //--------------------------------------------------------------------------- -%{ - DECLARE_DEF_STRING(RadioBoxNameStr); - DECLARE_DEF_STRING(RadioButtonNameStr); -%} +MAKE_CONST_WXSTRING(RadioBoxNameStr); +MAKE_CONST_WXSTRING(RadioButtonNameStr); //--------------------------------------------------------------------------- %newgroup +MustHaveApp(wxRadioBox); + class wxRadioBox : public wxControl { public: - %addtofunc wxRadioBox "self._setOORInfo(self)" - %addtofunc wxRadioBox() "" - - wxRadioBox(wxWindow* parent, wxWindowID id, - const wxString& label, - const wxPoint& point = wxDefaultPosition, + %pythonPrepend wxRadioBox "if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']" + %pythonPrepend wxRadioBox() "" + %pythonAppend wxRadioBox "self._setOORInfo(self)" + %pythonAppend wxRadioBox() "" + + wxRadioBox(wxWindow* parent, wxWindowID id=-1, + const wxString& label = wxPyEmptyString, + const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - int choices = 0, wxString* choices_array = NULL, - int majorDimension = 0, - long style = wxRA_HORIZONTAL, - const wxValidator& validator = wxDefaultValidator, - const wxString& name = wxPyRadioBoxNameStr); - %name(PreRadioBox)wxRadioBox(); - - bool Create(wxWindow* parent, wxWindowID id, - const wxString& label, - const wxPoint& point = wxDefaultPosition, - const wxSize& size = wxDefaultSize, - int choices = 0, wxString* choices_array = NULL, + const wxArrayString& choices = wxPyEmptyStringArray, int majorDimension = 0, long style = wxRA_HORIZONTAL, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxPyRadioBoxNameStr); + %RenameCtor(PreRadioBox, wxRadioBox()); + + bool Create(wxWindow* parent, wxWindowID id=-1, + const wxString& label = wxPyEmptyString, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, + const wxArrayString& choices = wxPyEmptyStringArray, + int majorDimension = 0, + long style = wxRA_HORIZONTAL, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxPyRadioBoxNameStr); virtual void SetSelection(int n); virtual int GetSelection() const; @@ -57,7 +59,7 @@ public: virtual bool SetStringSelection(const wxString& s); // string access - virtual int GetCount() const; + virtual size_t GetCount() const; virtual int FindString(const wxString& s) const; virtual wxString GetString(int n) const; @@ -66,47 +68,47 @@ public: %pythoncode { SetItemLabel = SetString }; // change the individual radio button state - %name(EnableItem) virtual void Enable(int n, bool enable = TRUE); - %name(ShowItem) virtual void Show(int n, bool show = TRUE); + %Rename(EnableItem, virtual void, Enable(unsigned int n, bool enable = true)); + %Rename(ShowItem, virtual void, Show(unsigned int n, bool show = true)); + virtual bool IsItemEnabled(unsigned int n) const; + virtual bool IsItemShown(unsigned int n) const; -#ifndef __WXGTK__ // layout parameters - virtual int GetColumnCount() const; - virtual int GetRowCount() const; + virtual unsigned int GetColumnCount() const; + virtual unsigned int GetRowCount() const; // return the item above/below/to the left/right of the given one int GetNextItem(int item, wxDirection dir, long style) const; -#else - %extend { - int GetColumnCount() const { return -1; } - int GetRowCount() const { return -1; } - int GetNextItem(int item, wxDirection dir, long style) const { return -1; } - } -#endif + +// bool IsValid(int n) const; ** not public + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); }; //--------------------------------------------------------------------------- %newgroup +MustHaveApp(wxRadioButton); + class wxRadioButton : public wxControl { public: - %addtofunc wxRadioButton "self._setOORInfo(self)" - %addtofunc wxRadioButton() "" + %pythonAppend wxRadioButton "self._setOORInfo(self)" + %pythonAppend wxRadioButton() "" - wxRadioButton(wxWindow* parent, wxWindowID id, - const wxString& label, + wxRadioButton(wxWindow* parent, wxWindowID id=-1, + const wxString& label = wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxPyRadioButtonNameStr); - %name(PreRadioButton)wxRadioButton(); + %RenameCtor(PreRadioButton, wxRadioButton()); - bool Create(wxWindow* parent, wxWindowID id, - const wxString& label, + bool Create(wxWindow* parent, wxWindowID id=-1, + const wxString& label = wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, @@ -115,6 +117,9 @@ public: bool GetValue(); void SetValue(bool value); + + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); }; //---------------------------------------------------------------------------