]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
58614078 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
f03fc89f | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __GTKRADIOBOXH__ | |
12 | #define __GTKRADIOBOXH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
dcf924a3 RR |
19 | |
20 | #if wxUSE_RADIOBOX | |
21 | ||
c801d85f KB |
22 | #include "wx/object.h" |
23 | #include "wx/list.h" | |
24 | #include "wx/control.h" | |
25 | #include "wx/bitmap.h" | |
26 | ||
27 | //----------------------------------------------------------------------------- | |
28 | // classes | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | class wxRadioBox; | |
32 | ||
33 | //----------------------------------------------------------------------------- | |
34 | // global data | |
35 | //----------------------------------------------------------------------------- | |
36 | ||
37 | extern const char *wxRadioBoxNameStr; | |
38 | ||
39 | //----------------------------------------------------------------------------- | |
40 | // wxRadioBox | |
41 | //----------------------------------------------------------------------------- | |
42 | ||
43 | class wxRadioBox: public wxControl | |
44 | { | |
0de9b5b2 RR |
45 | public: |
46 | wxRadioBox(); | |
6de97a3b RR |
47 | inline wxRadioBox( wxWindow *parent, wxWindowID id, const wxString& title, |
48 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
c67daf87 | 49 | int n = 0, const wxString choices[] = (const wxString *) NULL, |
fdd3ed7a | 50 | int majorDim = 1, long style = wxRA_HORIZONTAL, |
6de97a3b | 51 | const wxValidator& val = wxDefaultValidator, |
f03fc89f | 52 | const wxString& name = wxRadioBoxNameStr ) |
6de97a3b RR |
53 | { |
54 | Create( parent, id, title, pos, size, n, choices, majorDim, style, val, name ); | |
55 | } | |
d6d1892b | 56 | ~wxRadioBox(void); |
debe6624 | 57 | bool Create( wxWindow *parent, wxWindowID id, const wxString& title, |
6de97a3b | 58 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
c67daf87 | 59 | int n = 0, const wxString choices[] = (const wxString *) NULL, |
6de97a3b RR |
60 | int majorDim = 0, long style = wxRA_HORIZONTAL, |
61 | const wxValidator& val = wxDefaultValidator, | |
f03fc89f | 62 | const wxString& name = wxRadioBoxNameStr ); |
0de9b5b2 | 63 | |
c801d85f | 64 | int FindString( const wxString& s) const; |
debe6624 | 65 | void SetSelection( int n ); |
0de9b5b2 RR |
66 | int GetSelection() const; |
67 | ||
debe6624 | 68 | wxString GetString( int n ) const; |
0de9b5b2 RR |
69 | |
70 | wxString GetLabel( int item ) const; | |
71 | wxString GetLabel() const { return wxControl::GetLabel(); } | |
c801d85f | 72 | void SetLabel( const wxString& label ); |
debe6624 | 73 | void SetLabel( int item, const wxString& label ); |
0de9b5b2 RR |
74 | |
75 | /* doesn't work */ | |
debe6624 | 76 | void SetLabel( int item, wxBitmap *bitmap ); |
0de9b5b2 | 77 | |
debe6624 | 78 | bool Show( bool show ); |
0de9b5b2 RR |
79 | void Show( int item, bool show ); |
80 | ||
f03fc89f | 81 | bool Enable( bool enable ); |
debe6624 | 82 | void Enable( int item, bool enable ); |
0de9b5b2 RR |
83 | |
84 | virtual wxString GetStringSelection() const; | |
c801d85f | 85 | virtual bool SetStringSelection( const wxString& s ); |
0de9b5b2 RR |
86 | |
87 | virtual int Number() const; | |
88 | int GetNumberOfRowsOrCols() const; | |
debe6624 | 89 | void SetNumberOfRowsOrCols( int n ); |
d3904ceb | 90 | |
b292e2f5 | 91 | void SetFocus(); |
3f659fd6 | 92 | |
868a2826 RR |
93 | // implementation |
94 | ||
953704c1 RR |
95 | void DisableEvents(); |
96 | void EnableEvents(); | |
b4071e91 | 97 | bool IsOwnGtkWindow( GdkWindow *window ); |
58614078 | 98 | void ApplyWidgetStyle(); |
d3b4d113 | 99 | wxSize LayoutItems(); |
54517652 | 100 | void DoSetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO ); |
b4071e91 | 101 | |
d6d1892b | 102 | bool m_alreadySent; |
d3b4d113 | 103 | int m_majorDim; |
d6d1892b | 104 | wxList m_boxes; |
c801d85f | 105 | |
54517652 RR |
106 | private: |
107 | DECLARE_DYNAMIC_CLASS(wxRadioBox) | |
c801d85f KB |
108 | }; |
109 | ||
dcf924a3 RR |
110 | #endif |
111 | ||
c801d85f | 112 | #endif // __GTKRADIOBOXH__ |