]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/radiobox.h
Add DoGetBestSize
[wxWidgets.git] / include / wx / gtk / radiobox.h
index fedb790c06aceefa8bb02b67921945f057a4952b..d2d9104b7448e943f452f97772c90681592dfbeb 100644 (file)
@@ -81,7 +81,7 @@ public:
 
 
     // implement wxItemContainerImmutable methods
-    virtual int GetCount() const;
+    virtual size_t GetCount() const;
 
     virtual wxString GetString(int n) const;
     virtual void SetString(int n, const wxString& s);
@@ -127,16 +127,14 @@ public:
 protected:
     void DoApplyWidgetStyle(GtkRcStyle *style);
 
+    virtual bool GTKWidgetNeedsMnemonic() const;
+    virtual void GTKWidgetDoSetMnemonic(GtkWidget* w);
+
     // common part of all ctors
     void Init();
 
-    // check that the index is valid
-    // FIXME: remove once GTK will derive from wxRadioBoxBase
-    inline bool IsValid(int n) const { return n >= 0 && n < GetCount(); }
-
 private:
     DECLARE_DYNAMIC_CLASS(wxRadioBox)
 };
 
 #endif // _WX_GTK_RADIOBOX_H_
-