X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b4efc9b9315fc9387c44dc5e968dc422b12e7920..f6840be66eb772c08f0cbb43de677509d5d132bb:/include/wx/gtk/radiobox.h diff --git a/include/wx/gtk/radiobox.h b/include/wx/gtk/radiobox.h index ff0fc1dbfa..7d155a6783 100644 --- a/include/wx/gtk/radiobox.h +++ b/include/wx/gtk/radiobox.h @@ -87,8 +87,8 @@ public: wxString GetString( int n ) const; void SetString( int n, const wxString& label ); - void Show( int item, bool show ); - void Enable( int item, bool enable ); + virtual bool Show( int item, bool show = true ); + virtual bool Enable( int item, bool enable = true ); virtual wxString GetStringSelection() const; virtual bool SetStringSelection( const wxString& s ); @@ -123,11 +123,6 @@ public: void ApplyToolTip( GtkTooltips *tips, const wxChar *tip ); #endif // wxUSE_TOOLTIPS - // reposition the radio buttons correctly unless justCalc == true and - // return the total size needed to accommodate them - wxSize LayoutItems(bool justCalc) const; - - virtual void DoSetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO ); virtual void OnInternalIdle(); bool m_hasFocus, @@ -136,12 +131,13 @@ public: wxList m_boxes; protected: - // implement some base class methods - virtual wxSize DoGetBestSize() const; - // 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) };