X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b3badadcfc2500416615de2ae7fb91d66a578483..015fd9ef4833ec3d8b0043a1c7e448c8be4f734a:/wxPython/src/_tglbtn.i diff --git a/wxPython/src/_tglbtn.i b/wxPython/src/_tglbtn.i index 16e72a5de4..3241807ee6 100644 --- a/wxPython/src/_tglbtn.i +++ b/wxPython/src/_tglbtn.i @@ -50,6 +50,8 @@ public: } +MustHaveApp(wxToggleButton); + class wxToggleButton : public wxControl { public: @@ -57,8 +59,8 @@ public: %pythonAppend wxToggleButton() "" wxToggleButton(wxWindow *parent, - wxWindowID id, - const wxString& label, + wxWindowID id=-1, + const wxString& label = wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, @@ -66,10 +68,9 @@ public: const wxString& name = wxPyToggleButtonNameStr); %name(PreToggleButton)wxToggleButton(); -#if defined(__WXMSW__) || defined(__WXGTK__) bool Create(wxWindow *parent, - wxWindowID id, - const wxString& label, + wxWindowID id=-1, + const wxString& label = wxPyEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, @@ -79,7 +80,9 @@ public: void SetValue(bool value); bool GetValue() const ; void SetLabel(const wxString& label); -#endif + + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); }; //---------------------------------------------------------------------------