X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/953704c1c76cfb9cfb7b91f0e81f98c30d27eb56..22e90769f8da73d398bd7da83f185263a292972f:/include/wx/gtk/radiobox.h diff --git a/include/wx/gtk/radiobox.h b/include/wx/gtk/radiobox.h index 0999008254..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,22 +88,26 @@ public: int GetNumberOfRowsOrCols() const; void SetNumberOfRowsOrCols( int n ); - void OnSize( wxSizeEvent &event ); - void SetFocus(); - - // implementation + // implementation + // -------------- - void DisableEvents(); - void EnableEvents(); + 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