1 /* File: button.c -- Button type widgets
3 * Copyright (C) 1993 Johannes Ruscheinski
4 * Copyright (C) 1993 David Metcalfe
5 * Copyright (C) 1994 Alexandre Julliard
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.
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.
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
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.
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.
32 * - BS_NOTIFY: is it complete?
33 * - BS_RIGHTBUTTON: same as BS_LEFTTEXT
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.
50 * - BN_PUSHED/BN_HILITE
51 * + BN_KILLFOCUS: is it OK?
53 * + BN_SETFOCUS: is it OK?
54 * - BN_UNPUSHED/BN_UNHILITE
57 * Structures/Macros/Definitions
60 * - Button_GetIdealSize
61 * - Button_GetImageList
62 * - Button_GetTextMargin
63 * - Button_SetImageList
64 * - Button_SetTextMargin
76 #include "wine/winuser16.h"
79 #include "user_private.h"
80 #include "wine/debug.h"
82 WINE_DEFAULT_DEBUG_CHANNEL(button
);
84 /* GetWindowLong offsets for window extra information */
85 #define STATE_GWL_OFFSET 0
86 #define HFONT_GWL_OFFSET (sizeof(LONG))
87 #define HIMAGE_GWL_OFFSET (HFONT_GWL_OFFSET+sizeof(HFONT))
88 #define NB_EXTRA_BYTES (HIMAGE_GWL_OFFSET+sizeof(HANDLE))
90 /* Button state values */
91 #define BUTTON_UNCHECKED 0x00
92 #define BUTTON_CHECKED 0x01
93 #define BUTTON_3STATE 0x02
94 #define BUTTON_HIGHLIGHTED 0x04
95 #define BUTTON_HASFOCUS 0x08
96 #define BUTTON_NSTATES 0x0F
97 /* undocumented flags */
98 #define BUTTON_BTNPRESSED 0x40
99 #define BUTTON_UNKNOWN2 0x20
100 #define BUTTON_UNKNOWN3 0x10
102 #define BUTTON_NOTIFY_PARENT(hWnd, code) \
103 do { /* Notify parent which has created this button control */ \
104 TRACE("notification " #code " sent to hwnd=%p\n", GetParent(hWnd)); \
105 SendMessageW(GetParent(hWnd), WM_COMMAND, \
106 MAKEWPARAM(GetWindowLongPtrW((hWnd),GWLP_ID), (code)), \
110 static UINT
BUTTON_CalcLabelRect( HWND hwnd
, HDC hdc
, RECT
*rc
);
111 static void PB_Paint( HWND hwnd
, HDC hDC
, UINT action
);
112 static void CB_Paint( HWND hwnd
, HDC hDC
, UINT action
);
113 static void GB_Paint( HWND hwnd
, HDC hDC
, UINT action
);
114 static void UB_Paint( HWND hwnd
, HDC hDC
, UINT action
);
115 static void OB_Paint( HWND hwnd
, HDC hDC
, UINT action
);
116 static void BUTTON_CheckAutoRadioButton( HWND hwnd
);
117 static LRESULT WINAPI
ButtonWndProcA( HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
118 static LRESULT WINAPI
ButtonWndProcW( HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
120 #define MAX_BTN_TYPE 12
122 static const WORD maxCheckState
[MAX_BTN_TYPE
] =
124 BUTTON_UNCHECKED
, /* BS_PUSHBUTTON */
125 BUTTON_UNCHECKED
, /* BS_DEFPUSHBUTTON */
126 BUTTON_CHECKED
, /* BS_CHECKBOX */
127 BUTTON_CHECKED
, /* BS_AUTOCHECKBOX */
128 BUTTON_CHECKED
, /* BS_RADIOBUTTON */
129 BUTTON_3STATE
, /* BS_3STATE */
130 BUTTON_3STATE
, /* BS_AUTO3STATE */
131 BUTTON_UNCHECKED
, /* BS_GROUPBOX */
132 BUTTON_UNCHECKED
, /* BS_USERBUTTON */
133 BUTTON_CHECKED
, /* BS_AUTORADIOBUTTON */
134 BUTTON_UNCHECKED
, /* Not defined */
135 BUTTON_UNCHECKED
/* BS_OWNERDRAW */
138 typedef void (*pfPaint
)( HWND hwnd
, HDC hdc
, UINT action
);
140 static const pfPaint btnPaintFunc
[MAX_BTN_TYPE
] =
142 PB_Paint
, /* BS_PUSHBUTTON */
143 PB_Paint
, /* BS_DEFPUSHBUTTON */
144 CB_Paint
, /* BS_CHECKBOX */
145 CB_Paint
, /* BS_AUTOCHECKBOX */
146 CB_Paint
, /* BS_RADIOBUTTON */
147 CB_Paint
, /* BS_3STATE */
148 CB_Paint
, /* BS_AUTO3STATE */
149 GB_Paint
, /* BS_GROUPBOX */
150 UB_Paint
, /* BS_USERBUTTON */
151 CB_Paint
, /* BS_AUTORADIOBUTTON */
152 NULL
, /* Not defined */
153 OB_Paint
/* BS_OWNERDRAW */
156 static HBITMAP hbitmapCheckBoxes
= 0;
157 static WORD checkBoxWidth
= 0, checkBoxHeight
= 0;
160 /*********************************************************************
161 * button class descriptor
163 static const WCHAR buttonW
[] = {'B','u','t','t','o','n',0};
164 const struct builtin_class_descr BUTTON_builtin_class
=
167 CS_DBLCLKS
| CS_VREDRAW
| CS_HREDRAW
| CS_PARENTDC
, /* style */
168 ButtonWndProcA
, /* procA */
169 ButtonWndProcW
, /* procW */
170 NB_EXTRA_BYTES
, /* extra */
171 IDC_ARROW
, /* cursor */
176 static inline LONG
get_button_state( HWND hwnd
)
178 return GetWindowLongW( hwnd
, STATE_GWL_OFFSET
);
181 static inline void set_button_state( HWND hwnd
, LONG state
)
183 SetWindowLongW( hwnd
, STATE_GWL_OFFSET
, state
);
186 static inline HFONT
get_button_font( HWND hwnd
)
188 return (HFONT
)GetWindowLongPtrW( hwnd
, HFONT_GWL_OFFSET
);
191 static inline void set_button_font( HWND hwnd
, HFONT font
)
193 SetWindowLongPtrW( hwnd
, HFONT_GWL_OFFSET
, (LONG_PTR
)font
);
196 static inline UINT
get_button_type( LONG window_style
)
198 return (window_style
& 0x0f);
201 /* paint a button of any type */
202 static inline void paint_button( HWND hwnd
, LONG style
, UINT action
)
204 if (btnPaintFunc
[style
] && IsWindowVisible(hwnd
))
206 HDC hdc
= GetDC( hwnd
);
207 btnPaintFunc
[style
]( hwnd
, hdc
, action
);
208 ReleaseDC( hwnd
, hdc
);
212 /* retrieve the button text; returned buffer must be freed by caller */
213 static inline WCHAR
*get_button_text( HWND hwnd
)
216 WCHAR
*buffer
= HeapAlloc( GetProcessHeap(), 0, (len
+ 1) * sizeof(WCHAR
) );
217 if (buffer
) InternalGetWindowText( hwnd
, buffer
, len
+ 1 );
221 static void setup_clipping( HWND hwnd
, HDC hdc
)
225 GetClientRect( hwnd
, &rc
);
226 DPtoLP( hdc
, (POINT
*)&rc
, 2 );
227 IntersectClipRect( hdc
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
230 /***********************************************************************
231 * ButtonWndProc_common
233 static LRESULT
ButtonWndProc_common(HWND hWnd
, UINT uMsg
,
234 WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
238 LONG style
= GetWindowLongW( hWnd
, GWL_STYLE
);
239 UINT btn_type
= get_button_type( style
);
243 pt
.x
= (short)LOWORD(lParam
);
244 pt
.y
= (short)HIWORD(lParam
);
252 case BS_PUSHBUTTON
: return DLGC_BUTTON
| DLGC_UNDEFPUSHBUTTON
;
253 case BS_DEFPUSHBUTTON
: return DLGC_BUTTON
| DLGC_DEFPUSHBUTTON
;
255 case BS_AUTORADIOBUTTON
: return DLGC_BUTTON
| DLGC_RADIOBUTTON
;
256 case BS_GROUPBOX
: return DLGC_STATIC
;
257 default: return DLGC_BUTTON
;
261 paint_button( hWnd
, btn_type
, ODA_DRAWENTIRE
);
265 if (!hbitmapCheckBoxes
)
268 hbitmapCheckBoxes
= LoadBitmapW(0, MAKEINTRESOURCEW(OBM_CHECKBOXES
));
269 GetObjectW( hbitmapCheckBoxes
, sizeof(bmp
), &bmp
);
270 checkBoxWidth
= bmp
.bmWidth
/ 4;
271 checkBoxHeight
= bmp
.bmHeight
/ 3;
273 if (btn_type
>= MAX_BTN_TYPE
)
274 return -1; /* abort */
276 /* XP turns a BS_USERBUTTON into BS_PUSHBUTTON */
277 if (btn_type
== BS_USERBUTTON
)
279 style
= (style
& ~0x0f) | BS_PUSHBUTTON
;
280 WIN_SetStyle( hWnd
, style
, 0x0f & ~style
);
282 set_button_state( hWnd
, BUTTON_UNCHECKED
);
286 if (btn_type
== BS_OWNERDRAW
)
288 HDC hdc
= (HDC
)wParam
;
291 HWND parent
= GetParent(hWnd
);
292 if (!parent
) parent
= hWnd
;
293 hBrush
= (HBRUSH
)SendMessageW(parent
, WM_CTLCOLORBTN
, (WPARAM
)hdc
, (LPARAM
)hWnd
);
294 if (!hBrush
) /* did the app forget to call defwindowproc ? */
295 hBrush
= (HBRUSH
)DefWindowProcW(parent
, WM_CTLCOLORBTN
,
296 (WPARAM
)hdc
, (LPARAM
)hWnd
);
297 GetClientRect(hWnd
, &rc
);
298 FillRect(hdc
, &rc
, hBrush
);
304 if (btnPaintFunc
[btn_type
])
307 HDC hdc
= wParam
? (HDC
)wParam
: BeginPaint( hWnd
, &ps
);
308 int nOldMode
= SetBkMode( hdc
, OPAQUE
);
309 (btnPaintFunc
[btn_type
])( hWnd
, hdc
, ODA_DRAWENTIRE
);
310 SetBkMode(hdc
, nOldMode
); /* reset painting mode */
311 if( !wParam
) EndPaint( hWnd
, &ps
);
316 if (wParam
== VK_SPACE
)
318 SendMessageW( hWnd
, BM_SETSTATE
, TRUE
, 0 );
319 set_button_state( hWnd
, get_button_state( hWnd
) | BUTTON_BTNPRESSED
);
324 case WM_LBUTTONDBLCLK
:
325 if(style
& BS_NOTIFY
||
326 btn_type
== BS_RADIOBUTTON
||
327 btn_type
== BS_USERBUTTON
||
328 btn_type
== BS_OWNERDRAW
)
330 BUTTON_NOTIFY_PARENT(hWnd
, BN_DOUBLECLICKED
);
337 set_button_state( hWnd
, get_button_state( hWnd
) | BUTTON_BTNPRESSED
);
338 SendMessageW( hWnd
, BM_SETSTATE
, TRUE
, 0 );
342 if (wParam
!= VK_SPACE
)
346 state
= get_button_state( hWnd
);
347 if (!(state
& BUTTON_BTNPRESSED
)) break;
348 state
&= BUTTON_NSTATES
;
349 set_button_state( hWnd
, state
);
350 if (!(state
& BUTTON_HIGHLIGHTED
))
355 SendMessageW( hWnd
, BM_SETSTATE
, FALSE
, 0 );
357 GetClientRect( hWnd
, &rect
);
358 if (uMsg
== WM_KEYUP
|| PtInRect( &rect
, pt
))
360 state
= get_button_state( hWnd
);
363 case BS_AUTOCHECKBOX
:
364 SendMessageW( hWnd
, BM_SETCHECK
, !(state
& BUTTON_CHECKED
), 0 );
366 case BS_AUTORADIOBUTTON
:
367 SendMessageW( hWnd
, BM_SETCHECK
, TRUE
, 0 );
370 SendMessageW( hWnd
, BM_SETCHECK
,
371 (state
& BUTTON_3STATE
) ? 0 : ((state
& 3) + 1), 0 );
374 BUTTON_NOTIFY_PARENT(hWnd
, BN_CLICKED
);
378 case WM_CAPTURECHANGED
:
379 TRACE("WM_CAPTURECHANGED %p\n", hWnd
);
380 state
= get_button_state( hWnd
);
381 if (state
& BUTTON_BTNPRESSED
)
383 state
&= BUTTON_NSTATES
;
384 set_button_state( hWnd
, state
);
385 if (state
& BUTTON_HIGHLIGHTED
) SendMessageW( hWnd
, BM_SETSTATE
, FALSE
, 0 );
390 if ((wParam
& MK_LBUTTON
) && GetCapture() == hWnd
)
392 GetClientRect( hWnd
, &rect
);
393 SendMessageW( hWnd
, BM_SETSTATE
, PtInRect(&rect
, pt
), 0 );
399 /* Clear an old text here as Windows does */
400 HDC hdc
= GetDC(hWnd
);
403 HWND parent
= GetParent(hWnd
);
405 if (!parent
) parent
= hWnd
;
406 hbrush
= (HBRUSH
)SendMessageW(parent
, WM_CTLCOLORSTATIC
,
407 (WPARAM
)hdc
, (LPARAM
)hWnd
);
408 if (!hbrush
) /* did the app forget to call DefWindowProc ? */
409 hbrush
= (HBRUSH
)DefWindowProcW(parent
, WM_CTLCOLORSTATIC
,
410 (WPARAM
)hdc
, (LPARAM
)hWnd
);
412 GetClientRect(hWnd
, &client
);
414 BUTTON_CalcLabelRect(hWnd
, hdc
, &rc
);
415 /* Clip by client rect bounds */
416 if (rc
.right
> client
.right
) rc
.right
= client
.right
;
417 if (rc
.bottom
> client
.bottom
) rc
.bottom
= client
.bottom
;
418 FillRect(hdc
, &rc
, hbrush
);
419 ReleaseDC(hWnd
, hdc
);
421 if (unicode
) DefWindowProcW( hWnd
, WM_SETTEXT
, wParam
, lParam
);
422 else DefWindowProcA( hWnd
, WM_SETTEXT
, wParam
, lParam
);
423 if (btn_type
== BS_GROUPBOX
) /* Yes, only for BS_GROUPBOX */
424 InvalidateRect( hWnd
, NULL
, TRUE
);
426 paint_button( hWnd
, btn_type
, ODA_DRAWENTIRE
);
427 return 1; /* success. FIXME: check text length */
431 set_button_font( hWnd
, (HFONT
)wParam
);
432 if (lParam
) InvalidateRect(hWnd
, NULL
, TRUE
);
436 return (LRESULT
)get_button_font( hWnd
);
439 TRACE("WM_SETFOCUS %p\n",hWnd
);
440 set_button_state( hWnd
, get_button_state(hWnd
) | BUTTON_HASFOCUS
);
441 paint_button( hWnd
, btn_type
, ODA_FOCUS
);
442 if (style
& BS_NOTIFY
)
443 BUTTON_NOTIFY_PARENT(hWnd
, BN_SETFOCUS
);
447 TRACE("WM_KILLFOCUS %p\n",hWnd
);
448 state
= get_button_state( hWnd
);
449 set_button_state( hWnd
, state
& ~BUTTON_HASFOCUS
);
450 paint_button( hWnd
, btn_type
, ODA_FOCUS
);
452 if ((state
& BUTTON_BTNPRESSED
) && GetCapture() == hWnd
)
454 if (style
& BS_NOTIFY
)
455 BUTTON_NOTIFY_PARENT(hWnd
, BN_KILLFOCUS
);
457 InvalidateRect( hWnd
, NULL
, FALSE
);
460 case WM_SYSCOLORCHANGE
:
461 InvalidateRect( hWnd
, NULL
, FALSE
);
466 if ((wParam
& 0x0f) >= MAX_BTN_TYPE
) break;
467 btn_type
= wParam
& 0x0f;
468 style
= (style
& ~0x0f) | btn_type
;
469 WIN_SetStyle( hWnd
, style
, 0x0f & ~style
);
471 /* Only redraw if lParam flag is set.*/
473 InvalidateRect( hWnd
, NULL
, TRUE
);
478 SendMessageW( hWnd
, WM_LBUTTONDOWN
, 0, 0 );
479 SendMessageW( hWnd
, WM_LBUTTONUP
, 0, 0 );
483 /* Check that image format matches button style */
484 switch (style
& (BS_BITMAP
|BS_ICON
))
487 if (wParam
!= IMAGE_BITMAP
) return 0;
490 if (wParam
!= IMAGE_ICON
) return 0;
495 oldHbitmap
= (HBITMAP
)SetWindowLongPtrW( hWnd
, HIMAGE_GWL_OFFSET
, lParam
);
496 InvalidateRect( hWnd
, NULL
, FALSE
);
497 return (LRESULT
)oldHbitmap
;
500 return GetWindowLongPtrW( hWnd
, HIMAGE_GWL_OFFSET
);
504 return get_button_state( hWnd
) & 3;
508 if (wParam
> maxCheckState
[btn_type
]) wParam
= maxCheckState
[btn_type
];
509 state
= get_button_state( hWnd
);
510 if ((btn_type
== BS_RADIOBUTTON
) || (btn_type
== BS_AUTORADIOBUTTON
))
512 if (wParam
) style
|= WS_TABSTOP
;
513 else style
&= ~WS_TABSTOP
;
514 SetWindowLongW( hWnd
, GWL_STYLE
, style
);
516 if ((state
& 3) != wParam
)
518 set_button_state( hWnd
, (state
& ~3) | wParam
);
519 paint_button( hWnd
, btn_type
, ODA_SELECT
);
521 if ((btn_type
== BS_AUTORADIOBUTTON
) && (wParam
== BUTTON_CHECKED
) && (style
& WS_CHILD
))
522 BUTTON_CheckAutoRadioButton( hWnd
);
527 return get_button_state( hWnd
);
531 state
= get_button_state( hWnd
);
534 if (state
& BUTTON_HIGHLIGHTED
) break;
535 set_button_state( hWnd
, state
| BUTTON_HIGHLIGHTED
);
539 if (!(state
& BUTTON_HIGHLIGHTED
)) break;
540 set_button_state( hWnd
, state
& ~BUTTON_HIGHLIGHTED
);
542 paint_button( hWnd
, btn_type
, ODA_SELECT
);
546 if(btn_type
== BS_GROUPBOX
) return HTTRANSPARENT
;
549 return unicode
? DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
) :
550 DefWindowProcA(hWnd
, uMsg
, wParam
, lParam
);
555 /***********************************************************************
557 * The button window procedure. This is just a wrapper which locks
558 * the passed HWND and calls the real window procedure (with a WND*
559 * pointer pointing to the locked windowstructure).
561 static LRESULT WINAPI
ButtonWndProcW( HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
563 if (!IsWindow( hWnd
)) return 0;
564 return ButtonWndProc_common( hWnd
, uMsg
, wParam
, lParam
, TRUE
);
568 /***********************************************************************
571 static LRESULT WINAPI
ButtonWndProcA( HWND hWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
573 if (!IsWindow( hWnd
)) return 0;
574 return ButtonWndProc_common( hWnd
, uMsg
, wParam
, lParam
, FALSE
);
578 /**********************************************************************
579 * Convert button styles to flags used by DrawText.
581 static UINT
BUTTON_BStoDT( DWORD style
, DWORD ex_style
)
583 UINT dtStyle
= DT_NOCLIP
; /* We use SelectClipRgn to limit output */
585 /* "Convert" pushlike buttons to pushbuttons */
586 if (style
& BS_PUSHLIKE
)
589 if (!(style
& BS_MULTILINE
))
590 dtStyle
|= DT_SINGLELINE
;
592 dtStyle
|= DT_WORDBREAK
;
594 switch (style
& BS_CENTER
)
596 case BS_LEFT
: /* DT_LEFT is 0 */ break;
597 case BS_RIGHT
: dtStyle
|= DT_RIGHT
; break;
598 case BS_CENTER
: dtStyle
|= DT_CENTER
; break;
600 /* Pushbutton's text is centered by default */
601 if (get_button_type(style
) <= BS_DEFPUSHBUTTON
) dtStyle
|= DT_CENTER
;
602 /* all other flavours have left aligned text */
605 if (ex_style
& WS_EX_RIGHT
) dtStyle
= DT_RIGHT
| (dtStyle
& ~(DT_LEFT
| DT_CENTER
));
607 /* DrawText ignores vertical alignment for multiline text,
608 * but we use these flags to align label manually.
610 if (get_button_type(style
) != BS_GROUPBOX
)
612 switch (style
& BS_VCENTER
)
614 case BS_TOP
: /* DT_TOP is 0 */ break;
615 case BS_BOTTOM
: dtStyle
|= DT_BOTTOM
; break;
616 case BS_VCENTER
: /* fall through */
617 default: dtStyle
|= DT_VCENTER
; break;
621 /* GroupBox's text is always single line and is top aligned. */
622 dtStyle
|= DT_SINGLELINE
;
627 /**********************************************************************
628 * BUTTON_CalcLabelRect
630 * Calculates label's rectangle depending on button style.
632 * Returns flags to be passed to DrawText.
633 * Calculated rectangle doesn't take into account button state
634 * (pushed, etc.). If there is nothing to draw (no text/image) output
635 * rectangle is empty, and return value is (UINT)-1.
637 static UINT
BUTTON_CalcLabelRect(HWND hwnd
, HDC hdc
, RECT
*rc
)
639 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
640 LONG ex_style
= GetWindowLongW( hwnd
, GWL_EXSTYLE
);
644 UINT dtStyle
= BUTTON_BStoDT( style
, ex_style
);
648 /* Calculate label rectangle according to label type */
649 switch (style
& (BS_ICON
|BS_BITMAP
))
652 if (!(text
= get_button_text( hwnd
))) goto empty_rect
;
655 HeapFree( GetProcessHeap(), 0, text
);
658 DrawTextW(hdc
, text
, -1, &r
, dtStyle
| DT_CALCRECT
);
659 HeapFree( GetProcessHeap(), 0, text
);
663 if (!GetIconInfo((HICON
)GetWindowLongPtrW( hwnd
, HIMAGE_GWL_OFFSET
), &iconInfo
))
666 GetObjectW (iconInfo
.hbmColor
, sizeof(BITMAP
), &bm
);
668 r
.right
= r
.left
+ bm
.bmWidth
;
669 r
.bottom
= r
.top
+ bm
.bmHeight
;
671 DeleteObject(iconInfo
.hbmColor
);
672 DeleteObject(iconInfo
.hbmMask
);
676 if (!GetObjectW( (HANDLE
)GetWindowLongPtrW( hwnd
, HIMAGE_GWL_OFFSET
), sizeof(BITMAP
), &bm
))
679 r
.right
= r
.left
+ bm
.bmWidth
;
680 r
.bottom
= r
.top
+ bm
.bmHeight
;
690 /* Position label inside bounding rectangle according to
691 * alignment flags. (calculated rect is always left-top aligned).
692 * If label is aligned to any side - shift label in opposite
693 * direction to leave extra space for focus rectangle.
695 switch (dtStyle
& (DT_CENTER
|DT_RIGHT
))
697 case DT_LEFT
: r
.left
++; r
.right
++; break;
698 case DT_CENTER
: n
= r
.right
- r
.left
;
699 r
.left
= rc
->left
+ ((rc
->right
- rc
->left
) - n
) / 2;
700 r
.right
= r
.left
+ n
; break;
701 case DT_RIGHT
: n
= r
.right
- r
.left
;
702 r
.right
= rc
->right
- 1;
703 r
.left
= r
.right
- n
;
707 switch (dtStyle
& (DT_VCENTER
|DT_BOTTOM
))
709 case DT_TOP
: r
.top
++; r
.bottom
++; break;
710 case DT_VCENTER
: n
= r
.bottom
- r
.top
;
711 r
.top
= rc
->top
+ ((rc
->bottom
- rc
->top
) - n
) / 2;
712 r
.bottom
= r
.top
+ n
; break;
713 case DT_BOTTOM
: n
= r
.bottom
- r
.top
;
714 r
.bottom
= rc
->bottom
- 1;
715 r
.top
= r
.bottom
- n
;
724 /**********************************************************************
725 * BUTTON_DrawTextCallback
727 * Callback function used by DrawStateW function.
729 static BOOL CALLBACK
BUTTON_DrawTextCallback(HDC hdc
, LPARAM lp
, WPARAM wp
, int cx
, int cy
)
737 DrawTextW(hdc
, (LPCWSTR
)lp
, -1, &rc
, (UINT
)wp
);
742 /**********************************************************************
745 * Common function for drawing button label.
747 static void BUTTON_DrawLabel(HWND hwnd
, HDC hdc
, UINT dtFlags
, const RECT
*rc
)
749 DRAWSTATEPROC lpOutputProc
= NULL
;
753 UINT flags
= IsWindowEnabled(hwnd
) ? DSS_NORMAL
: DSS_DISABLED
;
754 LONG state
= get_button_state( hwnd
);
755 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
758 /* FIXME: To draw disabled label in Win31 look-and-feel, we probably
759 * must use DSS_MONO flag and COLOR_GRAYTEXT brush (or maybe DSS_UNION).
760 * I don't have Win31 on hand to verify that, so I leave it as is.
763 if ((style
& BS_PUSHLIKE
) && (state
& BUTTON_3STATE
))
765 hbr
= GetSysColorBrush(COLOR_GRAYTEXT
);
769 switch (style
& (BS_ICON
|BS_BITMAP
))
772 /* DST_COMPLEX -- is 0 */
773 lpOutputProc
= BUTTON_DrawTextCallback
;
774 if (!(text
= get_button_text( hwnd
))) return;
776 wp
= (WPARAM
)dtFlags
;
781 lp
= GetWindowLongPtrW( hwnd
, HIMAGE_GWL_OFFSET
);
786 lp
= GetWindowLongPtrW( hwnd
, HIMAGE_GWL_OFFSET
);
793 DrawStateW(hdc
, hbr
, lpOutputProc
, lp
, wp
, rc
->left
, rc
->top
,
794 rc
->right
- rc
->left
, rc
->bottom
- rc
->top
, flags
);
795 HeapFree( GetProcessHeap(), 0, text
);
798 /**********************************************************************
799 * Push Button Functions
801 static void PB_Paint( HWND hwnd
, HDC hDC
, UINT action
)
803 RECT rc
, focus_rect
, r
;
804 UINT dtFlags
, uState
;
808 COLORREF oldTxtColor
;
810 LONG state
= get_button_state( hwnd
);
811 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
812 BOOL pushedState
= (state
& BUTTON_HIGHLIGHTED
);
815 GetClientRect( hwnd
, &rc
);
817 /* Send WM_CTLCOLOR to allow changing the font (the colors are fixed) */
818 if ((hFont
= get_button_font( hwnd
))) SelectObject( hDC
, hFont
);
819 parent
= GetParent(hwnd
);
820 if (!parent
) parent
= hwnd
;
821 SendMessageW( parent
, WM_CTLCOLORBTN
, (WPARAM
)hDC
, (LPARAM
)hwnd
);
823 setup_clipping( hwnd
, hDC
);
825 hOldPen
= SelectObject(hDC
, SYSCOLOR_GetPen(COLOR_WINDOWFRAME
));
826 hOldBrush
= SelectObject(hDC
,GetSysColorBrush(COLOR_BTNFACE
));
827 oldBkMode
= SetBkMode(hDC
, TRANSPARENT
);
829 /* completely skip the drawing if only focus has changed */
830 if (action
== ODA_FOCUS
) goto draw_focus
;
832 if (get_button_type(style
) == BS_DEFPUSHBUTTON
)
834 Rectangle(hDC
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
835 InflateRect( &rc
, -1, -1 );
838 uState
= DFCS_BUTTONPUSH
| DFCS_ADJUSTRECT
;
842 else if (pushedState
)
844 if (get_button_type(style
) == BS_DEFPUSHBUTTON
)
847 uState
|= DFCS_PUSHED
;
850 if (state
& (BUTTON_CHECKED
| BUTTON_3STATE
))
851 uState
|= DFCS_CHECKED
;
853 DrawFrameControl( hDC
, &rc
, DFC_BUTTON
, uState
);
857 /* draw button label */
859 dtFlags
= BUTTON_CalcLabelRect(hwnd
, hDC
, &r
);
861 if (dtFlags
== (UINT
)-1L)
865 OffsetRect(&r
, 1, 1);
867 IntersectClipRect(hDC
, rc
.left
, rc
.top
, rc
.right
, rc
.bottom
);
869 oldTxtColor
= SetTextColor( hDC
, GetSysColor(COLOR_BTNTEXT
) );
871 BUTTON_DrawLabel(hwnd
, hDC
, dtFlags
, &r
);
873 SetTextColor( hDC
, oldTxtColor
);
876 if ((action
== ODA_FOCUS
) ||
877 ((action
== ODA_DRAWENTIRE
) && (state
& BUTTON_HASFOCUS
)))
879 InflateRect( &focus_rect
, -1, -1 );
880 IntersectRect(&focus_rect
, &focus_rect
, &rc
);
881 DrawFocusRect( hDC
, &focus_rect
);
885 SelectObject( hDC
, hOldPen
);
886 SelectObject( hDC
, hOldBrush
);
887 SetBkMode(hDC
, oldBkMode
);
890 /**********************************************************************
891 * Check Box & Radio Button Functions
894 static void CB_Paint( HWND hwnd
, HDC hDC
, UINT action
)
896 RECT rbox
, rtext
, client
;
901 LONG state
= get_button_state( hwnd
);
902 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
905 if (style
& BS_PUSHLIKE
)
907 PB_Paint( hwnd
, hDC
, action
);
911 GetClientRect(hwnd
, &client
);
912 rbox
= rtext
= client
;
914 if ((hFont
= get_button_font( hwnd
))) SelectObject( hDC
, hFont
);
916 parent
= GetParent(hwnd
);
917 if (!parent
) parent
= hwnd
;
918 hBrush
= (HBRUSH
)SendMessageW(parent
, WM_CTLCOLORSTATIC
,
919 (WPARAM
)hDC
, (LPARAM
)hwnd
);
920 if (!hBrush
) /* did the app forget to call defwindowproc ? */
921 hBrush
= (HBRUSH
)DefWindowProcW(parent
, WM_CTLCOLORSTATIC
,
922 (WPARAM
)hDC
, (LPARAM
)hwnd
);
923 setup_clipping( hwnd
, hDC
);
925 if (style
& BS_LEFTTEXT
)
927 /* magic +4 is what CTL3D expects */
929 rtext
.right
-= checkBoxWidth
+ 4;
930 rbox
.left
= rbox
.right
- checkBoxWidth
;
934 rtext
.left
+= checkBoxWidth
+ 4;
935 rbox
.right
= checkBoxWidth
;
938 /* Since WM_ERASEBKGND does nothing, first prepare background */
939 if (action
== ODA_SELECT
) FillRect( hDC
, &rbox
, hBrush
);
940 if (action
== ODA_DRAWENTIRE
) FillRect( hDC
, &client
, hBrush
);
944 dtFlags
= BUTTON_CalcLabelRect(hwnd
, hDC
, &rtext
);
946 /* Only adjust rbox when rtext is valid */
947 if (dtFlags
!= (UINT
)-1L)
949 rbox
.top
= rtext
.top
;
950 rbox
.bottom
= rtext
.bottom
;
953 /* Draw the check-box bitmap */
954 if (action
== ODA_DRAWENTIRE
|| action
== ODA_SELECT
)
958 if ((get_button_type(style
) == BS_RADIOBUTTON
) ||
959 (get_button_type(style
) == BS_AUTORADIOBUTTON
)) flags
= DFCS_BUTTONRADIO
;
960 else if (state
& BUTTON_3STATE
) flags
= DFCS_BUTTON3STATE
;
961 else flags
= DFCS_BUTTONCHECK
;
963 if (state
& (BUTTON_CHECKED
| BUTTON_3STATE
)) flags
|= DFCS_CHECKED
;
964 if (state
& BUTTON_HIGHLIGHTED
) flags
|= DFCS_PUSHED
;
966 if (style
& WS_DISABLED
) flags
|= DFCS_INACTIVE
;
968 /* rbox must have the correct height */
969 delta
= rbox
.bottom
- rbox
.top
- checkBoxHeight
;
971 if (style
& BS_TOP
) {
973 rbox
.bottom
= rbox
.top
+ checkBoxHeight
;
975 rbox
.top
-= -delta
/2 + 1;
976 rbox
.bottom
= rbox
.top
+ checkBoxHeight
;
978 } else if (style
& BS_BOTTOM
) {
980 rbox
.top
= rbox
.bottom
- checkBoxHeight
;
982 rbox
.bottom
+= -delta
/2 + 1;
983 rbox
.top
= rbox
.bottom
- checkBoxHeight
;
985 } else { /* Default */
987 int ofs
= (delta
/ 2);
988 rbox
.bottom
-= ofs
+ 1;
989 rbox
.top
= rbox
.bottom
- checkBoxHeight
;
990 } else if (delta
< 0) {
991 int ofs
= (-delta
/ 2);
993 rbox
.bottom
= rbox
.top
+ checkBoxHeight
;
997 DrawFrameControl( hDC
, &rbox
, DFC_BUTTON
, flags
);
1000 if (dtFlags
== (UINT
)-1L) /* Noting to draw */
1003 if (action
== ODA_DRAWENTIRE
)
1004 BUTTON_DrawLabel(hwnd
, hDC
, dtFlags
, &rtext
);
1007 if ((action
== ODA_FOCUS
) ||
1008 ((action
== ODA_DRAWENTIRE
) && (state
& BUTTON_HASFOCUS
)))
1012 IntersectRect(&rtext
, &rtext
, &client
);
1013 DrawFocusRect( hDC
, &rtext
);
1018 /**********************************************************************
1019 * BUTTON_CheckAutoRadioButton
1021 * hwnd is checked, uncheck every other auto radio button in group
1023 static void BUTTON_CheckAutoRadioButton( HWND hwnd
)
1025 HWND parent
, sibling
, start
;
1027 parent
= GetParent(hwnd
);
1028 /* make sure that starting control is not disabled or invisible */
1029 start
= sibling
= GetNextDlgGroupItem( parent
, hwnd
, TRUE
);
1032 if (!sibling
) break;
1033 if ((hwnd
!= sibling
) &&
1034 ((GetWindowLongW( sibling
, GWL_STYLE
) & 0x0f) == BS_AUTORADIOBUTTON
))
1035 SendMessageW( sibling
, BM_SETCHECK
, BUTTON_UNCHECKED
, 0 );
1036 sibling
= GetNextDlgGroupItem( parent
, sibling
, FALSE
);
1037 } while (sibling
!= start
);
1041 /**********************************************************************
1042 * Group Box Functions
1045 static void GB_Paint( HWND hwnd
, HDC hDC
, UINT action
)
1052 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
1055 if ((hFont
= get_button_font( hwnd
))) SelectObject( hDC
, hFont
);
1056 /* GroupBox acts like static control, so it sends CTLCOLORSTATIC */
1057 parent
= GetParent(hwnd
);
1058 if (!parent
) parent
= hwnd
;
1059 hbr
= (HBRUSH
)SendMessageW(parent
, WM_CTLCOLORSTATIC
, (WPARAM
)hDC
, (LPARAM
)hwnd
);
1060 if (!hbr
) /* did the app forget to call defwindowproc ? */
1061 hbr
= (HBRUSH
)DefWindowProcW(parent
, WM_CTLCOLORSTATIC
,
1062 (WPARAM
)hDC
, (LPARAM
)hwnd
);
1063 setup_clipping( hwnd
, hDC
);
1065 GetClientRect( hwnd
, &rc
);
1068 GetTextMetricsW (hDC
, &tm
);
1069 rcFrame
.top
+= (tm
.tmHeight
/ 2) - 1;
1070 DrawEdge (hDC
, &rcFrame
, EDGE_ETCHED
, BF_RECT
| ((style
& BS_FLAT
) ? BF_FLAT
: 0));
1072 InflateRect(&rc
, -7, 1);
1073 dtFlags
= BUTTON_CalcLabelRect(hwnd
, hDC
, &rc
);
1075 if (dtFlags
== (UINT
)-1L)
1078 /* Because buttons have CS_PARENTDC class style, there is a chance
1079 * that label will be drawn out of client rect.
1080 * But Windows doesn't clip label's rect, so do I.
1083 /* There is 1-pixel margin at the left, right, and bottom */
1084 rc
.left
--; rc
.right
++; rc
.bottom
++;
1085 FillRect(hDC
, &rc
, hbr
);
1086 rc
.left
++; rc
.right
--; rc
.bottom
--;
1088 BUTTON_DrawLabel(hwnd
, hDC
, dtFlags
, &rc
);
1092 /**********************************************************************
1093 * User Button Functions
1096 static void UB_Paint( HWND hwnd
, HDC hDC
, UINT action
)
1101 LONG state
= get_button_state( hwnd
);
1104 if (action
== ODA_SELECT
) return;
1106 GetClientRect( hwnd
, &rc
);
1108 if ((hFont
= get_button_font( hwnd
))) SelectObject( hDC
, hFont
);
1110 parent
= GetParent(hwnd
);
1111 if (!parent
) parent
= hwnd
;
1112 hBrush
= (HBRUSH
)SendMessageW(parent
, WM_CTLCOLORBTN
, (WPARAM
)hDC
, (LPARAM
)hwnd
);
1113 if (!hBrush
) /* did the app forget to call defwindowproc ? */
1114 hBrush
= (HBRUSH
)DefWindowProcW(parent
, WM_CTLCOLORBTN
,
1115 (WPARAM
)hDC
, (LPARAM
)hwnd
);
1117 FillRect( hDC
, &rc
, hBrush
);
1118 if ((action
== ODA_FOCUS
) ||
1119 ((action
== ODA_DRAWENTIRE
) && (state
& BUTTON_HASFOCUS
)))
1120 DrawFocusRect( hDC
, &rc
);
1122 BUTTON_NOTIFY_PARENT( hwnd
, BN_PAINT
);
1126 /**********************************************************************
1127 * Ownerdrawn Button Functions
1130 static void OB_Paint( HWND hwnd
, HDC hDC
, UINT action
)
1132 LONG state
= get_button_state( hwnd
);
1134 LONG_PTR id
= GetWindowLongPtrW( hwnd
, GWLP_ID
);
1136 HFONT hFont
, hPrevFont
= 0;
1138 dis
.CtlType
= ODT_BUTTON
;
1141 dis
.itemAction
= action
;
1142 dis
.itemState
= ((state
& BUTTON_HASFOCUS
) ? ODS_FOCUS
: 0) |
1143 ((state
& BUTTON_HIGHLIGHTED
) ? ODS_SELECTED
: 0) |
1144 (IsWindowEnabled(hwnd
) ? 0: ODS_DISABLED
);
1145 dis
.hwndItem
= hwnd
;
1148 GetClientRect( hwnd
, &dis
.rcItem
);
1150 if ((hFont
= get_button_font( hwnd
))) hPrevFont
= SelectObject( hDC
, hFont
);
1151 parent
= GetParent(hwnd
);
1152 if (!parent
) parent
= hwnd
;
1153 SendMessageW( parent
, WM_CTLCOLORBTN
, (WPARAM
)hDC
, (LPARAM
)hwnd
);
1155 setup_clipping( hwnd
, hDC
);
1157 SendMessageW( GetParent(hwnd
), WM_DRAWITEM
, id
, (LPARAM
)&dis
);
1158 if (hPrevFont
) SelectObject(hDC
, hPrevFont
);