Line-up interfaces to use size_t for GetCount()s (and count related api).
[wxWidgets.git] / include / wx / palmos / radiobox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/radiobox.h
3 // Purpose: wxRadioBox class
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native wxRadioBox implementation
6 // Created: 10/13/04
7 // RCS-ID: $Id$
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RADIOBOX_H_
13 #define _WX_RADIOBOX_H_
14
15 class WXDLLEXPORT wxBitmap;
16 class WXDLLEXPORT wxRadioButton;
17
18 // ----------------------------------------------------------------------------
19 // wxRadioBox
20 // ----------------------------------------------------------------------------
21
22 class WXDLLEXPORT wxRadioBox : public wxControl, public wxRadioBoxBase
23 {
24 public:
25 wxRadioBox():m_radios(wxKEY_INTEGER,32)
26 {
27 Init();
28 }
29
30 wxRadioBox(wxWindow *parent,
31 wxWindowID id,
32 const wxString& title,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 int n = 0, const wxString choices[] = NULL,
36 int majorDim = 0,
37 long style = wxRA_SPECIFY_COLS,
38 const wxValidator& val = wxDefaultValidator,
39 const wxString& name = wxRadioBoxNameStr)
40 :m_radios(wxKEY_INTEGER,n+1)
41 {
42 Init();
43 (void)Create(parent, id, title, pos, size, n, choices, majorDim,
44 style, val, name);
45 }
46
47 wxRadioBox(wxWindow *parent,
48 wxWindowID id,
49 const wxString& title,
50 const wxPoint& pos,
51 const wxSize& size,
52 const wxArrayString& choices,
53 int majorDim = 0,
54 long style = wxRA_SPECIFY_COLS,
55 const wxValidator& val = wxDefaultValidator,
56 const wxString& name = wxRadioBoxNameStr)
57 :m_radios(wxKEY_INTEGER,choices.GetCount()+1)
58 {
59 Init();
60 (void)Create(parent, id, title, pos, size, choices, majorDim,
61 style, val, name);
62 }
63
64 ~wxRadioBox();
65
66 bool Create(wxWindow *parent,
67 wxWindowID id,
68 const wxString& title,
69 const wxPoint& pos = wxDefaultPosition,
70 const wxSize& size = wxDefaultSize,
71 int n = 0, const wxString choices[] = NULL,
72 int majorDim = 0,
73 long style = wxRA_SPECIFY_COLS,
74 const wxValidator& val = wxDefaultValidator,
75 const wxString& name = wxRadioBoxNameStr);
76
77 bool Create(wxWindow *parent,
78 wxWindowID id,
79 const wxString& title,
80 const wxPoint& pos,
81 const wxSize& size,
82 const wxArrayString& choices,
83 int majorDim = 0,
84 long style = wxRA_SPECIFY_COLS,
85 const wxValidator& val = wxDefaultValidator,
86 const wxString& name = wxRadioBoxNameStr);
87
88 // implement the radiobox interface
89 virtual void SetSelection(int n);
90 virtual int GetSelection() const;
91 virtual size_t GetCount() const;
92 virtual wxString GetString(int n) const;
93 virtual void SetString(int n, const wxString& label);
94
95 virtual bool Enable(bool enable = true);
96 virtual bool Enable(int n, bool enable = true);
97
98 virtual bool Show(bool show = true);
99 virtual bool Show(int n, bool show = true);
100
101 virtual void SetLabel(const wxString& label);
102 virtual wxString GetLabel();
103
104 virtual void DoGetPosition( int *x, int *y ) const;
105 virtual void DoGetSize( int *width, int *height ) const;
106 virtual void DoMoveWindow(int x, int y, int width, int height);
107
108 virtual wxPoint GetClientAreaOrigin() const;
109
110 void SetFocus();
111 void SetLabelFont(const wxFont& WXUNUSED(font)) {};
112 void SetButtonFont(const wxFont& font) { SetFont(font); }
113
114 virtual void Refresh( bool eraseBackground = true,
115 const wxRect *rect = NULL );
116
117 void Command(wxCommandEvent& event);
118
119 int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
120 void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
121
122 // implementation only from now on
123 // -------------------------------
124
125 virtual bool SetFont(const wxFont& font);
126
127 void SendNotificationEvent();
128
129 protected:
130 // we can't compute our best size before the items are added to the control
131 virtual void SetInitialBestSize(const wxSize& WXUNUSED(size)) { }
132
133 // get the max size of radio buttons
134 wxSize GetMaxButtonSize() const;
135
136 // get the total size occupied by the radio box buttons
137 wxSize GetTotalButtonSize(const wxSize& sizeBtn) const;
138
139 int *m_radioWidth; // for bitmaps
140 int *m_radioHeight;
141
142 int m_noRowsOrCols;
143 int m_selectedButton;
144
145 virtual wxSize DoGetBestSize() const;
146
147 private:
148
149 void Init();
150 wxRadioButton *GetRadioButton(int i) const;
151
152 wxPoint m_pos;
153 wxSize m_size;
154 wxHashTable m_radios;
155
156 DECLARE_DYNAMIC_CLASS(wxRadioBox)
157 DECLARE_NO_COPY_CLASS(wxRadioBox)
158 };
159
160 #endif
161 // _WX_RADIOBOX_H_