]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/radiobox.h
[ 1494561 ] wxComboCtrl vertical size fix.
[wxWidgets.git] / include / wx / gtk / radiobox.h
index 08dc999f551a91b1e381810afff4ab8f86702b07..ef0830aad9bf14a09767494fecebcd6079f6cf99 100644 (file)
@@ -81,21 +81,21 @@ public:
 
 
     // implement wxItemContainerImmutable methods
-    virtual int GetCount() const;
+    virtual unsigned int GetCount() const;
 
-    virtual wxString GetString(int n) const;
-    virtual void SetString(int n, const wxString& s);
+    virtual wxString GetString(unsigned int n) const;
+    virtual void SetString(unsigned int n, const wxString& s);
 
     virtual void SetSelection(int n);
     virtual int GetSelection() const;
 
 
     // implement wxRadioBoxBase methods
-    virtual bool Show(int n, bool show = true);
-    virtual bool Enable(int n, bool enable = true);
+    virtual bool Show(unsigned int n, bool show = true);
+    virtual bool Enable(unsigned int n, bool enable = true);
 
-    virtual bool IsItemEnabled(int n) const;
-    virtual bool IsItemShown(int n) const;
+    virtual bool IsItemEnabled(unsigned int n) const;
+    virtual bool IsItemShown(unsigned int n) const;
 
 
     // override some base class methods to operate on radiobox itself too
@@ -122,9 +122,13 @@ public:
 
     bool             m_hasFocus,
                      m_lostFocus;
-    wxList           m_boxes;
+    wxList           m_buttons;
 
 protected:
+#if wxUSE_TOOLTIPS
+    virtual void DoSetItemToolTip(unsigned int n, wxToolTip *tooltip);
+#endif
+
     void DoApplyWidgetStyle(GtkRcStyle *style);
 
     virtual bool GTKWidgetNeedsMnemonic() const;