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