sync user32 button and static to wine 1.1.22
[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 static const WCHAR buttonW[] = {'B','u','t','t','o','n',0};
152 const struct builtin_class_descr BUTTON_builtin_class =
153 {
154 buttonW, /* name */
155 CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
156 ButtonWndProcA, /* procA */
157 ButtonWndProcW, /* procW */
158 NB_EXTRA_BYTES, /* extra */
159 IDC_ARROW, /* cursor */
160 0 /* brush */
161 };
162
163
164 static inline LONG get_button_state( HWND hwnd )
165 {
166 return GetWindowLongPtrW( hwnd, STATE_GWL_OFFSET );
167 }
168
169 static inline void set_button_state( HWND hwnd, LONG state )
170 {
171 SetWindowLongPtrW( hwnd, STATE_GWL_OFFSET, state );
172 }
173
174 static __inline void set_ui_state( HWND hwnd, LONG flags )
175 {
176 SetWindowLongPtrW( hwnd, UISTATE_GWL_OFFSET, flags );
177 }
178
179 static __inline LONG get_ui_state( HWND hwnd )
180 {
181 return GetWindowLongPtrW( hwnd, UISTATE_GWL_OFFSET );
182 }
183
184 __inline static HFONT get_button_font( HWND hwnd )
185 {
186 return (HFONT)GetWindowLongPtrW( hwnd, HFONT_GWL_OFFSET );
187 }
188
189 static inline void set_button_font( HWND hwnd, HFONT font )
190 {
191 SetWindowLongPtrW( hwnd, HFONT_GWL_OFFSET, (LONG_PTR)font );
192 }
193
194 static inline UINT get_button_type( LONG window_style )
195 {
196 return (window_style & 0x0f);
197 }
198
199 /* paint a button of any type */
200 static inline void paint_button( HWND hwnd, LONG style, UINT action )
201 {
202 if (btnPaintFunc[style] && IsWindowVisible(hwnd))
203 {
204 HDC hdc = GetDC( hwnd );
205 btnPaintFunc[style]( hwnd, hdc, action );
206 ReleaseDC( hwnd, hdc );
207 }
208 }
209
210 /* retrieve the button text; returned buffer must be freed by caller */
211 static inline WCHAR *get_button_text( HWND hwnd )
212 {
213 INT len = 512;
214 WCHAR *buffer = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) );
215 if (buffer) InternalGetWindowText( hwnd, buffer, len + 1 );
216 return buffer;
217 }
218
219 static void setup_clipping( HWND hwnd, HDC hdc )
220 {
221 RECT rc;
222
223 GetClientRect( hwnd, &rc );
224 DPtoLP( hdc, (POINT *)&rc, 2 );
225 IntersectClipRect( hdc, rc.left, rc.top, rc.right, rc.bottom );
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 ButtonWndProc_common(HWND hWnd, UINT uMsg,
253 WPARAM wParam, LPARAM lParam, BOOL unicode )
254 {
255 RECT rect;
256 POINT pt;
257 LONG style = GetWindowLongPtrW( 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 SetCapture( hWnd );
334 }
335 break;
336
337 case WM_LBUTTONDBLCLK:
338 if(style & BS_NOTIFY ||
339 btn_type == BS_RADIOBUTTON ||
340 btn_type == BS_USERBUTTON ||
341 btn_type == BS_OWNERDRAW)
342 {
343 BUTTON_NOTIFY_PARENT(hWnd, BN_DOUBLECLICKED);
344 break;
345 }
346 /* fall through */
347 case WM_LBUTTONDOWN:
348 SetCapture( hWnd );
349 SetFocus( hWnd );
350 set_button_state( hWnd, get_button_state( hWnd ) | BUTTON_BTNPRESSED );
351 SendMessageW( hWnd, BM_SETSTATE, TRUE, 0 );
352 break;
353
354 case WM_KEYUP:
355 if (wParam != VK_SPACE)
356 break;
357 /* fall through */
358 case WM_LBUTTONUP:
359 state = get_button_state( hWnd );
360 if (!(state & BUTTON_BTNPRESSED)) break;
361 state &= BUTTON_NSTATES;
362 set_button_state( hWnd, state );
363 if (!(state & BUTTON_HIGHLIGHTED))
364 {
365 ReleaseCapture();
366 break;
367 }
368 SendMessageW( hWnd, BM_SETSTATE, FALSE, 0 );
369 ReleaseCapture();
370 GetClientRect( hWnd, &rect );
371 if (uMsg == WM_KEYUP || PtInRect( &rect, pt ))
372 {
373 state = get_button_state( hWnd );
374 switch(btn_type)
375 {
376 case BS_AUTOCHECKBOX:
377 SendMessageW( hWnd, BM_SETCHECK, !(state & BUTTON_CHECKED), 0 );
378 break;
379 case BS_AUTORADIOBUTTON:
380 SendMessageW( hWnd, BM_SETCHECK, TRUE, 0 );
381 break;
382 case BS_AUTO3STATE:
383 SendMessageW( hWnd, BM_SETCHECK,
384 (state & BUTTON_3STATE) ? 0 : ((state & 3) + 1), 0 );
385 break;
386 }
387 BUTTON_NOTIFY_PARENT(hWnd, BN_CLICKED);
388 }
389 break;
390
391 case WM_CAPTURECHANGED:
392 TRACE("WM_CAPTURECHANGED %p\n", hWnd);
393 state = get_button_state( hWnd );
394 if (state & BUTTON_BTNPRESSED)
395 {
396 state &= BUTTON_NSTATES;
397 set_button_state( hWnd, state );
398 if (state & BUTTON_HIGHLIGHTED) SendMessageW( hWnd, BM_SETSTATE, FALSE, 0 );
399 }
400 break;
401
402 case WM_MOUSEMOVE:
403 if ((wParam & MK_LBUTTON) && GetCapture() == hWnd)
404 {
405 GetClientRect( hWnd, &rect );
406 SendMessageW( hWnd, BM_SETSTATE, PtInRect(&rect, pt), 0 );
407 }
408 break;
409
410 case WM_SETTEXT:
411 {
412 /* Clear an old text here as Windows does */
413 HDC hdc = GetDC(hWnd);
414 HBRUSH hbrush;
415 RECT client, rc;
416 HWND parent = GetParent(hWnd);
417
418 if (!parent) parent = hWnd;
419 hbrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORSTATIC,
420 (WPARAM)hdc, (LPARAM)hWnd);
421 if (!hbrush) /* did the app forget to call DefWindowProc ? */
422 hbrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORSTATIC,
423 (WPARAM)hdc, (LPARAM)hWnd);
424
425 GetClientRect(hWnd, &client);
426 rc = client;
427 BUTTON_CalcLabelRect(hWnd, hdc, &rc);
428 /* Clip by client rect bounds */
429 if (rc.right > client.right) rc.right = client.right;
430 if (rc.bottom > client.bottom) rc.bottom = client.bottom;
431 FillRect(hdc, &rc, hbrush);
432 ReleaseDC(hWnd, hdc);
433
434 if (unicode) DefWindowProcW( hWnd, WM_SETTEXT, wParam, lParam );
435 else DefWindowProcA( hWnd, WM_SETTEXT, wParam, lParam );
436 if (btn_type == BS_GROUPBOX) /* Yes, only for BS_GROUPBOX */
437 InvalidateRect( hWnd, NULL, TRUE );
438 else
439 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
440 return 1; /* success. FIXME: check text length */
441 }
442
443 case WM_SETFONT:
444 set_button_font( hWnd, (HFONT)wParam );
445 if (lParam) InvalidateRect(hWnd, NULL, TRUE);
446 break;
447
448 case WM_GETFONT:
449 return (LRESULT)get_button_font( hWnd );
450
451 case WM_SETFOCUS:
452 TRACE("WM_SETFOCUS %p\n",hWnd);
453 set_button_state( hWnd, get_button_state(hWnd) | BUTTON_HASFOCUS );
454 paint_button( hWnd, btn_type, ODA_FOCUS );
455 if (style & BS_NOTIFY)
456 BUTTON_NOTIFY_PARENT(hWnd, BN_SETFOCUS);
457 break;
458
459 case WM_KILLFOCUS:
460 TRACE("WM_KILLFOCUS %p\n",hWnd);
461 state = get_button_state( hWnd );
462 set_button_state( hWnd, state & ~BUTTON_HASFOCUS );
463 paint_button( hWnd, btn_type, ODA_FOCUS );
464
465 if ((state & BUTTON_BTNPRESSED) && GetCapture() == hWnd)
466 ReleaseCapture();
467 if (style & BS_NOTIFY)
468 BUTTON_NOTIFY_PARENT(hWnd, BN_KILLFOCUS);
469
470 break;
471
472 case WM_SYSCOLORCHANGE:
473 InvalidateRect( hWnd, NULL, FALSE );
474 break;
475
476 #ifndef __REACTOS__
477 case BM_SETSTYLE16:
478 #endif
479 case BM_SETSTYLE:
480 if ((wParam & 0x0f) >= MAX_BTN_TYPE) break;
481 btn_type = wParam & 0x0f;
482 style = (style & ~0x0f) | btn_type;
483 SetWindowLongPtrW( hWnd, GWL_STYLE, style );
484
485 /* Only redraw if lParam flag is set.*/
486 if (lParam)
487 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
488
489 break;
490
491 case BM_CLICK:
492 SendMessageW( hWnd, WM_LBUTTONDOWN, 0, 0 );
493 SendMessageW( hWnd, WM_LBUTTONUP, 0, 0 );
494 break;
495
496 case BM_SETIMAGE:
497 /* Check that image format matches button style */
498 switch (style & (BS_BITMAP|BS_ICON))
499 {
500 case BS_BITMAP:
501 if (wParam != IMAGE_BITMAP) return 0;
502 break;
503 case BS_ICON:
504 if (wParam != IMAGE_ICON) return 0;
505 break;
506 default:
507 return 0;
508 }
509 oldHbitmap = (HBITMAP)SetWindowLongPtrW( hWnd, HIMAGE_GWL_OFFSET, lParam );
510 InvalidateRect( hWnd, NULL, FALSE );
511 return (LRESULT)oldHbitmap;
512
513 case BM_GETIMAGE:
514 return GetWindowLongPtrW( hWnd, HIMAGE_GWL_OFFSET );
515
516 #ifndef __REACTOS__
517 case BM_GETCHECK16:
518 #endif
519 case BM_GETCHECK:
520 return get_button_state( hWnd ) & 3;
521
522 #ifndef __REACTOS__
523 case BM_SETCHECK16:
524 #endif
525 case BM_SETCHECK:
526 if (wParam > maxCheckState[btn_type]) wParam = maxCheckState[btn_type];
527 state = get_button_state( hWnd );
528 if ((btn_type == BS_RADIOBUTTON) || (btn_type == BS_AUTORADIOBUTTON))
529 {
530 if (wParam) style |= WS_TABSTOP;
531 else style &= ~WS_TABSTOP;
532 SetWindowLongPtrW( hWnd, GWL_STYLE, style );
533 }
534 if ((state & 3) != wParam)
535 {
536 set_button_state( hWnd, (state & ~3) | wParam );
537 paint_button( hWnd, btn_type, ODA_SELECT );
538 }
539 if ((btn_type == BS_AUTORADIOBUTTON) && (wParam == BUTTON_CHECKED) && (style & WS_CHILD))
540 BUTTON_CheckAutoRadioButton( hWnd );
541 break;
542
543 #ifndef __REACTOS__
544 case BM_GETSTATE16:
545 #endif
546 case BM_GETSTATE:
547 return get_button_state( hWnd );
548
549 #ifndef __REACTOS__
550 case BM_SETSTATE16:
551 #endif
552 case BM_SETSTATE:
553 state = get_button_state( hWnd );
554 if (wParam)
555 {
556 if (state & BUTTON_HIGHLIGHTED) break;
557 set_button_state( hWnd, state | BUTTON_HIGHLIGHTED );
558 }
559 else
560 {
561 if (!(state & BUTTON_HIGHLIGHTED)) break;
562 set_button_state( hWnd, state & ~BUTTON_HIGHLIGHTED );
563 }
564 paint_button( hWnd, btn_type, ODA_SELECT );
565 break;
566
567 case WM_UPDATEUISTATE:
568 if (unicode)
569 DefWindowProcW(hWnd, uMsg, wParam, lParam);
570 else
571 DefWindowProcA(hWnd, uMsg, wParam, lParam);
572
573 if (button_update_uistate(hWnd, unicode))
574 paint_button( hWnd, btn_type, ODA_DRAWENTIRE );
575 break;
576
577 case WM_NCHITTEST:
578 if(btn_type == BS_GROUPBOX) return HTTRANSPARENT;
579 /* fall through */
580 default:
581 return unicode ? DefWindowProcW(hWnd, uMsg, wParam, lParam) :
582 DefWindowProcA(hWnd, uMsg, wParam, lParam);
583 }
584 return 0;
585 }
586
587 /***********************************************************************
588 * ButtonWndProcW
589 * The button window procedure. This is just a wrapper which locks
590 * the passed HWND and calls the real window procedure (with a WND*
591 * pointer pointing to the locked windowstructure).
592 */
593 static LRESULT WINAPI ButtonWndProcW( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
594 {
595 if (!IsWindow( hWnd )) return 0;
596 return ButtonWndProc_common( hWnd, uMsg, wParam, lParam, TRUE );
597 }
598
599
600 /***********************************************************************
601 * ButtonWndProcA
602 */
603 static LRESULT WINAPI ButtonWndProcA( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
604 {
605 if (!IsWindow( hWnd )) return 0;
606 return ButtonWndProc_common( hWnd, uMsg, wParam, lParam, FALSE );
607 }
608
609
610 /**********************************************************************
611 * Convert button styles to flags used by DrawText.
612 */
613 static UINT BUTTON_BStoDT( DWORD style, DWORD ex_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 if (ex_style & WS_EX_RIGHT) dtStyle = DT_RIGHT | (dtStyle & ~(DT_LEFT | DT_CENTER));
638
639 /* DrawText ignores vertical alignment for multiline text,
640 * but we use these flags to align label manually.
641 */
642 if (get_button_type(style) != BS_GROUPBOX)
643 {
644 switch (style & BS_VCENTER)
645 {
646 case BS_TOP: /* DT_TOP is 0 */ break;
647 case BS_BOTTOM: dtStyle |= DT_BOTTOM; break;
648 case BS_VCENTER: /* fall through */
649 default: dtStyle |= DT_VCENTER; break;
650 }
651 }
652 else
653 /* GroupBox's text is always single line and is top aligned. */
654 dtStyle |= DT_SINGLELINE;
655
656 return dtStyle;
657 }
658
659 /**********************************************************************
660 * BUTTON_CalcLabelRect
661 *
662 * Calculates label's rectangle depending on button style.
663 *
664 * Returns flags to be passed to DrawText.
665 * Calculated rectangle doesn't take into account button state
666 * (pushed, etc.). If there is nothing to draw (no text/image) output
667 * rectangle is empty, and return value is (UINT)-1.
668 */
669 static UINT BUTTON_CalcLabelRect(HWND hwnd, HDC hdc, RECT *rc)
670 {
671 LONG style = GetWindowLongPtrW( hwnd, GWL_STYLE );
672 LONG ex_style = GetWindowLongPtrW( hwnd, GWL_EXSTYLE );
673 WCHAR *text;
674 ICONINFO iconInfo;
675 BITMAP bm;
676 UINT dtStyle = BUTTON_BStoDT( style, ex_style );
677 RECT r = *rc;
678 INT n;
679
680 /* Calculate label rectangle according to label type */
681 switch (style & (BS_ICON|BS_BITMAP))
682 {
683 case BS_TEXT:
684 if (!(text = get_button_text( hwnd ))) goto empty_rect;
685 if (!text[0])
686 {
687 HeapFree( GetProcessHeap(), 0, text );
688 goto empty_rect;
689 }
690 DrawTextW(hdc, text, -1, &r, dtStyle | DT_CALCRECT);
691 HeapFree( GetProcessHeap(), 0, text );
692
693 if (get_ui_state( hwnd ) & UISF_HIDEACCEL)
694 dtStyle |= DT_HIDEPREFIX;
695 break;
696
697 case BS_ICON:
698 if (!GetIconInfo((HICON)GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET ), &iconInfo))
699 goto empty_rect;
700
701 GetObjectW (iconInfo.hbmColor, sizeof(BITMAP), &bm);
702
703 r.right = r.left + bm.bmWidth;
704 r.bottom = r.top + bm.bmHeight;
705
706 DeleteObject(iconInfo.hbmColor);
707 DeleteObject(iconInfo.hbmMask);
708 break;
709
710 case BS_BITMAP:
711 if (!GetObjectW( (HANDLE)GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET ), sizeof(BITMAP), &bm))
712 goto empty_rect;
713
714 r.right = r.left + bm.bmWidth;
715 r.bottom = r.top + bm.bmHeight;
716 break;
717
718 default:
719 empty_rect:
720 rc->right = r.left;
721 rc->bottom = r.top;
722 return (UINT)-1;
723 }
724
725 /* Position label inside bounding rectangle according to
726 * alignment flags. (calculated rect is always left-top aligned).
727 * If label is aligned to any side - shift label in opposite
728 * direction to leave extra space for focus rectangle.
729 */
730 switch (dtStyle & (DT_CENTER|DT_RIGHT))
731 {
732 case DT_LEFT: r.left++; r.right++; break;
733 case DT_CENTER: n = r.right - r.left;
734 r.left = rc->left + ((rc->right - rc->left) - n) / 2;
735 r.right = r.left + n; break;
736 case DT_RIGHT: n = r.right - r.left;
737 r.right = rc->right - 1;
738 r.left = r.right - n;
739 break;
740 }
741
742 switch (dtStyle & (DT_VCENTER|DT_BOTTOM))
743 {
744 case DT_TOP: r.top++; r.bottom++; break;
745 case DT_VCENTER: n = r.bottom - r.top;
746 r.top = rc->top + ((rc->bottom - rc->top) - n) / 2;
747 r.bottom = r.top + n; break;
748 case DT_BOTTOM: n = r.bottom - r.top;
749 r.bottom = rc->bottom - 1;
750 r.top = r.bottom - n;
751 break;
752 }
753
754 *rc = r;
755 return dtStyle;
756 }
757
758
759 /**********************************************************************
760 * BUTTON_DrawTextCallback
761 *
762 * Callback function used by DrawStateW function.
763 */
764 static BOOL CALLBACK BUTTON_DrawTextCallback(HDC hdc, LPARAM lp, WPARAM wp, int cx, int cy)
765 {
766 RECT rc;
767 rc.left = 0;
768 rc.top = 0;
769 rc.right = cx;
770 rc.bottom = cy;
771
772 DrawTextW(hdc, (LPCWSTR)lp, -1, &rc, (UINT)wp);
773 return TRUE;
774 }
775
776
777 /**********************************************************************
778 * BUTTON_DrawLabel
779 *
780 * Common function for drawing button label.
781 */
782 static void BUTTON_DrawLabel(HWND hwnd, HDC hdc, UINT dtFlags, const RECT *rc)
783 {
784 DRAWSTATEPROC lpOutputProc = NULL;
785 LPARAM lp;
786 WPARAM wp = 0;
787 HBRUSH hbr = 0;
788 UINT flags = IsWindowEnabled(hwnd) ? DSS_NORMAL : DSS_DISABLED;
789 LONG state = get_button_state( hwnd );
790 LONG style = GetWindowLongPtrW( hwnd, GWL_STYLE );
791 WCHAR *text = NULL;
792
793 /* FIXME: To draw disabled label in Win31 look-and-feel, we probably
794 * must use DSS_MONO flag and COLOR_GRAYTEXT brush (or maybe DSS_UNION).
795 * I don't have Win31 on hand to verify that, so I leave it as is.
796 */
797
798 if ((style & BS_PUSHLIKE) && (state & BUTTON_3STATE))
799 {
800 hbr = GetSysColorBrush(COLOR_GRAYTEXT);
801 flags |= DSS_MONO;
802 }
803
804 switch (style & (BS_ICON|BS_BITMAP))
805 {
806 case BS_TEXT:
807 /* DST_COMPLEX -- is 0 */
808 lpOutputProc = BUTTON_DrawTextCallback;
809 if (!(text = get_button_text( hwnd ))) return;
810 lp = (LPARAM)text;
811 wp = (WPARAM)dtFlags;
812
813 if (dtFlags & DT_HIDEPREFIX)
814 flags |= DSS_HIDEPREFIX;
815 break;
816
817 case BS_ICON:
818 flags |= DST_ICON;
819 lp = GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET );
820 break;
821
822 case BS_BITMAP:
823 flags |= DST_BITMAP;
824 lp = GetWindowLongPtrW( hwnd, HIMAGE_GWL_OFFSET );
825 break;
826
827 default:
828 return;
829 }
830
831 DrawStateW(hdc, hbr, lpOutputProc, lp, wp, rc->left, rc->top,
832 rc->right - rc->left, rc->bottom - rc->top, flags);
833 HeapFree( GetProcessHeap(), 0, text );
834 }
835
836 /**********************************************************************
837 * Push Button Functions
838 */
839 static void PB_Paint( HWND hwnd, HDC hDC, UINT action )
840 {
841 RECT rc, focus_rect, r;
842 UINT dtFlags, uState;
843 HPEN hOldPen;
844 HBRUSH hOldBrush;
845 INT oldBkMode;
846 COLORREF oldTxtColor;
847 HFONT hFont;
848 LONG state = get_button_state( hwnd );
849 LONG style = GetWindowLongPtrW( hwnd, GWL_STYLE );
850 BOOL pushedState = (state & BUTTON_HIGHLIGHTED);
851 HWND parent;
852
853 GetClientRect( hwnd, &rc );
854
855 /* Send WM_CTLCOLOR to allow changing the font (the colors are fixed) */
856 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
857 parent = GetParent(hwnd);
858 if (!parent) parent = hwnd;
859 SendMessageW( parent, WM_CTLCOLORBTN, (WPARAM)hDC, (LPARAM)hwnd );
860
861 setup_clipping( hwnd, hDC );
862
863 hOldPen = SelectObject(hDC, SYSCOLOR_GetPen(COLOR_WINDOWFRAME));
864 hOldBrush = SelectObject(hDC,GetSysColorBrush(COLOR_BTNFACE));
865 oldBkMode = SetBkMode(hDC, TRANSPARENT);
866
867 if (get_button_type(style) == BS_DEFPUSHBUTTON)
868 {
869 Rectangle(hDC, rc.left, rc.top, rc.right, rc.bottom);
870 InflateRect( &rc, -1, -1 );
871 }
872
873 uState = DFCS_BUTTONPUSH | DFCS_ADJUSTRECT;
874
875 if (style & BS_FLAT)
876 uState |= DFCS_MONO;
877 else if (pushedState)
878 {
879 if (get_button_type(style) == BS_DEFPUSHBUTTON )
880 uState |= DFCS_FLAT;
881 else
882 uState |= DFCS_PUSHED;
883 }
884
885 if (state & (BUTTON_CHECKED | BUTTON_3STATE))
886 uState |= DFCS_CHECKED;
887
888 DrawFrameControl( hDC, &rc, DFC_BUTTON, uState );
889
890 focus_rect = rc;
891
892 /* draw button label */
893 r = rc;
894 dtFlags = BUTTON_CalcLabelRect(hwnd, hDC, &r);
895
896 if (dtFlags == (UINT)-1L)
897 goto cleanup;
898
899 if (pushedState)
900 OffsetRect(&r, 1, 1);
901
902 IntersectClipRect(hDC, rc.left, rc.top, rc.right, rc.bottom);
903
904 oldTxtColor = SetTextColor( hDC, GetSysColor(COLOR_BTNTEXT) );
905
906 BUTTON_DrawLabel(hwnd, hDC, dtFlags, &r);
907
908 SetTextColor( hDC, oldTxtColor );
909
910 if (state & BUTTON_HASFOCUS)
911 {
912 if (!(get_ui_state(hwnd) & UISF_HIDEFOCUS))
913 {
914 InflateRect( &focus_rect, -1, -1 );
915 IntersectRect(&focus_rect, &focus_rect, &rc);
916 DrawFocusRect( hDC, &focus_rect );
917 }
918 }
919
920 cleanup:
921 SelectObject( hDC, hOldPen );
922 SelectObject( hDC, hOldBrush );
923 SetBkMode(hDC, oldBkMode);
924 }
925
926 /**********************************************************************
927 * Check Box & Radio Button Functions
928 */
929
930 static void CB_Paint( HWND hwnd, HDC hDC, UINT action )
931 {
932 RECT rbox, rtext, client;
933 HBRUSH hBrush;
934 int delta;
935 UINT dtFlags;
936 HFONT hFont;
937 LONG state = get_button_state( hwnd );
938 LONG style = GetWindowLongPtrW( hwnd, GWL_STYLE );
939 HWND parent;
940
941 if (style & BS_PUSHLIKE)
942 {
943 PB_Paint( hwnd, hDC, action );
944 return;
945 }
946
947 GetClientRect(hwnd, &client);
948 rbox = rtext = client;
949
950 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
951
952 parent = GetParent(hwnd);
953 if (!parent) parent = hwnd;
954 hBrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORSTATIC,
955 (WPARAM)hDC, (LPARAM)hwnd);
956 if (!hBrush) /* did the app forget to call defwindowproc ? */
957 hBrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORSTATIC,
958 (WPARAM)hDC, (LPARAM)hwnd );
959 setup_clipping( hwnd, hDC );
960
961 if (style & BS_LEFTTEXT)
962 {
963 /* magic +4 is what CTL3D expects */
964
965 rtext.right -= checkBoxWidth + 4;
966 rbox.left = rbox.right - checkBoxWidth;
967 }
968 else
969 {
970 rtext.left += checkBoxWidth + 4;
971 rbox.right = checkBoxWidth;
972 }
973
974 /* Since WM_ERASEBKGND does nothing, first prepare background */
975 if (action == ODA_SELECT) FillRect( hDC, &rbox, hBrush );
976 if (action == ODA_DRAWENTIRE) FillRect( hDC, &client, hBrush );
977
978 /* Draw label */
979 client = rtext;
980 dtFlags = BUTTON_CalcLabelRect(hwnd, hDC, &rtext);
981
982 /* Only adjust rbox when rtext is valid */
983 if (dtFlags != (UINT)-1L)
984 {
985 rbox.top = rtext.top;
986 rbox.bottom = rtext.bottom;
987 }
988
989 /* Draw the check-box bitmap */
990 if (action == ODA_DRAWENTIRE || action == ODA_SELECT)
991 {
992 UINT flags;
993
994 if ((get_button_type(style) == BS_RADIOBUTTON) ||
995 (get_button_type(style) == BS_AUTORADIOBUTTON)) flags = DFCS_BUTTONRADIO;
996 else if (state & BUTTON_3STATE) flags = DFCS_BUTTON3STATE;
997 else flags = DFCS_BUTTONCHECK;
998
999 if (state & (BUTTON_CHECKED | BUTTON_3STATE)) flags |= DFCS_CHECKED;
1000 if (state & BUTTON_HIGHLIGHTED) flags |= DFCS_PUSHED;
1001
1002 if (style & WS_DISABLED) flags |= DFCS_INACTIVE;
1003
1004 /* rbox must have the correct height */
1005 delta = rbox.bottom - rbox.top - checkBoxHeight;
1006
1007 if (style & BS_TOP) {
1008 if (delta > 0) {
1009 rbox.bottom = rbox.top + checkBoxHeight;
1010 } else {
1011 rbox.top -= -delta/2 + 1;
1012 rbox.bottom = rbox.top + checkBoxHeight;
1013 }
1014 } else if (style & BS_BOTTOM) {
1015 if (delta > 0) {
1016 rbox.top = rbox.bottom - checkBoxHeight;
1017 } else {
1018 rbox.bottom += -delta/2 + 1;
1019 rbox.top = rbox.bottom - checkBoxHeight;
1020 }
1021 } else { /* Default */
1022 if (delta > 0) {
1023 int ofs = (delta / 2);
1024 rbox.bottom -= ofs + 1;
1025 rbox.top = rbox.bottom - checkBoxHeight;
1026 } else if (delta < 0) {
1027 int ofs = (-delta / 2);
1028 rbox.top -= ofs + 1;
1029 rbox.bottom = rbox.top + checkBoxHeight;
1030 }
1031 }
1032
1033 DrawFrameControl( hDC, &rbox, DFC_BUTTON, flags );
1034 }
1035
1036 if (dtFlags == (UINT)-1L) /* Noting to draw */
1037 return;
1038
1039 if (action == ODA_DRAWENTIRE)
1040 BUTTON_DrawLabel(hwnd, hDC, dtFlags, &rtext);
1041
1042 /* ... and focus */
1043 if ((action == ODA_FOCUS) ||
1044 ((action == ODA_DRAWENTIRE) && (state & BUTTON_HASFOCUS)))
1045 {
1046 if (!(get_ui_state(hwnd) & UISF_HIDEFOCUS))
1047 {
1048 rtext.left--;
1049 rtext.right++;
1050 IntersectRect(&rtext, &rtext, &client);
1051 DrawFocusRect( hDC, &rtext );
1052 }
1053 }
1054 }
1055
1056
1057 /**********************************************************************
1058 * BUTTON_CheckAutoRadioButton
1059 *
1060 * hwnd is checked, uncheck every other auto radio button in group
1061 */
1062 static void BUTTON_CheckAutoRadioButton( HWND hwnd )
1063 {
1064 HWND parent, sibling, start;
1065
1066 parent = GetParent(hwnd);
1067 /* make sure that starting control is not disabled or invisible */
1068 start = sibling = GetNextDlgGroupItem( parent, hwnd, TRUE );
1069 do
1070 {
1071 if (!sibling) break;
1072 if ((hwnd != sibling) &&
1073 ((GetWindowLongPtrW( sibling, GWL_STYLE) & 0x0f) == BS_AUTORADIOBUTTON))
1074 SendMessageW( sibling, BM_SETCHECK, BUTTON_UNCHECKED, 0 );
1075 sibling = GetNextDlgGroupItem( parent, sibling, FALSE );
1076 } while (sibling != start);
1077 }
1078
1079
1080 /**********************************************************************
1081 * Group Box Functions
1082 */
1083
1084 static void GB_Paint( HWND hwnd, HDC hDC, UINT action )
1085 {
1086 RECT rc, rcFrame;
1087 HBRUSH hbr;
1088 HFONT hFont;
1089 UINT dtFlags;
1090 TEXTMETRICW tm;
1091 LONG style = GetWindowLongPtrW( hwnd, GWL_STYLE );
1092 HWND parent;
1093
1094 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
1095 /* GroupBox acts like static control, so it sends CTLCOLORSTATIC */
1096 parent = GetParent(hwnd);
1097 if (!parent) parent = hwnd;
1098 hbr = (HBRUSH)SendMessageW(parent, WM_CTLCOLORSTATIC, (WPARAM)hDC, (LPARAM)hwnd);
1099 if (!hbr) /* did the app forget to call defwindowproc ? */
1100 hbr = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORSTATIC,
1101 (WPARAM)hDC, (LPARAM)hwnd);
1102 setup_clipping( hwnd, hDC );
1103
1104 GetClientRect( hwnd, &rc);
1105 rcFrame = rc;
1106
1107 GetTextMetricsW (hDC, &tm);
1108 rcFrame.top += (tm.tmHeight / 2) - 1;
1109 DrawEdge (hDC, &rcFrame, EDGE_ETCHED, BF_RECT | ((style & BS_FLAT) ? BF_FLAT : 0));
1110
1111 InflateRect(&rc, -7, 1);
1112 dtFlags = BUTTON_CalcLabelRect(hwnd, hDC, &rc);
1113
1114 if (dtFlags == (UINT)-1L)
1115 return;
1116
1117 /* Because buttons have CS_PARENTDC class style, there is a chance
1118 * that label will be drawn out of client rect.
1119 * But Windows doesn't clip label's rect, so do I.
1120 */
1121
1122 /* There is 1-pixel margin at the left, right, and bottom */
1123 rc.left--; rc.right++; rc.bottom++;
1124 FillRect(hDC, &rc, hbr);
1125 rc.left++; rc.right--; rc.bottom--;
1126
1127 BUTTON_DrawLabel(hwnd, hDC, dtFlags, &rc);
1128 }
1129
1130
1131 /**********************************************************************
1132 * User Button Functions
1133 */
1134
1135 static void UB_Paint( HWND hwnd, HDC hDC, UINT action )
1136 {
1137 RECT rc;
1138 HBRUSH hBrush;
1139 HFONT hFont;
1140 LONG state = get_button_state( hwnd );
1141 HWND parent;
1142
1143 if (action == ODA_SELECT) return;
1144
1145 GetClientRect( hwnd, &rc);
1146
1147 if ((hFont = get_button_font( hwnd ))) SelectObject( hDC, hFont );
1148
1149 parent = GetParent(hwnd);
1150 if (!parent) parent = hwnd;
1151 hBrush = (HBRUSH)SendMessageW(parent, WM_CTLCOLORBTN, (WPARAM)hDC, (LPARAM)hwnd);
1152 if (!hBrush) /* did the app forget to call defwindowproc ? */
1153 hBrush = (HBRUSH)DefWindowProcW(parent, WM_CTLCOLORBTN,
1154 (WPARAM)hDC, (LPARAM)hwnd);
1155
1156 FillRect( hDC, &rc, hBrush );
1157 if ((action == ODA_FOCUS) ||
1158 ((action == ODA_DRAWENTIRE) && (state & BUTTON_HASFOCUS)))
1159 {
1160 if (!(get_ui_state(hwnd) & UISF_HIDEFOCUS))
1161 DrawFocusRect( hDC, &rc );
1162 }
1163 }
1164
1165
1166 /**********************************************************************
1167 * Ownerdrawn Button Functions
1168 */
1169
1170 static void OB_Paint( HWND hwnd, HDC hDC, UINT action )
1171 {
1172 LONG state = get_button_state( hwnd );
1173 DRAWITEMSTRUCT dis;
1174 LONG_PTR id = GetWindowLongPtrW( hwnd, GWLP_ID );
1175 HWND parent;
1176 HFONT hFont, hPrevFont = 0;
1177
1178 dis.CtlType = ODT_BUTTON;
1179 dis.CtlID = id;
1180 dis.itemID = 0;
1181 dis.itemAction = action;
1182 dis.itemState = ((state & BUTTON_HASFOCUS) ? ODS_FOCUS : 0) |
1183 ((state & BUTTON_HIGHLIGHTED) ? ODS_SELECTED : 0) |
1184 (IsWindowEnabled(hwnd) ? 0: ODS_DISABLED);
1185 dis.hwndItem = hwnd;
1186 dis.hDC = hDC;
1187 dis.itemData = 0;
1188 GetClientRect( hwnd, &dis.rcItem );
1189
1190 if ((hFont = get_button_font( hwnd ))) hPrevFont = SelectObject( hDC, hFont );
1191 parent = GetParent(hwnd);
1192 if (!parent) parent = hwnd;
1193 SendMessageW( parent, WM_CTLCOLORBTN, (WPARAM)hDC, (LPARAM)hwnd );
1194
1195 setup_clipping( hwnd, hDC );
1196
1197 SendMessageW( GetParent(hwnd), WM_DRAWITEM, id, (LPARAM)&dis );
1198 if (hPrevFont) SelectObject(hDC, hPrevFont);
1199 }