]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/radiobox.h
wxRegConfig now works correctly again
[wxWidgets.git] / include / wx / gtk / radiobox.h
index 04d5ea8879f9aff33e0fe649c2cce865e761e4dc..3ba68d40d989822e4429c7dc7b378e7e4c03f20c 100644 (file)
@@ -65,7 +65,6 @@ class wxRadioBox: public wxControl
     void SetSelection( int n );
     int GetSelection(void) const;
     wxString GetString( int n ) const;
-    wxString GetLabel(void) const;
     void SetLabel( const wxString& label );
     void SetLabel( int item, const wxString& label );
     void SetLabel( int item, wxBitmap *bitmap );
@@ -79,14 +78,20 @@ class wxRadioBox: public wxControl
     virtual int Number(void) const;
     int GetNumberOfRowsOrCols(void) const;
     void SetNumberOfRowsOrCols( int n );
-
+    
+    void SetFont( const wxFont &font );
+    void OnSize( wxSizeEvent &event );
+    
+  // implementation    
+    
+    bool            m_alreadySent;
+    
   private:
   
     GtkRadioButton *m_radio;
     
-  public:
-  
-    bool            m_alreadySent;
+  DECLARE_EVENT_TABLE()    
+    
 };
 
 #endif // __GTKRADIOBOXH__