]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __GTKRADIOBOXH__ | |
13 | #define __GTKRADIOBOXH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
21 | #include "wx/list.h" | |
22 | #include "wx/control.h" | |
23 | #include "wx/bitmap.h" | |
24 | ||
25 | //----------------------------------------------------------------------------- | |
26 | // classes | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
29 | class wxRadioBox; | |
30 | ||
31 | //----------------------------------------------------------------------------- | |
32 | // global data | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
35 | extern const char *wxRadioBoxNameStr; | |
36 | ||
37 | //----------------------------------------------------------------------------- | |
38 | // wxRadioBox | |
39 | //----------------------------------------------------------------------------- | |
40 | ||
41 | class wxRadioBox: public wxControl | |
42 | { | |
43 | ||
44 | DECLARE_DYNAMIC_CLASS(wxRadioBox) | |
45 | ||
46 | public: | |
47 | ||
48 | wxRadioBox(void); | |
6de97a3b RR |
49 | inline wxRadioBox( wxWindow *parent, wxWindowID id, const wxString& title, |
50 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
c67daf87 | 51 | int n = 0, const wxString choices[] = (const wxString *) NULL, |
6de97a3b RR |
52 | int majorDim = 0, long style = wxRA_HORIZONTAL, |
53 | const wxValidator& val = wxDefaultValidator, | |
54 | const wxString& name = wxRadioBoxNameStr ) | |
55 | { | |
56 | Create( parent, id, title, pos, size, n, choices, majorDim, style, val, name ); | |
57 | } | |
debe6624 | 58 | bool Create( wxWindow *parent, wxWindowID id, const wxString& title, |
6de97a3b | 59 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
c67daf87 | 60 | int n = 0, const wxString choices[] = (const wxString *) NULL, |
6de97a3b RR |
61 | int majorDim = 0, long style = wxRA_HORIZONTAL, |
62 | const wxValidator& val = wxDefaultValidator, | |
63 | const wxString& name = wxRadioBoxNameStr ); | |
c801d85f | 64 | int FindString( const wxString& s) const; |
debe6624 | 65 | void SetSelection( int n ); |
c801d85f | 66 | int GetSelection(void) const; |
debe6624 | 67 | wxString GetString( int n ) const; |
c801d85f KB |
68 | wxString GetLabel(void) const; |
69 | void SetLabel( const wxString& label ); | |
debe6624 JS |
70 | void SetLabel( int item, const wxString& label ); |
71 | void SetLabel( int item, wxBitmap *bitmap ); | |
72 | wxString GetLabel( int item ) const; | |
73 | bool Show( bool show ); | |
74 | void Enable( bool enable ); | |
75 | void Enable( int item, bool enable ); | |
76 | void Show( int item, bool show ); | |
c801d85f KB |
77 | virtual wxString GetStringSelection(void) const; |
78 | virtual bool SetStringSelection( const wxString& s ); | |
79 | virtual int Number(void) const; | |
80 | int GetNumberOfRowsOrCols(void) const; | |
debe6624 | 81 | void SetNumberOfRowsOrCols( int n ); |
868a2826 | 82 | void SetFont( const wxFont &font ); |
debe6624 | 83 | |
3f659fd6 RR |
84 | void OnSize( wxSizeEvent &event ); |
85 | ||
868a2826 RR |
86 | // implementation |
87 | ||
88 | bool m_alreadySent; | |
89 | ||
c801d85f KB |
90 | private: |
91 | ||
92 | GtkRadioButton *m_radio; | |
93 | ||
3f659fd6 RR |
94 | DECLARE_EVENT_TABLE() |
95 | ||
c801d85f KB |
96 | }; |
97 | ||
98 | #endif // __GTKRADIOBOXH__ |