]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/radiobox.h
DnD
[wxWidgets.git] / include / wx / gtk / radiobox.h
index 3ba68d40d989822e4429c7dc7b378e7e4c03f20c..e30d8f00a1af7daa3ab8e937900db92e6427797d 100644 (file)
@@ -55,6 +55,7 @@ class wxRadioBox: public wxControl
     {
       Create( parent, id, title, pos, size, n, choices, majorDim, style, val, name );
     }
+    ~wxRadioBox(void);
     bool Create( wxWindow *parent, wxWindowID id, const wxString& title,
              const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
              int n = 0, const wxString choices[] = (const wxString *) NULL,
@@ -80,18 +81,17 @@ class wxRadioBox: public wxControl
     void SetNumberOfRowsOrCols( int n );
     
     void SetFont( const wxFont &font );
+    void SetBackgroundColour( const wxColour &colour );
     void OnSize( wxSizeEvent &event );
     
   // implementation    
     
-    bool            m_alreadySent;
+    bool IsOwnGtkWindow( GdkWindow *window );
     
-  private:
-  
-    GtkRadioButton *m_radio;
+    bool             m_alreadySent;
+    wxList           m_boxes;
     
   DECLARE_EVENT_TABLE()    
-    
 };
 
 #endif // __GTKRADIOBOXH__