]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/radiobox.h
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKRADIOBOXH__
12 #define __GTKRADIOBOXH__
14 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
18 #include "wx/bitmap.h"
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 class wxRadioBox
: public wxControl
27 wxRadioBox() { Init(); }
28 wxRadioBox(wxWindow
*parent
,
30 const wxString
& title
,
31 const wxPoint
& pos
= wxDefaultPosition
,
32 const wxSize
& size
= wxDefaultSize
,
34 const wxString choices
[] = (const wxString
*) NULL
,
36 long style
= wxRA_HORIZONTAL
,
37 const wxValidator
& val
= wxDefaultValidator
,
38 const wxString
& name
= wxRadioBoxNameStr
)
42 Create( parent
, id
, title
, pos
, size
, n
, choices
, majorDim
, style
, val
, name
);
44 wxRadioBox(wxWindow
*parent
,
46 const wxString
& title
,
49 const wxArrayString
& choices
,
51 long style
= wxRA_HORIZONTAL
,
52 const wxValidator
& val
= wxDefaultValidator
,
53 const wxString
& name
= wxRadioBoxNameStr
)
57 Create( parent
, id
, title
, pos
, size
, choices
, majorDim
, style
, val
, name
);
60 virtual ~wxRadioBox();
61 bool Create(wxWindow
*parent
,
63 const wxString
& title
,
64 const wxPoint
& pos
= wxDefaultPosition
,
65 const wxSize
& size
= wxDefaultSize
,
67 const wxString choices
[] = (const wxString
*) NULL
,
69 long style
= wxRA_HORIZONTAL
,
70 const wxValidator
& val
= wxDefaultValidator
,
71 const wxString
& name
= wxRadioBoxNameStr
);
72 bool Create(wxWindow
*parent
,
74 const wxString
& title
,
77 const wxArrayString
& choices
,
79 long style
= wxRA_HORIZONTAL
,
80 const wxValidator
& val
= wxDefaultValidator
,
81 const wxString
& name
= wxRadioBoxNameStr
);
83 int FindString( const wxString
& s
) const;
84 void SetSelection( int n
);
85 int GetSelection() const;
87 wxString
GetString( int n
) const;
88 void SetString( int n
, const wxString
& label
);
90 void Show( int item
, bool show
);
91 void Enable( int item
, bool enable
);
93 virtual wxString
GetStringSelection() const;
94 virtual bool SetStringSelection( const wxString
& s
);
98 // for compatibility only, don't use these methods in new code!
99 #if WXWIN_COMPATIBILITY_2_2
100 wxDEPRECATED( int Number() const );
101 wxDEPRECATED( wxString
GetLabel(int n
) const );
102 wxDEPRECATED( void SetLabel( int item
, const wxString
& label
) );
103 #endif // WXWIN_COMPATIBILITY_2_2
105 // we have to override those to avoid virtual function name hiding
106 virtual wxString
GetLabel() const { return wxControl::GetLabel(); }
107 virtual void SetLabel( const wxString
& label
);
108 virtual bool Show( bool show
= true );
109 virtual bool Enable( bool enable
= true );
111 static wxVisualAttributes
112 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
118 void GtkDisableEvents();
119 void GtkEnableEvents();
120 bool IsOwnGtkWindow( GdkWindow
*window
);
121 void DoApplyWidgetStyle(GtkRcStyle
*style
);
123 void ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
);
124 #endif // wxUSE_TOOLTIPS
126 // reposition the radio buttons correctly unless justCalc == true and
127 // return the total size needed to accommodate them
128 wxSize
LayoutItems(bool justCalc
) const;
130 virtual void DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
131 virtual void OnInternalIdle();
139 // implement some base class methods
140 virtual wxSize
DoGetBestSize() const;
142 // common part of all ctors
146 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
149 #endif // __GTKRADIOBOXH__