]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/radiobox.h
Added bitmap create
[wxWidgets.git] / include / wx / gtk / radiobox.h
index 099900825442a45fa07c55e7b1eecd01824844f1..eded3b86e93eea564e10e8f25ae876107a2421c5 100644 (file)
@@ -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