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