]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: checkbox.cpp | |
3 | // Purpose: wxCheckBox | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
4438caf4 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
4438caf4 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
4438caf4 | 21 | #pragma implementation "checkbox.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
4438caf4 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
4438caf4 VZ |
32 | #include "wx/checkbox.h" |
33 | #include "wx/brush.h" | |
2bda0e17 KB |
34 | #endif |
35 | ||
36 | #include "wx/msw/private.h" | |
37 | ||
4438caf4 VZ |
38 | // ---------------------------------------------------------------------------- |
39 | // macros | |
40 | // ---------------------------------------------------------------------------- | |
41 | ||
11b6a93b VZ |
42 | IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) |
43 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox) | |
2bda0e17 | 44 | |
4438caf4 VZ |
45 | // ============================================================================ |
46 | // implementation | |
47 | // ============================================================================ | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // wxCheckBox | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
debe6624 | 53 | bool wxCheckBox::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id)) |
2bda0e17 | 54 | { |
4438caf4 VZ |
55 | wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, m_windowId); |
56 | event.SetInt(GetValue()); | |
57 | event.SetEventObject(this); | |
58 | ProcessCommand(event); | |
59 | return TRUE; | |
2bda0e17 KB |
60 | } |
61 | ||
62 | // Single check box item | |
11b6a93b VZ |
63 | bool wxCheckBox::Create(wxWindow *parent, |
64 | wxWindowID id, | |
65 | const wxString& label, | |
66 | const wxPoint& pos, | |
67 | const wxSize& size, long style, | |
68 | const wxValidator& validator, | |
69 | const wxString& name) | |
2bda0e17 | 70 | { |
4438caf4 | 71 | SetName(name); |
11b6a93b | 72 | #if wxUSE_VALIDATORS |
4438caf4 | 73 | SetValidator(validator); |
11b6a93b | 74 | #endif // wxUSE_VALIDATORS |
4438caf4 VZ |
75 | if (parent) parent->AddChild(this); |
76 | ||
77 | SetBackgroundColour(parent->GetBackgroundColour()) ; | |
78 | SetForegroundColour(parent->GetForegroundColour()) ; | |
79 | ||
80 | m_windowStyle = style; | |
81 | ||
b94ae1ea VZ |
82 | // VZ: disabling this ugliness which completely breaks checkboxes in wxGrid |
83 | // whoever did it, please tell me where and how does the checkbox fail | |
84 | // to appear | |
85 | #if 0 | |
4438caf4 | 86 | wxString Label = label; |
223d09f6 KB |
87 | if (Label == wxT("")) |
88 | Label = wxT(" "); // Apparently needed or checkbox won't show | |
b94ae1ea | 89 | #endif // 0 |
4438caf4 VZ |
90 | |
91 | if ( id == -1 ) | |
92 | m_windowId = NewControlId(); | |
93 | else | |
94 | m_windowId = id; | |
95 | ||
96 | int x = pos.x; | |
97 | int y = pos.y; | |
98 | int width = size.x; | |
99 | int height = size.y; | |
100 | ||
101 | long msStyle = BS_AUTOCHECKBOX | WS_TABSTOP | WS_CHILD | WS_VISIBLE; | |
102 | if ( style & wxALIGN_RIGHT ) | |
103 | msStyle |= BS_LEFTTEXT; | |
104 | ||
105 | // We perhaps have different concepts of 3D here - a 3D border, | |
106 | // versus a 3D button. | |
107 | // So we only wish to give a border if this is specified | |
108 | // in the style. | |
109 | bool want3D; | |
110 | WXDWORD exStyle = Determine3DEffects(0, &want3D) ; | |
111 | ||
112 | // Even with extended styles, need to combine with WS_BORDER | |
113 | // for them to look right. | |
114 | /* | |
115 | if ( want3D || wxStyleHasBorder(m_windowStyle) ) | |
116 | msStyle |= WS_BORDER; | |
117 | */ | |
118 | ||
b94ae1ea | 119 | m_hWnd = (WXHWND)CreateWindowEx(exStyle, wxT("BUTTON"), label, |
4438caf4 VZ |
120 | msStyle, |
121 | 0, 0, 0, 0, | |
122 | (HWND)parent->GetHWND(), (HMENU)m_windowId, | |
123 | wxGetInstance(), NULL); | |
2bda0e17 | 124 | |
1f112209 | 125 | #if wxUSE_CTL3D |
4438caf4 VZ |
126 | if (want3D) |
127 | { | |
128 | Ctl3dSubclassCtl(GetHwnd()); | |
129 | m_useCtl3D = TRUE; | |
130 | } | |
2bda0e17 KB |
131 | #endif |
132 | ||
4438caf4 VZ |
133 | // Subclass again for purposes of dialog editing mode |
134 | SubclassWin(m_hWnd); | |
2bda0e17 | 135 | |
4438caf4 | 136 | SetFont(parent->GetFont()); |
2bda0e17 | 137 | |
4438caf4 VZ |
138 | SetSize(x, y, width, height); |
139 | ||
140 | return TRUE; | |
2bda0e17 KB |
141 | } |
142 | ||
143 | void wxCheckBox::SetLabel(const wxString& label) | |
144 | { | |
4438caf4 | 145 | SetWindowText(GetHwnd(), label); |
2bda0e17 KB |
146 | } |
147 | ||
a95e38c0 VZ |
148 | #define CHECK_SIZE 13 |
149 | ||
f68586e5 | 150 | wxSize wxCheckBox::DoGetBestSize() const |
2bda0e17 | 151 | { |
4438caf4 | 152 | int wCheckbox, hCheckbox; |
81d66cf3 | 153 | |
86f61871 | 154 | wxString str = wxGetWindowText(GetHWND()) + " "; |
2bda0e17 | 155 | |
4438caf4 VZ |
156 | if ( !str.IsEmpty() ) |
157 | { | |
158 | GetTextExtent(str, &wCheckbox, &hCheckbox); | |
a95e38c0 | 159 | wCheckbox += CHECK_SIZE; |
27fda0b6 | 160 | |
a95e38c0 VZ |
161 | if ( hCheckbox < CHECK_SIZE ) |
162 | hCheckbox = CHECK_SIZE; | |
4438caf4 VZ |
163 | } |
164 | else | |
2bda0e17 | 165 | { |
a95e38c0 VZ |
166 | wCheckbox = CHECK_SIZE; |
167 | hCheckbox = CHECK_SIZE; | |
2bda0e17 KB |
168 | } |
169 | ||
4438caf4 | 170 | return wxSize(wCheckbox, hCheckbox); |
2bda0e17 KB |
171 | } |
172 | ||
debe6624 | 173 | void wxCheckBox::SetValue(bool val) |
2bda0e17 | 174 | { |
4438caf4 | 175 | SendMessage(GetHwnd(), BM_SETCHECK, val, 0); |
2bda0e17 KB |
176 | } |
177 | ||
2432b92d JS |
178 | #ifndef BST_CHECKED |
179 | #define BST_CHECKED 0x0001 | |
180 | #endif | |
181 | ||
bfc6fde4 | 182 | bool wxCheckBox::GetValue() const |
2bda0e17 KB |
183 | { |
184 | #ifdef __WIN32__ | |
4438caf4 | 185 | return (SendMessage(GetHwnd(), BM_GETCHECK, 0, 0) == BST_CHECKED); |
2bda0e17 | 186 | #else |
4438caf4 | 187 | return ((0x003 & SendMessage(GetHwnd(), BM_GETCHECK, 0, 0)) == 0x003); |
2bda0e17 KB |
188 | #endif |
189 | } | |
190 | ||
2bda0e17 KB |
191 | void wxCheckBox::Command (wxCommandEvent & event) |
192 | { | |
193 | SetValue ((event.GetInt() != 0)); | |
194 | ProcessCommand (event); | |
195 | } | |
196 | ||
4438caf4 VZ |
197 | // ---------------------------------------------------------------------------- |
198 | // wxBitmapCheckBox | |
199 | // ---------------------------------------------------------------------------- | |
200 | ||
debe6624 | 201 | bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, const wxBitmap *label, |
2bda0e17 | 202 | const wxPoint& pos, |
debe6624 | 203 | const wxSize& size, long style, |
2bda0e17 KB |
204 | const wxValidator& validator, |
205 | const wxString& name) | |
206 | { | |
207 | SetName(name); | |
11b6a93b | 208 | #if wxUSE_VALIDATORS |
2bda0e17 | 209 | SetValidator(validator); |
11b6a93b | 210 | #endif // wxUSE_VALIDATORS |
2bda0e17 KB |
211 | if (parent) parent->AddChild(this); |
212 | ||
fd71308f JS |
213 | SetBackgroundColour(parent->GetBackgroundColour()) ; |
214 | SetForegroundColour(parent->GetForegroundColour()) ; | |
2bda0e17 KB |
215 | m_windowStyle = style; |
216 | ||
4438caf4 VZ |
217 | if ( id == -1 ) |
218 | m_windowId = NewControlId(); | |
219 | else | |
220 | m_windowId = id; | |
2bda0e17 KB |
221 | |
222 | int x = pos.x; | |
223 | int y = pos.y; | |
224 | int width = size.x; | |
225 | int height = size.y; | |
226 | ||
227 | checkWidth = -1 ; | |
228 | checkHeight = -1 ; | |
229 | long msStyle = CHECK_FLAGS; | |
230 | ||
223d09f6 | 231 | HWND wx_button = CreateWindowEx(MakeExtendedStyle(m_windowStyle), CHECK_CLASS, wxT("toggle"), |
2bda0e17 KB |
232 | msStyle, |
233 | 0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId, | |
234 | wxGetInstance(), NULL); | |
235 | ||
1f112209 | 236 | #if wxUSE_CTL3D |
2bda0e17 KB |
237 | if (!(GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS)) |
238 | { | |
239 | Ctl3dSubclassCtl(wx_button); | |
4438caf4 | 240 | m_useCtl3D = TRUE; |
2bda0e17 KB |
241 | } |
242 | #endif | |
243 | ||
244 | m_hWnd = (WXHWND)wx_button; | |
245 | ||
246 | // Subclass again for purposes of dialog editing mode | |
247 | SubclassWin((WXHWND)wx_button); | |
248 | ||
2bda0e17 KB |
249 | SetSize(x, y, width, height); |
250 | ||
251 | ShowWindow(wx_button, SW_SHOW); | |
4438caf4 | 252 | |
2bda0e17 KB |
253 | return TRUE; |
254 | } | |
255 | ||
acbd13a3 | 256 | void wxBitmapCheckBox::SetLabel(const wxBitmap& bitmap) |
2bda0e17 | 257 | { |
223d09f6 | 258 | wxFAIL_MSG(wxT("not implemented")); |
2bda0e17 | 259 | } |