X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e6feb95a79834836e88143b15d9f424ebe79621..07f93593809177eda6317a13f9b111759a52a3d2:/include/wx/gtk/radiobox.h diff --git a/include/wx/gtk/radiobox.h b/include/wx/gtk/radiobox.h index 16af2a2668..1c9de3b9de 100644 --- a/include/wx/gtk/radiobox.h +++ b/include/wx/gtk/radiobox.h @@ -1,27 +1,22 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: radiobox.h +// Name: wx/gtk/radiobox.h // Purpose: // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __GTKRADIOBOXH__ #define __GTKRADIOBOXH__ -#ifdef __GNUG__ -#pragma interface -#endif - #include "wx/bitmap.h" //----------------------------------------------------------------------------- // wxRadioBox //----------------------------------------------------------------------------- -class wxRadioBox: public wxControl +class WXDLLIMPEXP_CORE wxRadioBox: public wxControl { public: wxRadioBox() { Init(); } @@ -34,15 +29,30 @@ public: const wxString choices[] = (const wxString *) NULL, int majorDim = 1, long style = wxRA_HORIZONTAL, - const wxValidator& val = wxDefaultValidator, + const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) { Init(); Create( parent, id, title, pos, size, n, choices, majorDim, style, val, name ); } + wxRadioBox(wxWindow *parent, + wxWindowID id, + const wxString& title, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + int majorDim = 1, + long style = wxRA_HORIZONTAL, + const wxValidator& val = wxDefaultValidator, + const wxString& name = wxRadioBoxNameStr) + { + Init(); + + Create( parent, id, title, pos, size, choices, majorDim, style, val, name ); + } - ~wxRadioBox(); + virtual ~wxRadioBox(); bool Create(wxWindow *parent, wxWindowID id, const wxString& title, @@ -52,54 +62,57 @@ public: const wxString choices[] = (const wxString *) NULL, int majorDim = 0, long style = wxRA_HORIZONTAL, - const wxValidator& val = wxDefaultValidator, + const wxValidator& val = wxDefaultValidator, + const wxString& name = wxRadioBoxNameStr); + bool Create(wxWindow *parent, + wxWindowID id, + const wxString& title, + const wxPoint& pos, + const wxSize& size, + const wxArrayString& choices, + int majorDim = 0, + long style = wxRA_HORIZONTAL, + const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); - int FindString( const wxString& s) const; + virtual int FindString(const wxString& s, bool bCase = false) const; void SetSelection( int n ); int GetSelection() const; - + wxString GetString( int n ) const; - - wxString GetLabel( int item ) const; - wxString GetLabel() const { return wxControl::GetLabel(); } - void SetLabel( const wxString& label ); - void SetLabel( int item, const wxString& label ); - - /* doesn't work */ - void SetLabel( int item, wxBitmap *bitmap ); - - bool Show( bool show ); - void Show( int item, bool show ); - - bool Enable( bool enable ); - void Enable( int item, bool enable ); - + void SetString( int n, const wxString& label ); + + 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 ); - - int Number() const; - int GetCount() const { return Number(); } - int GetNumberOfRowsOrCols() const; - void SetNumberOfRowsOrCols( int n ); - + + int GetCount() const; + + // we have to override those to avoid virtual function name hiding + virtual wxString GetLabel() const { return wxControl::GetLabel(); } + virtual void SetLabel( const wxString& label ); + virtual bool Show( bool show = true ); + virtual bool Enable( bool enable = true ); + + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); + // implementation // -------------- - + void SetFocus(); void GtkDisableEvents(); void GtkEnableEvents(); bool IsOwnGtkWindow( GdkWindow *window ); - void ApplyWidgetStyle(); + void DoApplyWidgetStyle(GtkRcStyle *style); #if wxUSE_TOOLTIPS void ApplyToolTip( GtkTooltips *tips, const wxChar *tip ); #endif // wxUSE_TOOLTIPS - wxSize LayoutItems(); - virtual void DoSetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO ); virtual void OnInternalIdle(); - - bool m_alreadySent; + bool m_hasFocus, m_lostFocus; int m_majorDim; @@ -109,6 +122,10 @@ protected: // 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) };