X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcf924a345ea8ffbc1cf6b40b5f75c6005e504c0..22e90769f8da73d398bd7da83f185263a292972f:/include/wx/gtk/radiobox.h diff --git a/include/wx/gtk/radiobox.h b/include/wx/gtk/radiobox.h index b28499448e..eded3b86e9 100644 --- a/include/wx/gtk/radiobox.h +++ b/include/wx/gtk/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,26 @@ public: int GetNumberOfRowsOrCols() const; void SetNumberOfRowsOrCols( int n ); - void OnSize( wxSizeEvent &event ); - void SetFocus(); - - // implementation + // implementation + // -------------- + void SetFocus(); + void GtkDisableEvents(); + void GtkEnableEvents(); bool IsOwnGtkWindow( GdkWindow *window ); void ApplyWidgetStyle(); +#if wxUSE_TOOLTIPS + void ApplyToolTip( GtkTooltips *tips, const wxChar *tip ); +#endif // wxUSE_TOOLTIPS 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