X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcf924a345ea8ffbc1cf6b40b5f75c6005e504c0..31d80f31afd5e78f86d3d9e8e52d7124aac36a32:/include/wx/gtk1/radiobox.h?ds=sidebyside diff --git a/include/wx/gtk1/radiobox.h b/include/wx/gtk1/radiobox.h index b28499448e..06402b021a 100644 --- a/include/wx/gtk1/radiobox.h +++ b/include/wx/gtk1/radiobox.h @@ -42,9 +42,6 @@ extern const char *wxRadioBoxNameStr; class wxRadioBox: public wxControl { - - DECLARE_DYNAMIC_CLASS(wxRadioBox) - public: wxRadioBox(); inline wxRadioBox( wxWindow *parent, wxWindowID id, const wxString& title, @@ -91,20 +88,23 @@ public: int GetNumberOfRowsOrCols() const; void SetNumberOfRowsOrCols( int n ); - void OnSize( wxSizeEvent &event ); void SetFocus(); // implementation + void DisableEvents(); + void EnableEvents(); bool IsOwnGtkWindow( GdkWindow *window ); void ApplyWidgetStyle(); wxSize LayoutItems(); + void DoSetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO ); bool m_alreadySent; int m_majorDim; wxList m_boxes; - DECLARE_EVENT_TABLE() +private: + DECLARE_DYNAMIC_CLASS(wxRadioBox) }; #endif