]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
2b5f62a0 | 2 | // Name: msw/checkbox.cpp |
2bda0e17 KB |
3 | // Purpose: wxCheckBox |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
4438caf4 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
14f355c2 | 20 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
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 | ||
1e6feb95 VZ |
31 | #if wxUSE_CHECKBOX |
32 | ||
2bda0e17 | 33 | #ifndef WX_PRECOMP |
4438caf4 VZ |
34 | #include "wx/checkbox.h" |
35 | #include "wx/brush.h" | |
f6bcfd97 BP |
36 | #include "wx/dcscreen.h" |
37 | #include "wx/settings.h" | |
2bda0e17 KB |
38 | #endif |
39 | ||
40 | #include "wx/msw/private.h" | |
41 | ||
8941fa88 VZ |
42 | #ifndef BST_UNCHECKED |
43 | #define BST_UNCHECKED 0x0000 | |
44 | #endif | |
45 | ||
2b5f62a0 VZ |
46 | #ifndef BST_CHECKED |
47 | #define BST_CHECKED 0x0001 | |
48 | #endif | |
2bda0e17 | 49 | |
8941fa88 VZ |
50 | #ifndef BST_INDETERMINATE |
51 | #define BST_INDETERMINATE 0x0002 | |
52 | #endif | |
53 | ||
4438caf4 VZ |
54 | // ============================================================================ |
55 | // implementation | |
56 | // ============================================================================ | |
57 | ||
51741307 | 58 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
59 | WX_DEFINE_FLAGS( wxCheckBoxStyle ) |
60 | ||
3ff066a4 | 61 | wxBEGIN_FLAGS( wxCheckBoxStyle ) |
bc9fb572 JS |
62 | // new style border flags, we put them first to |
63 | // use them for streaming out | |
3ff066a4 SC |
64 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
65 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
66 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
67 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
68 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
69 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
bc9fb572 JS |
70 | |
71 | // old style border flags | |
3ff066a4 SC |
72 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
73 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
74 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
75 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
76 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
8941fa88 | 77 | wxFLAGS_MEMBER(wxNO_BORDER) |
bc9fb572 JS |
78 | |
79 | // standard window styles | |
3ff066a4 SC |
80 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
81 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
82 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
83 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
8941fa88 | 84 | wxFLAGS_MEMBER(wxNO_FULL_REPAINT_ON_RESIZE) |
3ff066a4 SC |
85 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
86 | wxFLAGS_MEMBER(wxVSCROLL) | |
87 | wxFLAGS_MEMBER(wxHSCROLL) | |
bc9fb572 | 88 | |
3ff066a4 | 89 | wxEND_FLAGS( wxCheckBoxStyle ) |
bc9fb572 | 90 | |
51741307 SC |
91 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxCheckBox, wxControl,"wx/checkbox.h") |
92 | ||
3ff066a4 SC |
93 | wxBEGIN_PROPERTIES_TABLE(wxCheckBox) |
94 | wxEVENT_PROPERTY( Click , wxEVT_COMMAND_CHECKBOX_CLICKED , wxCommandEvent ) | |
51741307 | 95 | |
3ff066a4 SC |
96 | wxPROPERTY( Font , wxFont , SetFont , GetFont , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
97 | wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
98 | wxPROPERTY( Value ,bool, SetValue, GetValue, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) | |
99 | wxPROPERTY_FLAGS( WindowStyle , wxCheckBoxStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style | |
100 | wxEND_PROPERTIES_TABLE() | |
2b5f62a0 | 101 | |
3ff066a4 SC |
102 | wxBEGIN_HANDLERS_TABLE(wxCheckBox) |
103 | wxEND_HANDLERS_TABLE() | |
51741307 | 104 | |
3ff066a4 | 105 | wxCONSTRUCTOR_6( wxCheckBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle ) |
51741307 SC |
106 | #else |
107 | IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) | |
108 | #endif | |
066f1b7a | 109 | |
066f1b7a | 110 | |
4438caf4 VZ |
111 | // ---------------------------------------------------------------------------- |
112 | // wxCheckBox | |
113 | // ---------------------------------------------------------------------------- | |
114 | ||
1169a919 JS |
115 | wxCheckBoxBase::wxCheckBoxBase() |
116 | { | |
117 | } | |
118 | ||
debe6624 | 119 | bool wxCheckBox::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id)) |
2bda0e17 | 120 | { |
4438caf4 | 121 | wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, m_windowId); |
8941fa88 VZ |
122 | wxCheckBoxState state = Get3StateValue(); |
123 | ||
124 | // If the style flag to allow the user setting the undetermined state | |
125 | // is not set, then skip the undetermined state and set it to unchecked. | |
126 | if ( state == wxCHK_UNDETERMINED && !Is3rdStateAllowedForUser() ) | |
127 | { | |
128 | state = wxCHK_UNCHECKED; | |
129 | Set3StateValue(state); | |
130 | } | |
131 | ||
132 | event.SetInt(state); | |
4438caf4 VZ |
133 | event.SetEventObject(this); |
134 | ProcessCommand(event); | |
8941fa88 | 135 | |
4438caf4 | 136 | return TRUE; |
2bda0e17 KB |
137 | } |
138 | ||
11b6a93b VZ |
139 | bool wxCheckBox::Create(wxWindow *parent, |
140 | wxWindowID id, | |
141 | const wxString& label, | |
142 | const wxPoint& pos, | |
143 | const wxSize& size, long style, | |
144 | const wxValidator& validator, | |
145 | const wxString& name) | |
2bda0e17 | 146 | { |
787a85c2 | 147 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) |
8912d7eb | 148 | return FALSE; |
4438caf4 | 149 | |
8941fa88 VZ |
150 | long msStyle = WS_TABSTOP; |
151 | ||
152 | if ( style & wxCHK_3STATE ) | |
153 | { | |
154 | msStyle |= BS_AUTO3STATE; | |
155 | } | |
156 | else | |
157 | { | |
158 | wxASSERT_MSG( !Is3rdStateAllowedForUser(), | |
159 | wxT("Using wxCH_ALLOW_3RD_STATE_FOR_USER") | |
160 | wxT(" style flag for a 2-state checkbox is useless") ); | |
161 | msStyle |= BS_AUTOCHECKBOX; | |
162 | } | |
163 | ||
4438caf4 | 164 | if ( style & wxALIGN_RIGHT ) |
8941fa88 | 165 | { |
4438caf4 | 166 | msStyle |= BS_LEFTTEXT; |
8941fa88 | 167 | } |
4438caf4 | 168 | |
8912d7eb | 169 | return MSWCreateControl(wxT("BUTTON"), msStyle, pos, size, label, 0); |
2bda0e17 KB |
170 | } |
171 | ||
172 | void wxCheckBox::SetLabel(const wxString& label) | |
173 | { | |
f6bcfd97 | 174 | SetWindowText(GetHwnd(), label); |
2bda0e17 KB |
175 | } |
176 | ||
f68586e5 | 177 | wxSize wxCheckBox::DoGetBestSize() const |
2bda0e17 | 178 | { |
f6bcfd97 | 179 | static int s_checkSize = 0; |
81d66cf3 | 180 | |
f6bcfd97 BP |
181 | if ( !s_checkSize ) |
182 | { | |
183 | wxScreenDC dc; | |
a756f210 | 184 | dc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); |
2bda0e17 | 185 | |
fb1a41cd | 186 | s_checkSize = dc.GetCharHeight(); |
f6bcfd97 BP |
187 | } |
188 | ||
189 | wxString str = wxGetWindowText(GetHWND()); | |
190 | ||
191 | int wCheckbox, hCheckbox; | |
4438caf4 VZ |
192 | if ( !str.IsEmpty() ) |
193 | { | |
194 | GetTextExtent(str, &wCheckbox, &hCheckbox); | |
f6bcfd97 | 195 | wCheckbox += s_checkSize + GetCharWidth(); |
27fda0b6 | 196 | |
f6bcfd97 BP |
197 | if ( hCheckbox < s_checkSize ) |
198 | hCheckbox = s_checkSize; | |
4438caf4 VZ |
199 | } |
200 | else | |
2bda0e17 | 201 | { |
f6bcfd97 BP |
202 | wCheckbox = s_checkSize; |
203 | hCheckbox = s_checkSize; | |
2bda0e17 KB |
204 | } |
205 | ||
4438caf4 | 206 | return wxSize(wCheckbox, hCheckbox); |
2bda0e17 KB |
207 | } |
208 | ||
debe6624 | 209 | void wxCheckBox::SetValue(bool val) |
2bda0e17 | 210 | { |
8941fa88 VZ |
211 | if (val) |
212 | { | |
213 | Set3StateValue(wxCHK_CHECKED); | |
214 | } | |
215 | else | |
216 | { | |
217 | Set3StateValue(wxCHK_UNCHECKED); | |
218 | } | |
2bda0e17 KB |
219 | } |
220 | ||
bfc6fde4 | 221 | bool wxCheckBox::GetValue() const |
2bda0e17 | 222 | { |
8941fa88 | 223 | return (Get3StateValue() != 0); |
2bda0e17 KB |
224 | } |
225 | ||
2b5f62a0 | 226 | void wxCheckBox::Command(wxCommandEvent& event) |
2bda0e17 | 227 | { |
8941fa88 VZ |
228 | int state = event.GetInt(); |
229 | wxCHECK_RET( (state == wxCHK_UNCHECKED) || (state == wxCHK_CHECKED) | |
230 | || (state == wxCHK_UNDETERMINED), | |
231 | wxT("event.GetInt() returned an invalid checkbox state") ); | |
232 | ||
233 | Set3StateValue((wxCheckBoxState) state); | |
2b5f62a0 | 234 | ProcessCommand(event); |
2bda0e17 | 235 | } |
1e6feb95 | 236 | |
8941fa88 VZ |
237 | wxCOMPILE_TIME_ASSERT(wxCHK_UNCHECKED == BST_UNCHECKED |
238 | && wxCHK_CHECKED == BST_CHECKED | |
239 | && wxCHK_UNDETERMINED == BST_INDETERMINATE, EnumValuesIncorrect); | |
240 | ||
241 | void wxCheckBox::DoSet3StateValue(wxCheckBoxState state) | |
242 | { | |
243 | ::SendMessage(GetHwnd(), BM_SETCHECK, (WPARAM) state, 0); | |
244 | } | |
245 | ||
246 | wxCheckBoxState wxCheckBox::DoGet3StateValue() const | |
247 | { | |
248 | #ifdef __WIN32__ | |
249 | return (wxCheckBoxState) ::SendMessage(GetHwnd(), BM_GETCHECK, 0, 0); | |
250 | #else | |
251 | return (wxCheckBoxState) ((::SendMessage(GetHwnd(), BM_GETCHECK, 0, 0) | |
252 | & 0x001) == 0x001); | |
253 | #endif | |
254 | ||
255 | } | |
256 | ||
1e6feb95 | 257 | #endif // wxUSE_CHECKBOX |