]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKRADIOBOXH__
12 #define __GTKRADIOBOXH__
22 #include "wx/object.h"
24 #include "wx/control.h"
25 #include "wx/bitmap.h"
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
37 extern const char *wxRadioBoxNameStr
;
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
43 class wxRadioBox
: public wxControl
46 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
50 inline wxRadioBox( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
51 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
52 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
53 int majorDim
= 1, long style
= wxRA_HORIZONTAL
,
54 const wxValidator
& val
= wxDefaultValidator
,
55 const wxString
& name
= wxRadioBoxNameStr
)
57 Create( parent
, id
, title
, pos
, size
, n
, choices
, majorDim
, style
, val
, name
);
60 bool Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
61 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
62 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
63 int majorDim
= 0, long style
= wxRA_HORIZONTAL
,
64 const wxValidator
& val
= wxDefaultValidator
,
65 const wxString
& name
= wxRadioBoxNameStr
);
67 int FindString( const wxString
& s
) const;
68 void SetSelection( int n
);
69 int GetSelection() const;
71 wxString
GetString( int n
) const;
73 wxString
GetLabel( int item
) const;
74 wxString
GetLabel() const { return wxControl::GetLabel(); }
75 void SetLabel( const wxString
& label
);
76 void SetLabel( int item
, const wxString
& label
);
79 void SetLabel( int item
, wxBitmap
*bitmap
);
81 bool Show( bool show
);
82 void Show( int item
, bool show
);
84 bool Enable( bool enable
);
85 void Enable( int item
, bool enable
);
87 virtual wxString
GetStringSelection() const;
88 virtual bool SetStringSelection( const wxString
& s
);
90 virtual int Number() const;
91 int GetNumberOfRowsOrCols() const;
92 void SetNumberOfRowsOrCols( int n
);
94 void OnSize( wxSizeEvent
&event
);
101 bool IsOwnGtkWindow( GdkWindow
*window
);
102 void ApplyWidgetStyle();
103 wxSize
LayoutItems();
109 DECLARE_EVENT_TABLE()
114 #endif // __GTKRADIOBOXH__