user32 revert lite ;-P
[reactos.git] / reactos / dll / win32 / user32 / controls / button.c
1 /* File: button.c -- Button type widgets
2 *
3 * Copyright (C) 1993 Johannes Ruscheinski
4 * Copyright (C) 1993 David Metcalfe
5 * Copyright (C) 1994 Alexandre Julliard
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 *
21 * NOTES
22 *
23 * This code was audited for completeness against the documented features
24 * of Comctl32.dll version 6.0 on Oct. 3, 2004, by Dimitrie O. Paun.
25 *
26 * Unless otherwise noted, we believe this code to be complete, as per
27 * the specification mentioned above.
28 * If you discover missing features, or bugs, please note them below.
29 *
30 * TODO
31 * Styles
32 * - BS_NOTIFY: is it complete?
33 * - BS_RIGHTBUTTON: same as BS_LEFTTEXT
34 * - BS_TYPEMASK
35 *
36 * Messages
37 * - WM_CHAR: Checks a (manual or automatic) check box on '+' or '=', clears it on '-' key.
38 * - WM_SETFOCUS: For (manual or automatic) radio buttons, send the parent window BN_CLICKED
39 * - WM_NCCREATE: Turns any BS_OWNERDRAW button into a BS_PUSHBUTTON button.
40 * - WM_SYSKEYUP
41 * - BCM_GETIDEALSIZE
42 * - BCM_GETIMAGELIST
43 * - BCM_GETTEXTMARGIN
44 * - BCM_SETIMAGELIST
45 * - BCM_SETTEXTMARGIN
46 *
47 * Notifications
48 * - BCN_HOTITEMCHANGE
49 * - BN_DISABLE
50 * - BN_PUSHED/BN_HILITE
51 * + BN_KILLFOCUS: is it OK?
52 * - BN_PAINT
53 * + BN_SETFOCUS: is it OK?
54 * - BN_UNPUSHED/BN_UNHILITE
55 * - NM_CUSTOMDRAW
56 *
57 * Structures/Macros/Definitions
58 * - BUTTON_IMAGELIST
59 * - NMBCHOTITEM
60 * - Button_GetIdealSize
61 * - Button_GetImageList
62 * - Button_GetTextMargin
63 * - Button_SetImageList
64 * - Button_SetTextMargin
65 */
66 #include <user32.h>
67
68 #include <wine/debug.h>
69 WINE_DEFAULT_DEBUG_CHANNEL(button);
70
71 /* GetWindowLong offsets for window extra information */
72 #define STATE_GWL_OFFSET 0
73 #define HFONT_GWL_OFFSET (sizeof(LONG))
74 #define HIMAGE_GWL_OFFSET (HFONT_GWL_OFFSET+sizeof(HFONT))
75 #define UISTATE_GWL_OFFSET (HIMAGE_GWL_OFFSET+sizeof(HFONT))
76 #define NB_EXTRA_BYTES (UISTATE_GWL_OFFSET+sizeof(LONG))
77
78 /* Button state values */
79 #define BUTTON_UNCHECKED 0x00
80 #define BUTTON_CHECKED 0x01
81 #define BUTTON_3STATE 0x02
82 #define BUTTON_HIGHLIGHTED 0x04
83 #define BUTTON_HASFOCUS 0x08
84 #define BUTTON_NSTATES 0x0F
85 /* undocumented flags */
86 #define BUTTON_BTNPRESSED 0x40
87 #define BUTTON_UNKNOWN2 0x20
88 #define BUTTON_UNKNOWN3 0x10
89
90 #define BUTTON_NOTIFY_PARENT(hWnd, code) \
91 do { /* Notify parent which has created this button control */ \
92 TRACE("notification " #code " sent to hwnd=%p\n", GetParent(hWnd)); \
93 SendMessageW(GetParent(hWnd), WM_COMMAND, \
94 MAKEWPARAM(GetWindowLongPtrW((hWnd),GWLP_ID), (code)), \
95 (LPARAM)(hWnd)); \
96 } while(0)
97
98 static UINT BUTTON_CalcLabelRect( HWND hwnd, HDC hdc, RECT *rc );
99 static void PB_Paint( HWND hwnd, HDC hDC, UINT action );
100 static void CB_Paint( HWND hwnd, HDC hDC, UINT action );
101 static void GB_Paint( HWND hwnd, HDC hDC, UINT action );
102 static void UB_Paint( HWND hwnd, HDC hDC, UINT action );
103 static void OB_Paint( HWND hwnd, HDC hDC, UINT action );
104 static void BUTTON_CheckAutoRadioButton( HWND hwnd );
105 static LRESULT WINAPI ButtonWndProcA( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
106 static LRESULT WINAPI ButtonWndProcW( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
107
108 #define MAX_BTN_TYPE 12
109
110 static const WORD maxCheckState[MAX_BTN_TYPE] =
111 {
112 BUTTON_UNCHECKED, /* BS_PUSHBUTTON */
113 BUTTON_UNCHECKED, /* BS_DEFPUSHBUTTON */
114 BUTTON_CHECKED, /* BS_CHECKBOX */
115 BUTTON_CHECKED, /* BS_AUTOCHECKBOX */
116 BUTTON_CHECKED, /* BS_RADIOBUTTON */
117 BUTTON_3STATE, /* BS_3STATE */
118 BUTTON_3STATE, /* BS_AUTO3STATE */
119 BUTTON_UNCHECKED, /* BS_GROUPBOX */
120 BUTTON_UNCHECKED, /* BS_USERBUTTON */
121 BUTTON_CHECKED, /* BS_AUTORADIOBUTTON */
122 BUTTON_UNCHECKED, /* Not defined */
123 BUTTON_UNCHECKED /* BS_OWNERDRAW */
124 };
125
126 typedef void (*pfPaint)( HWND hwnd, HDC hdc, UINT action );
127
128 static const pfPaint btnPaintFunc[MAX_BTN_TYPE] =
129 {
130 PB_Paint, /* BS_PUSHBUTTON */
131 PB_Paint, /* BS_DEFPUSHBUTTON */
132 CB_Paint, /* BS_CHECKBOX */
133 CB_Paint, /* BS_AUTOCHECKBOX */
134 CB_Paint, /* BS_RADIOBUTTON */
135 CB_Paint, /* BS_3STATE */
136 CB_Paint, /* BS_AUTO3STATE */
137 GB_Paint, /* BS_GROUPBOX */
138 UB_Paint, /* BS_USERBUTTON */
139 CB_Paint, /* BS_AUTORADIOBUTTON */
140 NULL, /* Not defined */
141 OB_Paint /* BS_OWNERDRAW */
142 };
143
144 static HBITMAP hbitmapCheckBoxes = 0;
145 static WORD checkBoxWidth = 0, checkBoxHeight = 0;
146
147
148 /*********************************************************************
149 * button class descriptor
150 */
151 const struct builtin_class_descr BUTTON_builtin_class =
152 {
153 #ifdef __REACTOS__
154 L"Button", /* name */
155 CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
156 ButtonWndProcW, /* procW */
157 ButtonWndProcA, /* procA */
158 NB_EXTRA_BYTES, /* extra */
159 (LPWSTR)IDC_ARROW, /* cursor */
160 0 /* brush */
161 #else
162 "Button", /* name */
163 CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
164 ButtonWndProcA, /* procA */
165 ButtonWndProcW, /* procW */
166 NB_EXTRA_BYTES, /* extra */
167 IDC_ARROW, /* cursor */
168 0 /* brush */
169 #endif
170 };
171
172
173 __inline static LONG get_button_state( HWND hwnd )
174 {
175 return GetWindowLongW( hwnd, STATE_GWL_OFFSET );
176 }
177
178 __inline static void set_button_state( HWND hwnd, LONG state )
179 {
180 SetWindowLongW( hwnd, STATE_GWL_OFFSET, state );
181 }
182
183 static __inline void set_ui_state( HWND hwnd, LONG flags )
184 {
185 SetWindowLongW( hwnd, UISTATE_GWL_OFFSET, flags );
186 }
187
188 static __inline LONG get_ui_state( HWND hwnd )
189 {
190 return GetWindowLongPtrW( hwnd, UISTATE_GWL_OFFSET );
191 }
192
193 __inline static HFONT get_button_font( HWND hwnd )
194 {
195 return (HFONT)GetWindowLongPtrW( hwnd, HFONT_GWL_OFFSET );
196 }
197
198 __inline static void set_button_font( HWND hwnd, HFONT font )
199 {
200 SetWindowLongPtrW( hwnd, HFONT_GWL_OFFSET, (LONG_PTR)font );
201 }
202
203 __inline static UINT get_button_type( LONG window_style )
204 {
205 return (window_style & 0x0f);
206 }
207
208 /* paint a button of any type */
209 __inline static void paint_button( HWND hwnd, LONG style, UINT action )
210 {
211 if (btnPaintFunc[style] && IsWindowVisible(hwnd))
212 {
213 HDC hdc = GetDC( hwnd );
214 btnPaintFunc[style]( hwnd, hdc, action );
215 ReleaseDC( hwnd, hdc );
216 }
217 }
218
219 /* retrieve the button text; returned buffer must be freed by caller */
220 __inline static WCHAR *get_button_text( HWND hwnd )
221 {
222 INT len = 512;
223 WCHAR *buffer = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) );
224 if (buffer) InternalGetWindowText( hwnd, buffer, len + 1 );
225 return buffer;
226 }
227
228 /* Retrieve the UI state for the control */
229 static BOOL button_update_uistate(HWND hwnd, BOOL unicode)
230 {
231 LONG flags, prevflags;
232
233 if (unicode)
234 flags = DefWindowProcW(hwnd, WM_QUERYUISTATE, 0, 0);
235 else
236 flags = DefWindowProcA(hwnd, WM_QUERYUISTATE, 0, 0);
237
238 prevflags = get_ui_state(hwnd);
239
240 if (prevflags != flags)
241 {
242 set_ui_state(hwnd, flags);
243 return TRUE;
244 }
245
246 return FALSE;
247 }
248
249 /***********************************************************************
250 * ButtonWndProc_common
251 */
252 static LRESULT WINAPI ButtonWndProc_common(HWND hWnd, UINT uMsg,
253 WPARAM wParam, LPARAM lParam, BOOL unicode )
254 {
255 RECT rect;
256 POINT pt;
257 LONG style = GetWindowLongW( hWnd, GWL_STYLE );
258 UINT btn_type = get_button_type( style );
259 LONG state;
260 HANDLE oldHbitmap;
261
262 pt.x = (short)LOWORD(lParam);
263 pt.y = (short)HIWORD(lParam);
264
265 switch (uMsg)
266 {
267 case WM_GETDLGCODE:
268 switch(btn_type)
269 {
270 case BS_USERBUTTON:
271 case BS_PUSHBUTTON: return DLGC_BUTTON | DLGC_UNDEFPUSHBUTTON;
272 case BS_DEFPUSHBUTTON: return DLGC_BUTTON | DLGC_DEFPUSHBUTTON;
273 case BS_RADIOBUTTON:
274 case BS_AUTORADIOBUTTON: return DLGC_BUTTON | DLGC_RADIOBUTTON;
275 case BS_GROUPBOX: return DLGC_STATIC;
276 default: return DLGC_BUTTON;
277 }
278
279 case WM_ENABLE:
280 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
281 break;
282
283 case WM_CREATE:
284 if (!hbitmapCheckBoxes)
285 {
286 BITMAP bmp;
287 hbitmapCheckBoxes = LoadBitmapW(0, MAKEINTRESOURCEW(OBM_CHECKBOXES));
288 GetObjectW( hbitmapCheckBoxes, sizeof(bmp), &bmp );
289 checkBoxWidth = bmp.bmWidth / 4;
290 checkBoxHeight = bmp.bmHeight / 3;
291 }
292 if (btn_type >= MAX_BTN_TYPE)
293 return -1; /* abort */
294 set_button_state( hWnd, BUTTON_UNCHECKED );
295 button_update_uistate( hWnd, unicode );
296 return 0;
297
298 case WM_ERASEBKGND:
299 if (btn_type == BS_OWNERDRAW)
300 {
301 HDC hdc = (HDC)wParam;
302 RECT rc;
303 HBRUSH hBrush;
304 HWND parent = GetParent(hWnd);
305 if (!parent) parent = hWnd;
306 hBrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORBTN, (WPARAM)hdc, (LPARAM)hWnd);
307 if (!hBrush) /* did the app forget to call defwindowproc ? */
308 hBrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORBTN,
309 (WPARAM)hdc, (LPARAM)hWnd);
310 GetClientRect(hWnd, &rc);
311 FillRect(hdc, &rc, hBrush);
312 }
313 return 1;
314
315 case WM_PRINTCLIENT:
316 case WM_PAINT:
317 if (btnPaintFunc[btn_type])
318 {
319 PAINTSTRUCT ps;
320 HDC hdc = wParam ? (HDC)wParam : BeginPaint( hWnd, &ps );
321 int nOldMode = SetBkMode( hdc, OPAQUE );
322 (btnPaintFunc[btn_type])( hWnd, hdc, ODA_DRAWENTIRE );
323 SetBkMode(hdc, nOldMode); /* reset painting mode */
324 if( !wParam ) EndPaint( hWnd, &ps );
325 }
326 break;
327
328 case WM_KEYDOWN:
329 if (wParam == VK_SPACE)
330 {
331 SendMessageW( hWnd, BM_SETSTATE, TRUE, 0 );
332 set_button_state( hWnd, get_button_state( hWnd ) | BUTTON_BTNPRESSED );
333 }
334 break;
335
336 case WM_LBUTTONDBLCLK:
337 if(style & BS_NOTIFY ||
338 btn_type == BS_RADIOBUTTON ||
339 btn_type == BS_USERBUTTON ||
340 btn_type == BS_OWNERDRAW)
341 {
342 BUTTON_NOTIFY_PARENT(hWnd, BN_DOUBLECLICKED);
343 break;
344 }
345 /* fall through */
346 case WM_LBUTTONDOWN:
347 SetCapture( hWnd );
348 SetFocus( hWnd );
349 set_button_state( hWnd, get_button_state( hWnd ) | BUTTON_BTNPRESSED );
350 SendMessageW( hWnd, BM_SETSTATE, TRUE, 0 );
351 break;
352
353 case WM_KEYUP:
354 if (wParam != VK_SPACE)
355 break;
356 /* fall through */
357 case WM_LBUTTONUP:
358 state = get_button_state( hWnd );
359 if (!(state & BUTTON_BTNPRESSED)) break;
360 state &= BUTTON_NSTATES;
361 set_button_state( hWnd, state );
362 if (!(state & BUTTON_HIGHLIGHTED))
363 {
364 ReleaseCapture();
365 break;
366 }
367 SendMessageW( hWnd, BM_SETSTATE, FALSE, 0 );
368 ReleaseCapture();
369 GetClientRect( hWnd, &rect );
370 if (uMsg == WM_KEYUP || PtInRect( &rect, pt ))
371 {
372 state = get_button_state( hWnd );
373 switch(btn_type)
374 {
375 case BS_AUTOCHECKBOX:
376 SendMessageW( hWnd, BM_SETCHECK, !(state & BUTTON_CHECKED), 0 );
377 break;
378 case BS_AUTORADIOBUTTON:
379 SendMessageW( hWnd, BM_SETCHECK, TRUE, 0 );
380 break;
381 case BS_AUTO3STATE:
382 SendMessageW( hWnd, BM_SETCHECK,
383 (state & BUTTON_3STATE) ? 0 : ((state & 3) + 1), 0 );
384 break;
385 }
386 BUTTON_NOTIFY_PARENT(hWnd, BN_CLICKED);
387 }
388 break;
389
390 case WM_CAPTURECHANGED:
391 TRACE("WM_CAPTURECHANGED %p\n", hWnd);
392 state = get_button_state( hWnd );
393 if (state & BUTTON_BTNPRESSED)
394 {
395 state &= BUTTON_NSTATES;
396 set_button_state( hWnd, state );
397 if (state & BUTTON_HIGHLIGHTED) SendMessageW( hWnd, BM_SETSTATE, FALSE, 0 );
398 }
399 break;
400
401 case WM_MOUSEMOVE:
402 if ((wParam & MK_LBUTTON) && GetCapture() == hWnd)
403 {
404 GetClientRect( hWnd, &rect );
405 SendMessageW( hWnd, BM_SETSTATE, PtInRect(&rect, pt), 0 );
406 }
407 break;
408
409 case WM_SETTEXT:
410 {
411 /* Clear an old text here as Windows does */
412 HDC hdc = GetDC(hWnd);
413 HBRUSH hbrush;
414 RECT client, rc;
415 HWND parent = GetParent(hWnd);
416
417 if (!parent) parent = hWnd;
418 hbrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORSTATIC,
419 (WPARAM)hdc, (LPARAM)hWnd);
420 if (!hbrush) /* did the app forget to call DefWindowProc ? */
421 hbrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORSTATIC,
422 (WPARAM)hdc, (LPARAM)hWnd);
423
424 GetClientRect(hWnd, &client);
425 rc = client;
426 BUTTON_CalcLabelRect(hWnd, hdc, &rc);
427 /* Clip by client rect bounds */
428 if (rc.right > client.right) rc.right = client.right;
429 if (rc.bottom > client.bottom) rc.bottom = client.bottom;
430 FillRect(hdc, &rc, hbrush);
431 ReleaseDC(hWnd, hdc);
432
433 if (unicode) DefWindowProcW( hWnd, WM_SETTEXT, wParam, lParam );
434 else DefWindowProcA( hWnd, WM_SETTEXT, wParam, lParam );
435 if (btn_type == BS_GROUPBOX) /* Yes, only for BS_GROUPBOX */
436 InvalidateRect( hWnd, NULL, TRUE );
437 else
438 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
439 return 1; /* success. FIXME: check text length */
440 }
441
442 case WM_SETFONT:
443 set_button_font( hWnd, (HFONT)wParam );
444 if (lParam) paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
445 break;
446
447 case WM_GETFONT:
448 return (LRESULT)get_button_font( hWnd );
449
450 case WM_SETFOCUS:
451 TRACE("WM_SETFOCUS %p\n",hWnd);
452 set_button_state( hWnd, get_button_state(hWnd) | BUTTON_HASFOCUS );
453 paint_button( hWnd, btn_type, ODA_FOCUS );
454 if (style & BS_NOTIFY)
455 BUTTON_NOTIFY_PARENT(hWnd, BN_SETFOCUS);
456 break;
457
458 case WM_KILLFOCUS:
459 TRACE("WM_KILLFOCUS %p\n",hWnd);
460 state = get_button_state( hWnd );
461 set_button_state( hWnd, state & ~BUTTON_HASFOCUS );
462 paint_button( hWnd, btn_type, ODA_FOCUS );
463
464 if ((state & BUTTON_BTNPRESSED) && GetCapture() == hWnd)
465 ReleaseCapture();
466 if (style & BS_NOTIFY)
467 BUTTON_NOTIFY_PARENT(hWnd, BN_KILLFOCUS);
468
469 break;
470
471 case WM_SYSCOLORCHANGE:
472 InvalidateRect( hWnd, NULL, FALSE );
473 break;
474
475 #ifndef __REACTOS__
476 case BM_SETSTYLE16:
477 #endif
478 case BM_SETSTYLE:
479 if ((wParam & 0x0f) >= MAX_BTN_TYPE) break;
480 btn_type = wParam & 0x0f;
481 style = (style & ~0x0f) | btn_type;
482 SetWindowLongW( hWnd, GWL_STYLE, style );
483
484 /* Only redraw if lParam flag is set.*/
485 if (lParam)
486 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
487
488 break;
489
490 case BM_CLICK:
491 SendMessageW( hWnd, WM_LBUTTONDOWN, 0, 0 );
492 SendMessageW( hWnd, WM_LBUTTONUP, 0, 0 );
493 break;
494
495 case BM_SETIMAGE:
496 /* Check that image format matches button style */
497 switch (style & (BS_BITMAP|BS_ICON))
498 {
499 case BS_BITMAP:
500 if (wParam != IMAGE_BITMAP) return 0;
501 break;
502 case BS_ICON:
503 if (wParam != IMAGE_ICON) return 0;
504 break;
505 default:
506 return 0;
507 }
508 oldHbitmap = (HBITMAP)SetWindowLongPtrW( hWnd, HIMAGE_GWL_OFFSET, lParam );
509 InvalidateRect( hWnd, NULL, FALSE );
510 return (LRESULT)oldHbitmap;
511
512 case BM_GETIMAGE:
513 return GetWindowLongPtrW( hWnd, HIMAGE_GWL_OFFSET );
514
515 #ifndef __REACTOS__
516 case BM_GETCHECK16:
517 #endif
518 case BM_GETCHECK:
519 return get_button_state( hWnd ) & 3;
520
521 #ifndef __REACTOS__
522 case BM_SETCHECK16:
523 #endif
524 case BM_SETCHECK:
525 if (wParam > maxCheckState[btn_type]) wParam = maxCheckState[btn_type];
526 state = get_button_state( hWnd );
527 if ((btn_type == BS_RADIOBUTTON) || (btn_type == BS_AUTORADIOBUTTON))
528 {
529 if (wParam) style |= WS_TABSTOP;
530 else style &= ~WS_TABSTOP;
531 SetWindowLongW( hWnd, GWL_STYLE, style );
532 }
533 if ((state & 3) != wParam)
534 {
535 set_button_state( hWnd, (state & ~3) | wParam );
536 paint_button( hWnd, btn_type, ODA_SELECT );
537 }
538 if ((btn_type == BS_AUTORADIOBUTTON) && (wParam == BUTTON_CHECKED) && (style & WS_CHILD))
539 BUTTON_CheckAutoRadioButton( hWnd );
540 break;
541
542 #ifndef __REACTOS__
543 case BM_GETSTATE16:
544 #endif
545 case BM_GETSTATE:
546 return get_button_state( hWnd );
547
548 #ifndef __REACTOS__
549 case BM_SETSTATE16:
550 #endif
551 case BM_SETSTATE:
552 state = get_button_state( hWnd );
553 if (wParam)
554 {
555 if (state & BUTTON_HIGHLIGHTED) break;
556 set_button_state( hWnd, state | BUTTON_HIGHLIGHTED );
557 }
558 else
559 {
560 if (!(state & BUTTON_HIGHLIGHTED)) break;
561 set_button_state( hWnd, state & ~BUTTON_HIGHLIGHTED );
562 }
563 paint_button( hWnd, btn_type, ODA_SELECT );
564 break;
565
566 case WM_UPDATEUISTATE:
567 if (unicode)
568 DefWindowProcW(hWnd, uMsg, wParam, lParam);
569 else
570 DefWindowProcA(hWnd, uMsg, wParam, lParam);
571
572 if (button_update_uistate(hWnd, unicode))
573 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
574 break;
575
576 case WM_NCHITTEST:
577 if(btn_type == BS_GROUPBOX) return HTTRANSPARENT;
578 /* fall through */
579 default:
580 return unicode ? DefWindowProcW(hWnd, uMsg, wParam, lParam) :
581 DefWindowProcA(hWnd, uMsg, wParam, lParam);
582 }
583 return 0;
584 }
585
586 /***********************************************************************
587 * ButtonWndProcW
588 * The button window procedure. This is just a wrapper which locks
589 * the passed HWND and calls the real window procedure (with a WND*
590 * pointer pointing to the locked windowstructure).
591 */
592 static LRESULT WINAPI ButtonWndProcW( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
593 {
594 if (!IsWindow( hWnd )) return 0;
595 return ButtonWndProc_common( hWnd, uMsg, wParam, lParam, TRUE );
596 }
597
598
599 /***********************************************************************
600 * ButtonWndProcA
601 */
602 static LRESULT WINAPI ButtonWndProcA( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
603 {
604 if (!IsWindow( hWnd )) return 0;
605 return ButtonWndProc_common( hWnd, uMsg, wParam, lParam, FALSE );
606 }
607
608
609 /**********************************************************************
610 * Convert button styles to flags used by DrawText.
611 * TODO: handle WS_EX_RIGHT extended style.
612 */
613 static UINT BUTTON_BStoDT(DWORD style)
614 {
615 UINT dtStyle = DT_NOCLIP; /* We use SelectClipRgn to limit output */
616
617 /* "Convert" pushlike buttons to pushbuttons */
618 if (style & BS_PUSHLIKE)
619 style &= ~0x0F;
620
621 if (!(style & BS_MULTILINE))
622 dtStyle |= DT_SINGLELINE;
623 else
624 dtStyle |= DT_WORDBREAK;
625
626 switch (style & BS_CENTER)
627 {
628 case BS_LEFT: /* DT_LEFT is 0 */ break;
629 case BS_RIGHT: dtStyle |= DT_RIGHT; break;
630 case BS_CENTER: dtStyle |= DT_CENTER; break;
631 default:
632 /* Pushbutton's text is centered by default */
633 if (get_button_type(style) <= BS_DEFPUSHBUTTON) dtStyle |= DT_CENTER;
634 /* all other flavours have left aligned text */
635 }
636
637 /* DrawText ignores vertical alignment for multiline text,
638 * but we use these flags to align label manualy.
639 */
640 if (get_button_type(style) != BS_GROUPBOX)
641 {
642 switch (style & BS_VCENTER)
643 {
644 case BS_TOP: /* DT_TOP is 0 */ break;
645 case BS_BOTTOM: dtStyle |= DT_BOTTOM; break;
646 case BS_VCENTER: /* fall through */
647 default: dtStyle |= DT_VCENTER; break;
648 }
649 }
650 else
651 /* GroupBox's text is always single line and is top aligned. */
652 dtStyle |= DT_SINGLELINE;
653
654 return dtStyle;
655 }
656
657 /**********************************************************************
658 * BUTTON_CalcLabelRect
659 *
660 * Calculates label's rectangle depending on button style.
661 *
662 * Returns flags to be passed to DrawText.
663 * Calculated rectangle doesn't take into account button state
664 * (pushed, etc.). If there is nothing to draw (no text/image) output
665 * rectangle is empty, and return value is (UINT)-1.
666 */
667 static UINT BUTTON_CalcLabelRect(HWND hwnd, HDC hdc, RECT *rc)
668 {
669 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
670 WCHAR *text;
671 ICONINFO iconInfo;
672 BITMAP bm;
673 UINT dtStyle = BUTTON_BStoDT(style);
674 RECT r = *rc;
675 INT n;
676
677 /* Calculate label rectangle according to label type */
678 switch (style & (BS_ICON|BS_BITMAP))
679 {
680 case BS_TEXT:
681 if (!(text = get_button_text( hwnd ))) goto empty_rect;
682 if (!text[0])
683 {
684 HeapFree( GetProcessHeap(), 0, text );
685 goto empty_rect;
686 }
687 DrawTextW(hdc, text, -1, &r, dtStyle | DT_CALCRECT);
688 HeapFree( GetProcessHeap(), 0, text );
689
690 if (get_ui_state( hwnd ) & UISF_HIDEACCEL)
691 dtStyle |= DT_HIDEPREFIX;
692 break;
693
694 case BS_ICON:
695 if (!GetIconInfo((HICON)GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET ), &iconInfo))
696 goto empty_rect;
697
698 GetObjectW (iconInfo.hbmColor, sizeof(BITMAP), &bm);
699
700 r.right = r.left + bm.bmWidth;
701 r.bottom = r.top + bm.bmHeight;
702
703 DeleteObject(iconInfo.hbmColor);
704 DeleteObject(iconInfo.hbmMask);
705 break;
706
707 case BS_BITMAP:
708 if (!GetObjectW( (HANDLE)GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET ), sizeof(BITMAP), &bm))
709 goto empty_rect;
710
711 r.right = r.left + bm.bmWidth;
712 r.bottom = r.top + bm.bmHeight;
713 break;
714
715 default:
716 empty_rect:
717 rc->right = r.left;
718 rc->bottom = r.top;
719 return (UINT)(LONG)-1;
720 }
721
722 /* Position label inside bounding rectangle according to
723 * alignment flags. (calculated rect is always left-top aligned).
724 * If label is aligned to any side - shift label in opposite
725 * direction to leave extra space for focus rectangle.
726 */
727 switch (dtStyle & (DT_CENTER|DT_RIGHT))
728 {
729 case DT_LEFT: r.left++; r.right++; break;
730 case DT_CENTER: n = r.right - r.left;
731 r.left = rc->left + ((rc->right - rc->left) - n) / 2;
732 r.right = r.left + n; break;
733 case DT_RIGHT: n = r.right - r.left;
734 r.right = rc->right - 1;
735 r.left = r.right - n;
736 break;
737 }
738
739 switch (dtStyle & (DT_VCENTER|DT_BOTTOM))
740 {
741 case DT_TOP: r.top++; r.bottom++; break;
742 case DT_VCENTER: n = r.bottom - r.top;
743 r.top = rc->top + ((rc->bottom - rc->top) - n) / 2;
744 r.bottom = r.top + n; break;
745 case DT_BOTTOM: n = r.bottom - r.top;
746 r.bottom = rc->bottom - 1;
747 r.top = r.bottom - n;
748 break;
749 }
750
751 *rc = r;
752 return dtStyle;
753 }
754
755
756 /**********************************************************************
757 * BUTTON_DrawTextCallback
758 *
759 * Callback function used by DrawStateW function.
760 */
761 static BOOL CALLBACK BUTTON_DrawTextCallback(HDC hdc, LPARAM lp, WPARAM wp, int cx, int cy)
762 {
763 RECT rc;
764 rc.left = 0;
765 rc.top = 0;
766 rc.right = cx;
767 rc.bottom = cy;
768
769 DrawTextW(hdc, (LPCWSTR)lp, -1, &rc, (UINT)wp);
770 return TRUE;
771 }
772
773
774 /**********************************************************************
775 * BUTTON_DrawLabel
776 *
777 * Common function for drawing button label.
778 */
779 static void BUTTON_DrawLabel(HWND hwnd, HDC hdc, UINT dtFlags, RECT *rc)
780 {
781 DRAWSTATEPROC lpOutputProc = NULL;
782 LPARAM lp;
783 WPARAM wp = 0;
784 HBRUSH hbr = 0;
785 UINT flags = IsWindowEnabled(hwnd) ? DSS_NORMAL : DSS_DISABLED;
786 LONG state = get_button_state( hwnd );
787 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
788 WCHAR *text = NULL;
789
790 /* FIXME: To draw disabled label in Win31 look-and-feel, we probably
791 * must use DSS_MONO flag and COLOR_GRAYTEXT brush (or maybe DSS_UNION).
792 * I don't have Win31 on hand to verify that, so I leave it as is.
793 */
794
795 if ((style & BS_PUSHLIKE) && (state & BUTTON_3STATE))
796 {
797 hbr = GetSysColorBrush(COLOR_GRAYTEXT);
798 flags |= DSS_MONO;
799 }
800
801 switch (style & (BS_ICON|BS_BITMAP))
802 {
803 case BS_TEXT:
804 /* DST_COMPLEX -- is 0 */
805 lpOutputProc = BUTTON_DrawTextCallback;
806 if (!(text = get_button_text( hwnd ))) return;
807 lp = (LPARAM)text;
808 wp = (WPARAM)dtFlags;
809
810 if (dtFlags & DT_HIDEPREFIX)
811 flags |= DSS_HIDEPREFIX;
812 break;
813
814 case BS_ICON:
815 flags |= DST_ICON;
816 lp = GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET );
817 break;
818
819 case BS_BITMAP:
820 flags |= DST_BITMAP;
821 lp = GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET );
822 break;
823
824 default:
825 return;
826 }
827
828 DrawStateW(hdc, hbr, lpOutputProc, lp, wp, rc->left, rc->top,
829 rc->right - rc->left, rc->bottom - rc->top, flags);
830 HeapFree( GetProcessHeap(), 0, text );
831 }
832
833 /**********************************************************************
834 * Push Button Functions
835 */
836 static void PB_Paint( HWND hwnd, HDC hDC, UINT action )
837 {
838 RECT rc, focus_rect, r;
839 UINT dtFlags, uState;
840 HPEN hOldPen;
841 HBRUSH hOldBrush;
842 INT oldBkMode;
843 COLORREF oldTxtColor;
844 HFONT hFont;
845 LONG state = get_button_state( hwnd );
846 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
847 BOOL pushedState = (state & BUTTON_HIGHLIGHTED);
848 HWND parent;
849
850 GetClientRect( hwnd, &rc );
851
852 /* Send WM_CTLCOLOR to allow changing the font (the colors are fixed) */
853 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
854 parent = GetParent(hwnd);
855 if (!parent) parent = hwnd;
856 SendMessageW( parent, WM_CTLCOLORBTN, (WPARAM)hDC, (LPARAM)hwnd );
857 hOldPen = (HPEN)SelectObject(hDC, SYSCOLOR_GetPen(COLOR_WINDOWFRAME));
858 hOldBrush =(HBRUSH)SelectObject(hDC,GetSysColorBrush(COLOR_BTNFACE));
859 oldBkMode = SetBkMode(hDC, TRANSPARENT);
860
861 if (get_button_type(style) == BS_DEFPUSHBUTTON)
862 {
863 Rectangle(hDC, rc.left, rc.top, rc.right, rc.bottom);
864 InflateRect( &rc, -1, -1 );
865 }
866
867 uState = DFCS_BUTTONPUSH | DFCS_ADJUSTRECT;
868
869 if (style & BS_FLAT)
870 uState |= DFCS_MONO;
871 else if (pushedState)
872 {
873 if (get_button_type(style) == BS_DEFPUSHBUTTON )
874 uState |= DFCS_FLAT;
875 else
876 uState |= DFCS_PUSHED;
877 }
878
879 if (state & (BUTTON_CHECKED | BUTTON_3STATE))
880 uState |= DFCS_CHECKED;
881
882 DrawFrameControl( hDC, &rc, DFC_BUTTON, uState );
883
884 focus_rect = rc;
885
886 /* draw button label */
887 r = rc;
888 dtFlags = BUTTON_CalcLabelRect(hwnd, hDC, &r);
889
890 if (dtFlags == (UINT)-1L)
891 goto cleanup;
892
893 if (pushedState)
894 OffsetRect(&r, 1, 1);
895
896 IntersectClipRect(hDC, rc.left, rc.top, rc.right, rc.bottom);
897
898 oldTxtColor = SetTextColor( hDC, GetSysColor(COLOR_BTNTEXT) );
899
900 BUTTON_DrawLabel(hwnd, hDC, dtFlags, &r);
901
902 SetTextColor( hDC, oldTxtColor );
903
904 if (state & BUTTON_HASFOCUS)
905 {
906 if (!(get_ui_state(hwnd) & UISF_HIDEFOCUS))
907 {
908 InflateRect( &focus_rect, -1, -1 );
909 IntersectRect(&focus_rect, &focus_rect, &rc);
910 DrawFocusRect( hDC, &focus_rect );
911 }
912 }
913
914 cleanup:
915 SelectObject( hDC, hOldPen );
916 SelectObject( hDC, hOldBrush );
917 SetBkMode(hDC, oldBkMode);
918 }
919
920 /**********************************************************************
921 * Check Box & Radio Button Functions
922 */
923
924 static void CB_Paint( HWND hwnd, HDC hDC, UINT action )
925 {
926 RECT rbox, rtext, client;
927 HBRUSH hBrush;
928 int delta;
929 UINT dtFlags;
930 HFONT hFont;
931 LONG state = get_button_state( hwnd );
932 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
933 HWND parent;
934
935 if (style & BS_PUSHLIKE)
936 {
937 PB_Paint( hwnd, hDC, action );
938 return;
939 }
940
941 GetClientRect(hwnd, &client);
942 rbox = rtext = client;
943
944 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
945
946 parent = GetParent(hwnd);
947 if (!parent) parent = hwnd;
948 hBrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORSTATIC,
949 (WPARAM)hDC, (LPARAM)hwnd);
950 if (!hBrush) /* did the app forget to call defwindowproc ? */
951 hBrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORSTATIC,
952 (WPARAM)hDC, (LPARAM)hwnd );
953
954 if (style & BS_LEFTTEXT)
955 {
956 /* magic +4 is what CTL3D expects */
957
958 rtext.right -= checkBoxWidth + 4;
959 rbox.left = rbox.right - checkBoxWidth;
960 }
961 else
962 {
963 rtext.left += checkBoxWidth + 4;
964 rbox.right = checkBoxWidth;
965 }
966
967 /* Since WM_ERASEBKGND does nothing, first prepare background */
968 if (action == ODA_SELECT) FillRect( hDC, &rbox, hBrush );
969 if (action == ODA_DRAWENTIRE) FillRect( hDC, &client, hBrush );
970
971 /* Draw label */
972 client = rtext;
973 dtFlags = BUTTON_CalcLabelRect(hwnd, hDC, &rtext);
974
975 /* Only adjust rbox when rtext is valid */
976 if (dtFlags != (UINT)-1L)
977 {
978 rbox.top = rtext.top;
979 rbox.bottom = rtext.bottom;
980 }
981
982 /* Draw the check-box bitmap */
983 if (action == ODA_DRAWENTIRE || action == ODA_SELECT)
984 {
985 UINT flags;
986
987 if ((get_button_type(style) == BS_RADIOBUTTON) ||
988 (get_button_type(style) == BS_AUTORADIOBUTTON)) flags = DFCS_BUTTONRADIO;
989 else if (state & BUTTON_3STATE) flags = DFCS_BUTTON3STATE;
990 else flags = DFCS_BUTTONCHECK;
991
992 if (state & (BUTTON_CHECKED | BUTTON_3STATE)) flags |= DFCS_CHECKED;
993 if (state & BUTTON_HIGHLIGHTED) flags |= DFCS_PUSHED;
994
995 if (style & WS_DISABLED) flags |= DFCS_INACTIVE;
996
997 /* rbox must have the correct height */
998 delta = rbox.bottom - rbox.top - checkBoxHeight;
999
1000 if (style & BS_TOP) {
1001 if (delta > 0) {
1002 rbox.bottom = rbox.top + checkBoxHeight;
1003 } else {
1004 rbox.top -= -delta/2 + 1;
1005 rbox.bottom = rbox.top + checkBoxHeight;
1006 }
1007 } else if (style & BS_BOTTOM) {
1008 if (delta > 0) {
1009 rbox.top = rbox.bottom - checkBoxHeight;
1010 } else {
1011 rbox.bottom += -delta/2 + 1;
1012 rbox.top = rbox.bottom - checkBoxHeight;
1013 }
1014 } else { /* Default */
1015 if (delta > 0) {
1016 int ofs = (delta / 2);
1017 rbox.bottom -= ofs + 1;
1018 rbox.top = rbox.bottom - checkBoxHeight;
1019 } else if (delta < 0) {
1020 int ofs = (-delta / 2);
1021 rbox.top -= ofs + 1;
1022 rbox.bottom = rbox.top + checkBoxHeight;
1023 }
1024 }
1025
1026 DrawFrameControl( hDC, &rbox, DFC_BUTTON, flags );
1027 }
1028
1029 if (dtFlags == (UINT)-1L) /* Noting to draw */
1030 return;
1031
1032 IntersectClipRect(hDC, client.left, client.top, client.right, client.bottom);
1033
1034 if (action == ODA_DRAWENTIRE)
1035 BUTTON_DrawLabel(hwnd, hDC, dtFlags, &rtext);
1036
1037 /* ... and focus */
1038 if ((action == ODA_FOCUS) ||
1039 ((action == ODA_DRAWENTIRE) && (state & BUTTON_HASFOCUS)))
1040 {
1041 if (!(get_ui_state(hwnd) & UISF_HIDEFOCUS))
1042 {
1043 rtext.left--;
1044 rtext.right++;
1045 IntersectRect(&rtext, &rtext, &client);
1046 DrawFocusRect( hDC, &rtext );
1047 }
1048 }
1049 }
1050
1051
1052 /**********************************************************************
1053 * BUTTON_CheckAutoRadioButton
1054 *
1055 * hwnd is checked, uncheck every other auto radio button in group
1056 */
1057 static void BUTTON_CheckAutoRadioButton( HWND hwnd )
1058 {
1059 HWND parent, sibling, start;
1060
1061 parent = GetParent(hwnd);
1062 /* make sure that starting control is not disabled or invisible */
1063 start = sibling = GetNextDlgGroupItem( parent, hwnd, TRUE );
1064 do
1065 {
1066 if (!sibling) break;
1067 if ((hwnd != sibling) &&
1068 ((GetWindowLongW( sibling, GWL_STYLE) & 0x0f) == BS_AUTORADIOBUTTON))
1069 SendMessageW( sibling, BM_SETCHECK, BUTTON_UNCHECKED, 0 );
1070 sibling = GetNextDlgGroupItem( parent, sibling, FALSE );
1071 } while (sibling != start);
1072 }
1073
1074
1075 /**********************************************************************
1076 * Group Box Functions
1077 */
1078
1079 static void GB_Paint( HWND hwnd, HDC hDC, UINT action )
1080 {
1081 RECT rc, rcFrame;
1082 HBRUSH hbr;
1083 HFONT hFont;
1084 UINT dtFlags;
1085 TEXTMETRICW tm;
1086 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
1087 HWND parent;
1088
1089 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
1090 /* GroupBox acts like static control, so it sends CTLCOLORSTATIC */
1091 parent = GetParent(hwnd);
1092 if (!parent) parent = hwnd;
1093 hbr = (HBRUSH)SendMessageW(parent, WM_CTLCOLORSTATIC, (WPARAM)hDC, (LPARAM)hwnd);
1094 if (!hbr) /* did the app forget to call defwindowproc ? */
1095 hbr = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORSTATIC,
1096 (WPARAM)hDC, (LPARAM)hwnd);
1097
1098 GetClientRect( hwnd, &rc);
1099 rcFrame = rc;
1100
1101 GetTextMetricsW (hDC, &tm);
1102 rcFrame.top += (tm.tmHeight / 2) - 1;
1103 DrawEdge (hDC, &rcFrame, EDGE_ETCHED, BF_RECT | ((style & BS_FLAT) ? BF_FLAT : 0));
1104
1105 InflateRect(&rc, -7, 1);
1106 dtFlags = BUTTON_CalcLabelRect(hwnd, hDC, &rc);
1107
1108 if (dtFlags == (UINT)-1L)
1109 return;
1110
1111 /* Because buttons have CS_PARENTDC class style, there is a chance
1112 * that label will be drawn out of client rect.
1113 * But Windows doesn't clip label's rect, so do I.
1114 */
1115
1116 /* There is 1-pixel marging at the left, right, and bottom */
1117 rc.left--; rc.right++; rc.bottom++;
1118 FillRect(hDC, &rc, hbr);
1119 rc.left++; rc.right--; rc.bottom--;
1120
1121 BUTTON_DrawLabel(hwnd, hDC, dtFlags, &rc);
1122 }
1123
1124
1125 /**********************************************************************
1126 * User Button Functions
1127 */
1128
1129 static void UB_Paint( HWND hwnd, HDC hDC, UINT action )
1130 {
1131 RECT rc;
1132 HBRUSH hBrush;
1133 HFONT hFont;
1134 LONG state = get_button_state( hwnd );
1135 HWND parent;
1136
1137 if (action == ODA_SELECT) return;
1138
1139 GetClientRect( hwnd, &rc);
1140
1141 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
1142
1143 parent = GetParent(hwnd);
1144 if (!parent) parent = hwnd;
1145 hBrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORBTN, (WPARAM)hDC, (LPARAM)hwnd);
1146 if (!hBrush) /* did the app forget to call defwindowproc ? */
1147 hBrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORBTN,
1148 (WPARAM)hDC, (LPARAM)hwnd);
1149
1150 FillRect( hDC, &rc, hBrush );
1151 if ((action == ODA_FOCUS) ||
1152 ((action == ODA_DRAWENTIRE) && (state & BUTTON_HASFOCUS)))
1153 {
1154 if (!(get_ui_state(hwnd) & UISF_HIDEFOCUS))
1155 DrawFocusRect( hDC, &rc );
1156 }
1157 }
1158
1159
1160 /**********************************************************************
1161 * Ownerdrawn Button Functions
1162 */
1163
1164 static void OB_Paint( HWND hwnd, HDC hDC, UINT action )
1165 {
1166 LONG state = get_button_state( hwnd );
1167 DRAWITEMSTRUCT dis;
1168 HRGN clipRegion;
1169 RECT clipRect;
1170 LONG_PTR id = GetWindowLongPtrW( hwnd, GWLP_ID );
1171 HWND parent;
1172 HFONT hFont, hPrevFont = 0;
1173
1174 dis.CtlType = ODT_BUTTON;
1175 dis.CtlID = id;
1176 dis.itemID = 0;
1177 dis.itemAction = action;
1178 dis.itemState = ((state & BUTTON_HASFOCUS) ? ODS_FOCUS : 0) |
1179 ((state & BUTTON_HIGHLIGHTED) ? ODS_SELECTED : 0) |
1180 (IsWindowEnabled(hwnd) ? 0: ODS_DISABLED);
1181 dis.hwndItem = hwnd;
1182 dis.hDC = hDC;
1183 dis.itemData = 0;
1184 GetClientRect( hwnd, &dis.rcItem );
1185
1186 clipRegion = CreateRectRgnIndirect(&dis.rcItem);
1187 if (GetClipRgn(hDC, clipRegion) != 1)
1188 {
1189 DeleteObject(clipRegion);
1190 clipRegion=NULL;
1191 }
1192 clipRect = dis.rcItem;
1193 DPtoLP(hDC, (LPPOINT) &clipRect, 2);
1194 IntersectClipRect(hDC, clipRect.left, clipRect.top, clipRect.right, clipRect.bottom);
1195
1196 if ((hFont = get_button_font( hwnd ))) hPrevFont = SelectObject( hDC, hFont );
1197 parent = GetParent(hwnd);
1198 if (!parent) parent = hwnd;
1199 SendMessageW( parent, WM_CTLCOLORBTN, (WPARAM)hDC, (LPARAM)hwnd );
1200 SendMessageW( GetParent(hwnd), WM_DRAWITEM, id, (LPARAM)&dis );
1201 if (hPrevFont) SelectObject(hDC, hPrevFont);
1202 SelectClipRgn(hDC, clipRegion);
1203 }