]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/msw/control.cpp | |
3 | // Purpose: wxControl class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_CONTROLS | |
28 | ||
29 | #include "wx/control.h" | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" | |
33 | #include "wx/event.h" | |
34 | #include "wx/app.h" | |
35 | #include "wx/dcclient.h" | |
36 | #include "wx/log.h" | |
37 | #include "wx/settings.h" | |
38 | #endif | |
39 | ||
40 | #if wxUSE_LISTCTRL | |
41 | #include "wx/listctrl.h" | |
42 | #endif // wxUSE_LISTCTRL | |
43 | ||
44 | #if wxUSE_TREECTRL | |
45 | #include "wx/treectrl.h" | |
46 | #endif // wxUSE_TREECTRL | |
47 | ||
48 | #include "wx/msw/private.h" | |
49 | #include "wx/msw/uxtheme.h" | |
50 | ||
51 | // ---------------------------------------------------------------------------- | |
52 | // wxWin macros | |
53 | // ---------------------------------------------------------------------------- | |
54 | ||
55 | IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow) | |
56 | ||
57 | // ============================================================================ | |
58 | // wxControl implementation | |
59 | // ============================================================================ | |
60 | ||
61 | // ---------------------------------------------------------------------------- | |
62 | // wxControl ctor/dtor | |
63 | // ---------------------------------------------------------------------------- | |
64 | ||
65 | wxControl::~wxControl() | |
66 | { | |
67 | m_isBeingDeleted = true; | |
68 | } | |
69 | ||
70 | // ---------------------------------------------------------------------------- | |
71 | // control window creation | |
72 | // ---------------------------------------------------------------------------- | |
73 | ||
74 | bool wxControl::Create(wxWindow *parent, | |
75 | wxWindowID id, | |
76 | const wxPoint& pos, | |
77 | const wxSize& size, | |
78 | long style, | |
79 | const wxValidator& wxVALIDATOR_PARAM(validator), | |
80 | const wxString& name) | |
81 | { | |
82 | if ( !wxWindow::Create(parent, id, pos, size, style, name) ) | |
83 | return false; | |
84 | ||
85 | #if wxUSE_VALIDATORS | |
86 | SetValidator(validator); | |
87 | #endif | |
88 | ||
89 | return true; | |
90 | } | |
91 | ||
92 | bool wxControl::MSWCreateControl(const wxChar *classname, | |
93 | const wxString& label, | |
94 | const wxPoint& pos, | |
95 | const wxSize& size) | |
96 | { | |
97 | WXDWORD exstyle; | |
98 | WXDWORD msStyle = MSWGetStyle(GetWindowStyle(), &exstyle); | |
99 | ||
100 | return MSWCreateControl(classname, msStyle, pos, size, label, exstyle); | |
101 | } | |
102 | ||
103 | bool wxControl::MSWCreateControl(const wxChar *classname, | |
104 | WXDWORD style, | |
105 | const wxPoint& pos, | |
106 | const wxSize& size, | |
107 | const wxString& label, | |
108 | WXDWORD exstyle) | |
109 | { | |
110 | // if no extended style given, determine it ourselves | |
111 | if ( exstyle == (WXDWORD)-1 ) | |
112 | { | |
113 | exstyle = 0; | |
114 | (void) MSWGetStyle(GetWindowStyle(), &exstyle); | |
115 | } | |
116 | ||
117 | // all controls should have this style | |
118 | style |= WS_CHILD; | |
119 | ||
120 | // create the control visible if it's currently shown for wxWidgets | |
121 | if ( m_isShown ) | |
122 | { | |
123 | style |= WS_VISIBLE; | |
124 | } | |
125 | ||
126 | // choose the position for the control: we have a problem with default size | |
127 | // here as we can't calculate the best size before the control exists | |
128 | // (DoGetBestSize() may need to use m_hWnd), so just choose the minimal | |
129 | // possible but non 0 size because 0 window width/height result in problems | |
130 | // elsewhere | |
131 | int x = pos.x == wxDefaultCoord ? 0 : pos.x, | |
132 | y = pos.y == wxDefaultCoord ? 0 : pos.y, | |
133 | w = size.x == wxDefaultCoord ? 1 : size.x, | |
134 | h = size.y == wxDefaultCoord ? 1 : size.y; | |
135 | ||
136 | // ... and adjust it to account for a possible parent frames toolbar | |
137 | AdjustForParentClientOrigin(x, y); | |
138 | ||
139 | m_hWnd = (WXHWND)::CreateWindowEx | |
140 | ( | |
141 | exstyle, // extended style | |
142 | classname, // the kind of control to create | |
143 | label, // the window name | |
144 | style, // the window style | |
145 | x, y, w, h, // the window position and size | |
146 | GetHwndOf(GetParent()), // parent | |
147 | (HMENU)GetId(), // child id | |
148 | wxGetInstance(), // app instance | |
149 | NULL // creation parameters | |
150 | ); | |
151 | ||
152 | if ( !m_hWnd ) | |
153 | { | |
154 | #ifdef __WXDEBUG__ | |
155 | wxFAIL_MSG(wxString::Format | |
156 | ( | |
157 | _T("CreateWindowEx(\"%s\", flags=%08x, ex=%08x) failed"), | |
158 | classname, (unsigned int)style, (unsigned int)exstyle | |
159 | )); | |
160 | #endif // __WXDEBUG__ | |
161 | ||
162 | return false; | |
163 | } | |
164 | ||
165 | // install wxWidgets window proc for this window | |
166 | SubclassWin(m_hWnd); | |
167 | ||
168 | // set up fonts and colours | |
169 | InheritAttributes(); | |
170 | if ( !m_hasFont ) | |
171 | { | |
172 | bool setFont = true; | |
173 | ||
174 | wxFont font = GetDefaultAttributes().font; | |
175 | ||
176 | // if we set a font for {list,tree}ctrls and the font size is changed in | |
177 | // the display properties then the font size for these controls doesn't | |
178 | // automatically adjust when they receive WM_SETTINGCHANGE | |
179 | ||
180 | // FIXME: replace the dynamic casts with virtual function calls!! | |
181 | #if wxUSE_LISTCTRL || wxUSE_TREECTRL | |
182 | bool testFont = false; | |
183 | #if wxUSE_LISTCTRL | |
184 | if ( wxDynamicCastThis(wxListCtrl) ) | |
185 | testFont = true; | |
186 | #endif // wxUSE_LISTCTRL | |
187 | #if wxUSE_TREECTRL | |
188 | if ( wxDynamicCastThis(wxTreeCtrl) ) | |
189 | testFont = true; | |
190 | #endif // wxUSE_TREECTRL | |
191 | ||
192 | if ( testFont ) | |
193 | { | |
194 | // not sure if we need to explicitly set the font here for Win95/NT4 | |
195 | // but we definitely can't do it for any newer version | |
196 | // see wxGetCCDefaultFont() in src/msw/settings.cpp for explanation | |
197 | // of why this test works | |
198 | ||
199 | // TODO: test Win95/NT4 to see if this is needed or breaks the | |
200 | // font resizing as it does on newer versions | |
201 | if ( font != wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT) ) | |
202 | { | |
203 | setFont = false; | |
204 | } | |
205 | } | |
206 | #endif // wxUSE_LISTCTRL || wxUSE_TREECTRL | |
207 | ||
208 | if ( setFont ) | |
209 | { | |
210 | SetFont(GetDefaultAttributes().font); | |
211 | } | |
212 | } | |
213 | ||
214 | // set the size now if no initial size specified | |
215 | SetInitialSize(size); | |
216 | ||
217 | return true; | |
218 | } | |
219 | ||
220 | // ---------------------------------------------------------------------------- | |
221 | // various accessors | |
222 | // ---------------------------------------------------------------------------- | |
223 | ||
224 | wxBorder wxControl::GetDefaultBorder() const | |
225 | { | |
226 | // we want to automatically give controls a sunken style (confusingly, | |
227 | // it may not really mean sunken at all as we map it to WS_EX_CLIENTEDGE | |
228 | // which is not sunken at all under Windows XP -- rather, just the default) | |
229 | #if defined(__POCKETPC__) || defined(__SMARTPHONE__) | |
230 | return wxBORDER_SIMPLE; | |
231 | #else | |
232 | return wxBORDER_SUNKEN; | |
233 | #endif | |
234 | } | |
235 | ||
236 | WXDWORD wxControl::MSWGetStyle(long style, WXDWORD *exstyle) const | |
237 | { | |
238 | long msStyle = wxWindow::MSWGetStyle(style, exstyle); | |
239 | ||
240 | if ( AcceptsFocus() ) | |
241 | { | |
242 | msStyle |= WS_TABSTOP; | |
243 | } | |
244 | ||
245 | return msStyle; | |
246 | } | |
247 | ||
248 | wxSize wxControl::DoGetBestSize() const | |
249 | { | |
250 | return wxSize(DEFAULT_ITEM_WIDTH, DEFAULT_ITEM_HEIGHT); | |
251 | } | |
252 | ||
253 | // This is a helper for all wxControls made with UPDOWN native control. | |
254 | // In wxMSW it was only wxSpinCtrl derived from wxSpinButton but in | |
255 | // WinCE of Smartphones this happens also for native wxTextCtrl, | |
256 | // wxChoice and others. | |
257 | wxSize wxControl::GetBestSpinnerSize(const bool is_vertical) const | |
258 | { | |
259 | // take size according to layout | |
260 | wxSize bestSize( | |
261 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) | |
262 | 0,GetCharHeight() | |
263 | #else | |
264 | ::GetSystemMetrics(is_vertical ? SM_CXVSCROLL : SM_CXHSCROLL), | |
265 | ::GetSystemMetrics(is_vertical ? SM_CYVSCROLL : SM_CYHSCROLL) | |
266 | #endif | |
267 | ); | |
268 | ||
269 | // correct size as for undocumented MSW variants cases (WinCE and perhaps others) | |
270 | if (bestSize.x==0) | |
271 | bestSize.x = bestSize.y; | |
272 | if (bestSize.y==0) | |
273 | bestSize.y = bestSize.x; | |
274 | ||
275 | // double size according to layout | |
276 | if (is_vertical) | |
277 | bestSize.y *= 2; | |
278 | else | |
279 | bestSize.x *= 2; | |
280 | ||
281 | return bestSize; | |
282 | } | |
283 | ||
284 | /* static */ wxVisualAttributes | |
285 | wxControl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
286 | { | |
287 | wxVisualAttributes attrs; | |
288 | ||
289 | // old school (i.e. not "common") controls use the standard dialog font | |
290 | // by default | |
291 | attrs.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); | |
292 | ||
293 | // most, or at least many, of the controls use the same colours as the | |
294 | // buttons -- others will have to override this (and possibly simply call | |
295 | // GetCompositeControlsDefaultAttributes() from their versions) | |
296 | attrs.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNTEXT); | |
297 | attrs.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE); | |
298 | ||
299 | return attrs; | |
300 | } | |
301 | ||
302 | // another version for the "composite", i.e. non simple controls | |
303 | /* static */ wxVisualAttributes | |
304 | wxControl::GetCompositeControlsDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
305 | { | |
306 | wxVisualAttributes attrs; | |
307 | attrs.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); | |
308 | attrs.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT); | |
309 | attrs.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); | |
310 | ||
311 | return attrs; | |
312 | } | |
313 | ||
314 | // ---------------------------------------------------------------------------- | |
315 | // message handling | |
316 | // ---------------------------------------------------------------------------- | |
317 | ||
318 | bool wxControl::ProcessCommand(wxCommandEvent& event) | |
319 | { | |
320 | return GetEventHandler()->ProcessEvent(event); | |
321 | } | |
322 | ||
323 | bool wxControl::MSWOnNotify(int idCtrl, | |
324 | WXLPARAM lParam, | |
325 | WXLPARAM* result) | |
326 | { | |
327 | wxEventType eventType wxDUMMY_INITIALIZE(wxEVT_NULL); | |
328 | ||
329 | NMHDR *hdr = (NMHDR*) lParam; | |
330 | switch ( hdr->code ) | |
331 | { | |
332 | case NM_CLICK: | |
333 | eventType = wxEVT_COMMAND_LEFT_CLICK; | |
334 | break; | |
335 | ||
336 | case NM_DBLCLK: | |
337 | eventType = wxEVT_COMMAND_LEFT_DCLICK; | |
338 | break; | |
339 | ||
340 | case NM_RCLICK: | |
341 | eventType = wxEVT_COMMAND_RIGHT_CLICK; | |
342 | break; | |
343 | ||
344 | case NM_RDBLCLK: | |
345 | eventType = wxEVT_COMMAND_RIGHT_DCLICK; | |
346 | break; | |
347 | ||
348 | case NM_SETFOCUS: | |
349 | eventType = wxEVT_COMMAND_SET_FOCUS; | |
350 | break; | |
351 | ||
352 | case NM_KILLFOCUS: | |
353 | eventType = wxEVT_COMMAND_KILL_FOCUS; | |
354 | break; | |
355 | ||
356 | case NM_RETURN: | |
357 | eventType = wxEVT_COMMAND_ENTER; | |
358 | break; | |
359 | ||
360 | default: | |
361 | return wxWindow::MSWOnNotify(idCtrl, lParam, result); | |
362 | } | |
363 | ||
364 | wxCommandEvent event(wxEVT_NULL, m_windowId); | |
365 | event.SetEventType(eventType); | |
366 | event.SetEventObject(this); | |
367 | ||
368 | return GetEventHandler()->ProcessEvent(event); | |
369 | } | |
370 | ||
371 | WXHBRUSH wxControl::DoMSWControlColor(WXHDC pDC, wxColour colBg, WXHWND hWnd) | |
372 | { | |
373 | HDC hdc = (HDC)pDC; | |
374 | if ( m_hasFgCol ) | |
375 | { | |
376 | ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour())); | |
377 | } | |
378 | ||
379 | WXHBRUSH hbr = 0; | |
380 | if ( !colBg.Ok() ) | |
381 | { | |
382 | hbr = MSWGetBgBrush(pDC, hWnd); | |
383 | ||
384 | // if the control doesn't have any bg colour, foreground colour will be | |
385 | // ignored as the return value would be 0 -- so forcefully give it a | |
386 | // non default background brush in this case | |
387 | if ( !hbr && m_hasFgCol ) | |
388 | colBg = GetBackgroundColour(); | |
389 | } | |
390 | ||
391 | // use the background colour override if a valid colour is given | |
392 | if ( colBg.Ok() ) | |
393 | { | |
394 | ::SetBkColor(hdc, wxColourToRGB(colBg)); | |
395 | ||
396 | // draw children with the same colour as the parent | |
397 | wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBg, wxSOLID); | |
398 | ||
399 | hbr = (WXHBRUSH)brush->GetResourceHandle(); | |
400 | ||
401 | } | |
402 | ||
403 | // if we use custom background, we should set foreground ourselves too | |
404 | if ( hbr && !m_hasFgCol ) | |
405 | { | |
406 | ::SetTextColor(hdc, ::GetSysColor(COLOR_WINDOWTEXT)); | |
407 | } | |
408 | //else: already set above | |
409 | ||
410 | return hbr; | |
411 | } | |
412 | ||
413 | WXHBRUSH wxControl::MSWControlColor(WXHDC pDC, WXHWND hWnd) | |
414 | { | |
415 | wxColour colBg; | |
416 | ||
417 | if ( HasTransparentBackground() ) | |
418 | ::SetBkMode((HDC)pDC, TRANSPARENT); | |
419 | else // if the control is opaque it shouldn't use the parents background | |
420 | colBg = GetBackgroundColour(); | |
421 | ||
422 | return DoMSWControlColor(pDC, colBg, hWnd); | |
423 | } | |
424 | ||
425 | WXHBRUSH wxControl::MSWControlColorDisabled(WXHDC pDC) | |
426 | { | |
427 | return DoMSWControlColor(pDC, | |
428 | wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE), | |
429 | GetHWND()); | |
430 | } | |
431 | ||
432 | // --------------------------------------------------------------------------- | |
433 | // global functions | |
434 | // --------------------------------------------------------------------------- | |
435 | ||
436 | // this is used in radiobox.cpp and slider95.cpp and should be removed as soon | |
437 | // as it is not needed there any more! | |
438 | // | |
439 | // Call this repeatedly for several wnds to find the overall size | |
440 | // of the widget. | |
441 | // Call it initially with wxDefaultCoord for all values in rect. | |
442 | // Keep calling for other widgets, and rect will be modified | |
443 | // to calculate largest bounding rectangle. | |
444 | void wxFindMaxSize(WXHWND wnd, RECT *rect) | |
445 | { | |
446 | int left = rect->left; | |
447 | int right = rect->right; | |
448 | int top = rect->top; | |
449 | int bottom = rect->bottom; | |
450 | ||
451 | GetWindowRect((HWND) wnd, rect); | |
452 | ||
453 | if (left < 0) | |
454 | return; | |
455 | ||
456 | if (left < rect->left) | |
457 | rect->left = left; | |
458 | ||
459 | if (right > rect->right) | |
460 | rect->right = right; | |
461 | ||
462 | if (top < rect->top) | |
463 | rect->top = top; | |
464 | ||
465 | if (bottom > rect->bottom) | |
466 | rect->bottom = bottom; | |
467 | } | |
468 | ||
469 | #endif // wxUSE_CONTROLS |