2 * Interface code to StatusWindow widget/control
4 * Copyright 1996 Bruce Milner
5 * Copyright 1998, 1999 Eric Kohl
6 * Copyright 2002 Dimitrie O. Paun
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 * This code was audited for completeness against the documented features
25 * of Comctl32.dll version 6.0 on Sep. 24, 2002, by Dimitrie O. Paun.
27 * Unless otherwise noted, we believe this code to be complete, as per
28 * the specification mentioned above.
29 * If you discover missing features, or bugs, please note them below.
32 * -- CCS_BOTTOM (default)
37 * -- CCS_NOPARENTALIGN
40 * -- CCS_VERT (defaults to RIGHT)
48 #include "wine/unicode.h"
56 #include "wine/debug.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(statusbar
);
79 COLORREF clrBk
; /* background color */
80 BOOL bUnicode
; /* unicode flag */
81 BOOL NtfUnicode
; /* notify format */
82 STATUSWINDOWPART part0
; /* simple window */
83 STATUSWINDOWPART
* parts
;
90 * Run tests using Waite Group Windows95 API Bible Vol. 1&2
91 * The second cdrom contains executables drawstat.exe, gettext.exe,
92 * simple.exe, getparts.exe, setparts.exe, statwnd.exe
99 static const WCHAR themeClass
[] = { 'S','t','a','t','u','s',0 };
103 STATUSBAR_SetPartBounds (STATUS_INFO
*infoPtr
);
105 static inline LPCSTR
debugstr_t(LPCWSTR text
, BOOL isW
)
107 return isW
? debugstr_w(text
) : debugstr_a((LPCSTR
)text
);
111 STATUSBAR_DrawSizeGrip (HTHEME theme
, HDC hdc
, LPRECT lpRect
)
113 HPEN hPenFace
, hPenShadow
, hPenHighlight
, hOldPen
;
117 TRACE("draw size grip %d,%d - %d,%d\n", lpRect
->left
, lpRect
->top
, lpRect
->right
, lpRect
->bottom
);
123 gripperRect
= *lpRect
;
124 if (SUCCEEDED (GetThemePartSize (theme
, hdc
, SP_GRIPPER
, 0, lpRect
,
125 TS_DRAW
, &gripperSize
)))
127 gripperRect
.left
= gripperRect
.right
- gripperSize
.cx
;
128 gripperRect
.top
= gripperRect
.bottom
- gripperSize
.cy
;
129 if (SUCCEEDED (DrawThemeBackground(theme
, hdc
, SP_GRIPPER
, 0, &gripperRect
, NULL
)))
134 pt
.x
= lpRect
->right
- 1;
135 pt
.y
= lpRect
->bottom
- 1;
137 hPenFace
= CreatePen( PS_SOLID
, 1, GetSysColor( COLOR_3DFACE
));
138 hOldPen
= SelectObject( hdc
, hPenFace
);
139 MoveToEx (hdc
, pt
.x
- 12, pt
.y
, NULL
);
140 LineTo (hdc
, pt
.x
, pt
.y
);
141 LineTo (hdc
, pt
.x
, pt
.y
- 13);
146 hPenShadow
= CreatePen( PS_SOLID
, 1, GetSysColor( COLOR_3DSHADOW
));
147 SelectObject( hdc
, hPenShadow
);
148 for (i
= 1; i
< 11; i
+= 4) {
149 MoveToEx (hdc
, pt
.x
- i
, pt
.y
, NULL
);
150 LineTo (hdc
, pt
.x
+ 1, pt
.y
- i
- 1);
152 MoveToEx (hdc
, pt
.x
- i
- 1, pt
.y
, NULL
);
153 LineTo (hdc
, pt
.x
+ 1, pt
.y
- i
- 2);
156 hPenHighlight
= CreatePen( PS_SOLID
, 1, GetSysColor( COLOR_3DHIGHLIGHT
));
157 SelectObject( hdc
, hPenHighlight
);
158 for (i
= 3; i
< 13; i
+= 4) {
159 MoveToEx (hdc
, pt
.x
- i
, pt
.y
, NULL
);
160 LineTo (hdc
, pt
.x
+ 1, pt
.y
- i
- 1);
163 SelectObject (hdc
, hOldPen
);
164 DeleteObject( hPenFace
);
165 DeleteObject( hPenShadow
);
166 DeleteObject( hPenHighlight
);
171 STATUSBAR_DrawPart (STATUS_INFO
*infoPtr
, HDC hdc
, STATUSWINDOWPART
*part
, int itemID
)
173 RECT r
= part
->bound
;
174 UINT border
= BDR_SUNKENOUTER
;
175 HTHEME theme
= GetWindowTheme (infoPtr
->Self
);
176 int themePart
= SP_PANE
;
178 TRACE("part bound %d,%d - %d,%d\n", r
.left
, r
.top
, r
.right
, r
.bottom
);
179 if (part
->style
& SBT_POPOUT
)
180 border
= BDR_RAISEDOUTER
;
181 else if (part
->style
& SBT_NOBORDERS
)
186 if ((GetWindowLongW (infoPtr
->Self
, GWL_STYLE
) & SBARS_SIZEGRIP
)
187 && (infoPtr
->simple
|| (itemID
== (infoPtr
->numParts
-1))))
188 themePart
= SP_GRIPPERPANE
;
189 DrawThemeBackground(theme
, hdc
, themePart
, 0, &r
, NULL
);
192 DrawEdge(hdc
, &r
, border
, BF_RECT
|BF_ADJUST
);
194 if (part
->style
& SBT_OWNERDRAW
) {
197 dis
.CtlID
= GetWindowLongPtrW (infoPtr
->Self
, GWLP_ID
);
199 dis
.hwndItem
= infoPtr
->Self
;
202 dis
.itemData
= (ULONG_PTR
)part
->text
;
203 SendMessageW (infoPtr
->Notify
, WM_DRAWITEM
, (WPARAM
)dis
.CtlID
, (LPARAM
)&dis
);
206 INT cy
= r
.bottom
- r
.top
;
209 DrawIconEx (hdc
, r
.left
, r
.top
, part
->hIcon
, cy
, cy
, 0, 0, DI_NORMAL
);
212 DrawStatusTextW (hdc
, &r
, part
->text
, SBT_NOBORDERS
);
218 STATUSBAR_RefreshPart (STATUS_INFO
*infoPtr
, HDC hdc
, STATUSWINDOWPART
*part
, int itemID
)
224 TRACE("item %d\n", itemID
);
225 if (!IsWindowVisible (infoPtr
->Self
))
228 if (part
->bound
.right
< part
->bound
.left
) return;
230 if ((theme
= GetWindowTheme (infoPtr
->Self
)))
233 GetClientRect (infoPtr
->Self
, &cr
);
234 DrawThemeBackground(theme
, hdc
, 0, 0, &cr
, &part
->bound
);
238 if (infoPtr
->clrBk
!= CLR_DEFAULT
)
239 hbrBk
= CreateSolidBrush (infoPtr
->clrBk
);
241 hbrBk
= GetSysColorBrush (COLOR_3DFACE
);
242 FillRect(hdc
, &part
->bound
, hbrBk
);
243 if (infoPtr
->clrBk
!= CLR_DEFAULT
)
244 DeleteObject (hbrBk
);
247 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
? infoPtr
->hFont
: infoPtr
->hDefaultFont
);
249 STATUSBAR_DrawPart (infoPtr
, hdc
, part
, itemID
);
251 SelectObject (hdc
, hOldFont
);
253 if (GetWindowLongW (infoPtr
->Self
, GWL_STYLE
) & SBARS_SIZEGRIP
) {
256 GetClientRect (infoPtr
->Self
, &rect
);
257 STATUSBAR_DrawSizeGrip (theme
, hdc
, &rect
);
263 STATUSBAR_Refresh (STATUS_INFO
*infoPtr
, HDC hdc
)
272 if (!IsWindowVisible(infoPtr
->Self
))
275 STATUSBAR_SetPartBounds(infoPtr
);
277 GetClientRect (infoPtr
->Self
, &rect
);
279 if ((theme
= GetWindowTheme (infoPtr
->Self
)))
281 DrawThemeBackground(theme
, hdc
, 0, 0, &rect
, NULL
);
285 if (infoPtr
->clrBk
!= CLR_DEFAULT
)
286 hbrBk
= CreateSolidBrush (infoPtr
->clrBk
);
288 hbrBk
= GetSysColorBrush (COLOR_3DFACE
);
289 FillRect(hdc
, &rect
, hbrBk
);
290 if (infoPtr
->clrBk
!= CLR_DEFAULT
)
291 DeleteObject (hbrBk
);
294 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
? infoPtr
->hFont
: infoPtr
->hDefaultFont
);
296 if (infoPtr
->simple
) {
297 STATUSBAR_RefreshPart (infoPtr
, hdc
, &infoPtr
->part0
, 0);
299 for (i
= 0; i
< infoPtr
->numParts
; i
++) {
300 STATUSBAR_RefreshPart (infoPtr
, hdc
, &infoPtr
->parts
[i
], i
);
304 SelectObject (hdc
, hOldFont
);
306 if (GetWindowLongW (infoPtr
->Self
, GWL_STYLE
) & SBARS_SIZEGRIP
)
307 STATUSBAR_DrawSizeGrip (theme
, hdc
, &rect
);
314 STATUSBAR_SetPartBounds (STATUS_INFO
*infoPtr
)
316 STATUSWINDOWPART
*part
;
320 /* get our window size */
321 GetClientRect (infoPtr
->Self
, &rect
);
322 TRACE("client wnd size is %d,%d - %d,%d\n", rect
.left
, rect
.top
, rect
.right
, rect
.bottom
);
324 rect
.left
+= infoPtr
->horizontalBorder
;
325 rect
.top
+= infoPtr
->verticalBorder
;
327 /* set bounds for simple rectangle */
328 infoPtr
->part0
.bound
= rect
;
330 /* set bounds for non-simple rectangles */
331 for (i
= 0; i
< infoPtr
->numParts
; i
++) {
332 part
= &infoPtr
->parts
[i
];
333 r
= &infoPtr
->parts
[i
].bound
;
335 r
->bottom
= rect
.bottom
;
339 r
->left
= infoPtr
->parts
[i
-1].bound
.right
+ infoPtr
->horizontalGap
;
341 r
->right
= rect
.right
;
345 if (infoPtr
->hwndToolTip
) {
348 ti
.cbSize
= sizeof(TTTOOLINFOW
);
349 ti
.hwnd
= infoPtr
->Self
;
352 SendMessageW (infoPtr
->hwndToolTip
, TTM_NEWTOOLRECTW
,
360 STATUSBAR_Relay2Tip (STATUS_INFO
*infoPtr
, UINT uMsg
,
361 WPARAM wParam
, LPARAM lParam
)
365 msg
.hwnd
= infoPtr
->Self
;
369 msg
.time
= GetMessageTime ();
370 msg
.pt
.x
= (short)LOWORD(GetMessagePos ());
371 msg
.pt
.y
= (short)HIWORD(GetMessagePos ());
373 return SendMessageW (infoPtr
->hwndToolTip
, TTM_RELAYEVENT
, 0, (LPARAM
)&msg
);
378 STATUSBAR_GetBorders (STATUS_INFO
*infoPtr
, INT out
[])
381 out
[0] = infoPtr
->horizontalBorder
;
382 out
[1] = infoPtr
->verticalBorder
;
383 out
[2] = infoPtr
->horizontalGap
;
390 STATUSBAR_SetBorders (STATUS_INFO
*infoPtr
, INT in
[])
393 infoPtr
->horizontalBorder
= in
[0];
394 infoPtr
->verticalBorder
= in
[1];
395 infoPtr
->horizontalGap
= in
[2];
396 InvalidateRect(infoPtr
->Self
, NULL
, FALSE
);
403 STATUSBAR_GetIcon (STATUS_INFO
*infoPtr
, INT nPart
)
405 TRACE("%d\n", nPart
);
406 /* MSDN says: "simple parts are indexed with -1" */
407 if ((nPart
< -1) || (nPart
>= infoPtr
->numParts
))
411 return (infoPtr
->part0
.hIcon
);
413 return (infoPtr
->parts
[nPart
].hIcon
);
418 STATUSBAR_GetParts (STATUS_INFO
*infoPtr
, INT num_parts
, INT parts
[])
422 TRACE("(%d)\n", num_parts
);
424 for (i
= 0; i
< num_parts
; i
++) {
425 parts
[i
] = infoPtr
->parts
[i
].x
;
428 return infoPtr
->numParts
;
433 STATUSBAR_GetRect (STATUS_INFO
*infoPtr
, INT nPart
, LPRECT rect
)
435 TRACE("part %d\n", nPart
);
437 *rect
= infoPtr
->part0
.bound
;
439 *rect
= infoPtr
->parts
[nPart
].bound
;
445 STATUSBAR_GetTextA (STATUS_INFO
*infoPtr
, INT nPart
, LPSTR buf
)
447 STATUSWINDOWPART
*part
;
450 TRACE("part %d\n", nPart
);
452 /* MSDN says: "simple parts use index of 0", so this check is ok. */
453 if (nPart
< 0 || nPart
>= infoPtr
->numParts
) return 0;
456 part
= &infoPtr
->part0
;
458 part
= &infoPtr
->parts
[nPart
];
460 if (part
->style
& SBT_OWNERDRAW
)
461 result
= (LRESULT
)part
->text
;
463 DWORD len
= part
->text
? WideCharToMultiByte( CP_ACP
, 0, part
->text
, -1,
464 NULL
, 0, NULL
, NULL
) - 1 : 0;
465 result
= MAKELONG( len
, part
->style
);
466 if (part
->text
&& buf
)
467 WideCharToMultiByte( CP_ACP
, 0, part
->text
, -1, buf
, len
+1, NULL
, NULL
);
474 STATUSBAR_GetTextW (STATUS_INFO
*infoPtr
, INT nPart
, LPWSTR buf
)
476 STATUSWINDOWPART
*part
;
479 TRACE("part %d\n", nPart
);
480 if (nPart
< 0 || nPart
>= infoPtr
->numParts
) return 0;
483 part
= &infoPtr
->part0
;
485 part
= &infoPtr
->parts
[nPart
];
487 if (part
->style
& SBT_OWNERDRAW
)
488 result
= (LRESULT
)part
->text
;
490 result
= part
->text
? strlenW (part
->text
) : 0;
491 result
|= (part
->style
<< 16);
492 if (part
->text
&& buf
)
493 strcpyW (buf
, part
->text
);
500 STATUSBAR_GetTextLength (STATUS_INFO
*infoPtr
, INT nPart
)
502 STATUSWINDOWPART
*part
;
505 TRACE("part %d\n", nPart
);
507 /* MSDN says: "simple parts use index of 0", so this check is ok. */
508 if (nPart
< 0 || nPart
>= infoPtr
->numParts
) return 0;
511 part
= &infoPtr
->part0
;
513 part
= &infoPtr
->parts
[nPart
];
515 if ((~part
->style
& SBT_OWNERDRAW
) && part
->text
)
516 result
= strlenW(part
->text
);
520 result
|= (part
->style
<< 16);
525 STATUSBAR_GetTipTextA (STATUS_INFO
*infoPtr
, INT id
, LPSTR tip
, INT size
)
529 CHAR buf
[INFOTIPSIZE
];
532 if (infoPtr
->hwndToolTip
) {
534 ti
.cbSize
= sizeof(TTTOOLINFOA
);
535 ti
.hwnd
= infoPtr
->Self
;
538 SendMessageA (infoPtr
->hwndToolTip
, TTM_GETTEXTA
, 0, (LPARAM
)&ti
);
540 lstrcpynA (tip
, buf
, size
);
547 STATUSBAR_GetTipTextW (STATUS_INFO
*infoPtr
, INT id
, LPWSTR tip
, INT size
)
551 WCHAR buf
[INFOTIPSIZE
];
554 if (infoPtr
->hwndToolTip
) {
556 ti
.cbSize
= sizeof(TTTOOLINFOW
);
557 ti
.hwnd
= infoPtr
->Self
;
560 SendMessageW(infoPtr
->hwndToolTip
, TTM_GETTEXTW
, 0, (LPARAM
)&ti
);
562 lstrcpynW(tip
, buf
, size
);
570 STATUSBAR_SetBkColor (STATUS_INFO
*infoPtr
, COLORREF color
)
574 oldBkColor
= infoPtr
->clrBk
;
575 infoPtr
->clrBk
= color
;
576 InvalidateRect(infoPtr
->Self
, NULL
, FALSE
);
578 TRACE("CREF: %08x -> %08x\n", oldBkColor
, infoPtr
->clrBk
);
584 STATUSBAR_SetIcon (STATUS_INFO
*infoPtr
, INT nPart
, HICON hIcon
)
586 if ((nPart
< -1) || (nPart
>= infoPtr
->numParts
))
589 TRACE("setting part %d\n", nPart
);
591 /* FIXME: MSDN says "if nPart is -1, the status bar is assumed simple" */
593 if (infoPtr
->part0
.hIcon
== hIcon
) /* same as - no redraw */
595 infoPtr
->part0
.hIcon
= hIcon
;
597 InvalidateRect(infoPtr
->Self
, &infoPtr
->part0
.bound
, FALSE
);
599 if (infoPtr
->parts
[nPart
].hIcon
== hIcon
) /* same as - no redraw */
602 infoPtr
->parts
[nPart
].hIcon
= hIcon
;
603 if (!(infoPtr
->simple
))
604 InvalidateRect(infoPtr
->Self
, &infoPtr
->parts
[nPart
].bound
, FALSE
);
611 STATUSBAR_SetMinHeight (STATUS_INFO
*infoPtr
, INT height
)
614 TRACE("(height=%d)\n", height
);
615 if (IsWindowVisible (infoPtr
->Self
)) {
620 GetClientRect (infoPtr
->Notify
, &parent_rect
);
621 infoPtr
->height
= height
+ infoPtr
->verticalBorder
;
623 if ((theme
= GetWindowTheme (infoPtr
->Self
)))
625 /* Determine bar height from theme such that the content area is
626 * 'height' pixels large */
627 HDC hdc
= GetDC (infoPtr
->Self
);
629 memset (&r
, 0, sizeof (r
));
631 if (SUCCEEDED(GetThemeBackgroundExtent (theme
, hdc
, SP_PANE
, 0, &r
, &r
)))
633 infoPtr
->height
= r
.bottom
- r
.top
;
635 ReleaseDC (infoPtr
->Self
, hdc
);
638 width
= parent_rect
.right
- parent_rect
.left
;
639 x
= parent_rect
.left
;
640 y
= parent_rect
.bottom
- infoPtr
->height
;
641 MoveWindow (infoPtr
->Self
, parent_rect
.left
,
642 parent_rect
.bottom
- infoPtr
->height
,
643 width
, infoPtr
->height
, TRUE
);
644 STATUSBAR_SetPartBounds (infoPtr
);
652 STATUSBAR_SetParts (STATUS_INFO
*infoPtr
, INT count
, LPINT parts
)
654 STATUSWINDOWPART
*tmp
;
657 TRACE("(%d,%p)\n", count
, parts
);
659 oldNumParts
= infoPtr
->numParts
;
660 infoPtr
->numParts
= count
;
661 if (oldNumParts
> infoPtr
->numParts
) {
662 for (i
= infoPtr
->numParts
; i
< oldNumParts
; i
++) {
663 if (infoPtr
->parts
[i
].text
&& !(infoPtr
->parts
[i
].style
& SBT_OWNERDRAW
))
664 Free (infoPtr
->parts
[i
].text
);
666 } else if (oldNumParts
< infoPtr
->numParts
) {
667 tmp
= Alloc (sizeof(STATUSWINDOWPART
) * infoPtr
->numParts
);
668 if (!tmp
) return FALSE
;
669 for (i
= 0; i
< oldNumParts
; i
++) {
670 tmp
[i
] = infoPtr
->parts
[i
];
673 Free (infoPtr
->parts
);
674 infoPtr
->parts
= tmp
;
676 if (oldNumParts
== infoPtr
->numParts
) {
677 for (i
=0; i
< oldNumParts
; i
++)
678 if (infoPtr
->parts
[i
].x
!= parts
[i
])
680 if (i
==oldNumParts
) /* Unchanged? no need to redraw! */
684 for (i
= 0; i
< infoPtr
->numParts
; i
++)
685 infoPtr
->parts
[i
].x
= parts
[i
];
687 if (infoPtr
->hwndToolTip
) {
691 ZeroMemory (&ti
, sizeof(TTTOOLINFOW
));
692 ti
.cbSize
= sizeof(TTTOOLINFOW
);
693 ti
.hwnd
= infoPtr
->Self
;
695 nTipCount
= SendMessageW (infoPtr
->hwndToolTip
, TTM_GETTOOLCOUNT
, 0, 0);
696 if (nTipCount
< infoPtr
->numParts
) {
698 for (i
= nTipCount
; i
< infoPtr
->numParts
; i
++) {
699 TRACE("add tool %d\n", i
);
701 SendMessageW (infoPtr
->hwndToolTip
, TTM_ADDTOOLW
,
705 else if (nTipCount
> infoPtr
->numParts
) {
707 for (i
= nTipCount
- 1; i
>= infoPtr
->numParts
; i
--) {
708 TRACE("delete tool %d\n", i
);
710 SendMessageW (infoPtr
->hwndToolTip
, TTM_DELTOOLW
,
715 STATUSBAR_SetPartBounds (infoPtr
);
716 InvalidateRect(infoPtr
->Self
, NULL
, FALSE
);
722 STATUSBAR_SetTextT (STATUS_INFO
*infoPtr
, INT nPart
, WORD style
,
723 LPCWSTR text
, BOOL isW
)
725 STATUSWINDOWPART
*part
=NULL
;
726 BOOL changed
= FALSE
;
729 if (style
& SBT_OWNERDRAW
) {
730 TRACE("part %d, text %p\n",nPart
,text
);
732 else TRACE("part %d, text %s\n", nPart
, debugstr_t(text
, isW
));
734 /* MSDN says: "If the parameter is set to SB_SIMPLEID (255), the status
735 * window is assumed to be a simple window */
737 if (nPart
== 0x00ff) {
738 part
= &infoPtr
->part0
;
740 if (infoPtr
->parts
&& nPart
>= 0 && nPart
< infoPtr
->numParts
) {
741 part
= &infoPtr
->parts
[nPart
];
744 if (!part
) return FALSE
;
746 if (part
->style
!= style
)
749 oldStyle
= part
->style
;
751 if (style
& SBT_OWNERDRAW
) {
752 if (!(oldStyle
& SBT_OWNERDRAW
)) {
755 } else if (part
->text
== text
)
757 part
->text
= (LPWSTR
)text
;
762 LPCSTR atxt
= (LPCSTR
)text
;
763 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, atxt
, -1, NULL
, 0 );
764 ntext
= Alloc( (len
+ 1)*sizeof(WCHAR
) );
765 if (!ntext
) return FALSE
;
766 MultiByteToWideChar( CP_ACP
, 0, atxt
, -1, ntext
, len
);
768 ntext
= Alloc( (strlenW(text
) + 1)*sizeof(WCHAR
) );
769 if (!ntext
) return FALSE
;
770 strcpyW (ntext
, text
);
773 /* check if text is unchanged -> no need to redraw */
775 if (!changed
&& part
->text
&& !lstrcmpW(ntext
, part
->text
)) {
780 if (!changed
&& !part
->text
)
784 if (part
->text
&& !(oldStyle
& SBT_OWNERDRAW
))
788 InvalidateRect(infoPtr
->Self
, &part
->bound
, FALSE
);
789 UpdateWindow(infoPtr
->Self
);
796 STATUSBAR_SetTipTextA (STATUS_INFO
*infoPtr
, INT id
, LPSTR text
)
798 TRACE("part %d: \"%s\"\n", id
, text
);
799 if (infoPtr
->hwndToolTip
) {
801 ti
.cbSize
= sizeof(TTTOOLINFOA
);
802 ti
.hwnd
= infoPtr
->Self
;
806 SendMessageA (infoPtr
->hwndToolTip
, TTM_UPDATETIPTEXTA
, 0, (LPARAM
)&ti
);
814 STATUSBAR_SetTipTextW (STATUS_INFO
*infoPtr
, INT id
, LPWSTR text
)
816 TRACE("part %d: \"%s\"\n", id
, debugstr_w(text
));
817 if (infoPtr
->hwndToolTip
) {
819 ti
.cbSize
= sizeof(TTTOOLINFOW
);
820 ti
.hwnd
= infoPtr
->Self
;
824 SendMessageW (infoPtr
->hwndToolTip
, TTM_UPDATETIPTEXTW
, 0, (LPARAM
)&ti
);
831 inline static LRESULT
832 STATUSBAR_SetUnicodeFormat (STATUS_INFO
*infoPtr
, BOOL bUnicode
)
834 BOOL bOld
= infoPtr
->bUnicode
;
836 TRACE("(0x%x)\n", bUnicode
);
837 infoPtr
->bUnicode
= bUnicode
;
844 STATUSBAR_Simple (STATUS_INFO
*infoPtr
, BOOL simple
)
848 TRACE("(simple=%d)\n", simple
);
849 if (infoPtr
->simple
== simple
) /* no need to change */
852 infoPtr
->simple
= simple
;
854 /* send notification */
855 nmhdr
.hwndFrom
= infoPtr
->Self
;
856 nmhdr
.idFrom
= GetWindowLongPtrW (infoPtr
->Self
, GWLP_ID
);
857 nmhdr
.code
= SBN_SIMPLEMODECHANGE
;
858 SendMessageW (infoPtr
->Notify
, WM_NOTIFY
, 0, (LPARAM
)&nmhdr
);
859 InvalidateRect(infoPtr
->Self
, NULL
, FALSE
);
865 STATUSBAR_WMDestroy (STATUS_INFO
*infoPtr
)
870 for (i
= 0; i
< infoPtr
->numParts
; i
++) {
871 if (infoPtr
->parts
[i
].text
&& !(infoPtr
->parts
[i
].style
& SBT_OWNERDRAW
))
872 Free (infoPtr
->parts
[i
].text
);
874 if (infoPtr
->part0
.text
&& !(infoPtr
->part0
.style
& SBT_OWNERDRAW
))
875 Free (infoPtr
->part0
.text
);
876 Free (infoPtr
->parts
);
878 /* delete default font */
879 if (infoPtr
->hDefaultFont
)
880 DeleteObject (infoPtr
->hDefaultFont
);
882 /* delete tool tip control */
883 if (infoPtr
->hwndToolTip
)
884 DestroyWindow (infoPtr
->hwndToolTip
);
886 CloseThemeData (GetWindowTheme (infoPtr
->Self
));
888 SetWindowLongPtrW(infoPtr
->Self
, 0, 0);
895 STATUSBAR_WMCreate (HWND hwnd
, LPCREATESTRUCTA lpCreate
)
897 STATUS_INFO
*infoPtr
;
898 NONCLIENTMETRICSW nclm
;
901 int i
, width
, len
, textHeight
= 0;
905 infoPtr
= (STATUS_INFO
*)Alloc (sizeof(STATUS_INFO
));
906 if (!infoPtr
) goto create_fail
;
907 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
909 infoPtr
->Self
= hwnd
;
910 infoPtr
->Notify
= lpCreate
->hwndParent
;
911 infoPtr
->numParts
= 1;
913 infoPtr
->simple
= FALSE
;
914 infoPtr
->clrBk
= CLR_DEFAULT
;
916 infoPtr
->horizontalBorder
= HORZ_BORDER
;
917 infoPtr
->verticalBorder
= VERT_BORDER
;
918 infoPtr
->horizontalGap
= HORZ_GAP
;
920 i
= SendMessageW(infoPtr
->Notify
, WM_NOTIFYFORMAT
, (WPARAM
)hwnd
, NF_QUERY
);
921 infoPtr
->NtfUnicode
= (i
== NFR_UNICODE
);
923 GetClientRect (hwnd
, &rect
);
924 InvalidateRect (hwnd
, &rect
, 0);
927 ZeroMemory (&nclm
, sizeof(nclm
));
928 nclm
.cbSize
= sizeof(nclm
);
929 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS
, nclm
.cbSize
, &nclm
, 0);
930 infoPtr
->hDefaultFont
= CreateFontIndirectW (&nclm
.lfStatusFont
);
932 /* initialize simple case */
933 infoPtr
->part0
.bound
= rect
;
934 infoPtr
->part0
.text
= 0;
935 infoPtr
->part0
.x
= 0;
936 infoPtr
->part0
.style
= 0;
937 infoPtr
->part0
.hIcon
= 0;
939 /* initialize first part */
940 infoPtr
->parts
= Alloc (sizeof(STATUSWINDOWPART
));
941 if (!infoPtr
->parts
) goto create_fail
;
942 infoPtr
->parts
[0].bound
= rect
;
943 infoPtr
->parts
[0].text
= 0;
944 infoPtr
->parts
[0].x
= -1;
945 infoPtr
->parts
[0].style
= 0;
946 infoPtr
->parts
[0].hIcon
= 0;
948 OpenThemeData (hwnd
, themeClass
);
950 if (IsWindowUnicode (hwnd
)) {
951 infoPtr
->bUnicode
= TRUE
;
952 if (lpCreate
->lpszName
&&
953 (len
= strlenW ((LPCWSTR
)lpCreate
->lpszName
))) {
954 infoPtr
->parts
[0].text
= Alloc ((len
+ 1)*sizeof(WCHAR
));
955 if (!infoPtr
->parts
[0].text
) goto create_fail
;
956 strcpyW (infoPtr
->parts
[0].text
, (LPCWSTR
)lpCreate
->lpszName
);
960 if (lpCreate
->lpszName
&&
961 (len
= strlen((LPCSTR
)lpCreate
->lpszName
))) {
962 DWORD lenW
= MultiByteToWideChar( CP_ACP
, 0, (LPCSTR
)lpCreate
->lpszName
, -1, NULL
, 0 );
963 infoPtr
->parts
[0].text
= Alloc (lenW
*sizeof(WCHAR
));
964 if (!infoPtr
->parts
[0].text
) goto create_fail
;
965 MultiByteToWideChar( CP_ACP
, 0, (LPCSTR
)lpCreate
->lpszName
, -1,
966 infoPtr
->parts
[0].text
, lenW
);
970 dwStyle
= GetWindowLongW (hwnd
, GWL_STYLE
);
971 /* native seems to clear WS_BORDER, too */
972 dwStyle
&= ~WS_BORDER
;
974 /* statusbars on managed windows should not have SIZEGRIP style */
975 if ((dwStyle
& SBARS_SIZEGRIP
) && lpCreate
->hwndParent
&&
976 GetPropA( lpCreate
->hwndParent
, "__wine_x11_managed" ))
977 dwStyle
&= ~SBARS_SIZEGRIP
;
979 SetWindowLongW (hwnd
, GWL_STYLE
, dwStyle
);
981 if ((hdc
= GetDC (hwnd
))) {
985 hOldFont
= SelectObject (hdc
, infoPtr
->hDefaultFont
);
986 GetTextMetricsW (hdc
, &tm
);
987 textHeight
= tm
.tmHeight
;
988 SelectObject (hdc
, hOldFont
);
989 ReleaseDC (hwnd
, hdc
);
991 TRACE(" textHeight=%d\n", textHeight
);
993 if (dwStyle
& SBT_TOOLTIPS
) {
994 infoPtr
->hwndToolTip
=
995 CreateWindowExW (0, TOOLTIPS_CLASSW
, NULL
, WS_POPUP
| TTS_ALWAYSTIP
,
996 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
997 CW_USEDEFAULT
, hwnd
, 0,
998 (HINSTANCE
)GetWindowLongPtrW(hwnd
, GWLP_HINSTANCE
), NULL
);
1000 if (infoPtr
->hwndToolTip
) {
1001 NMTOOLTIPSCREATED nmttc
;
1003 nmttc
.hdr
.hwndFrom
= hwnd
;
1004 nmttc
.hdr
.idFrom
= GetWindowLongPtrW (hwnd
, GWLP_ID
);
1005 nmttc
.hdr
.code
= NM_TOOLTIPSCREATED
;
1006 nmttc
.hwndToolTips
= infoPtr
->hwndToolTip
;
1008 SendMessageW (lpCreate
->hwndParent
, WM_NOTIFY
,
1009 (WPARAM
)nmttc
.hdr
.idFrom
, (LPARAM
)&nmttc
);
1013 if (!(dwStyle
& CCS_NORESIZE
)) { /* don't resize wnd if it doesn't want it ! */
1015 GetClientRect (infoPtr
->Notify
, &rect
);
1016 width
= rect
.right
- rect
.left
;
1017 infoPtr
->height
= textHeight
+ 4 + infoPtr
->verticalBorder
;
1019 if ((theme
= GetWindowTheme (hwnd
)))
1021 /* Determine bar height from theme such that the content area is
1022 * textHeight pixels large */
1023 HDC hdc
= GetDC (hwnd
);
1025 memset (&r
, 0, sizeof (r
));
1026 r
.bottom
= textHeight
;
1027 if (SUCCEEDED(GetThemeBackgroundExtent (theme
, hdc
, SP_PANE
, 0, &r
, &r
)))
1029 infoPtr
->height
= r
.bottom
- r
.top
;
1031 ReleaseDC (hwnd
, hdc
);
1034 SetWindowPos(hwnd
, 0, lpCreate
->x
, lpCreate
->y
- 1,
1035 width
, infoPtr
->height
, SWP_NOZORDER
);
1036 STATUSBAR_SetPartBounds (infoPtr
);
1042 TRACE(" failed!\n");
1043 if (infoPtr
) STATUSBAR_WMDestroy(infoPtr
);
1048 /* in contrast to SB_GETTEXT*, WM_GETTEXT handles the text
1049 * of the first part only (usual behaviour) */
1051 STATUSBAR_WMGetText (STATUS_INFO
*infoPtr
, INT size
, LPWSTR buf
)
1056 if (!(infoPtr
->parts
[0].text
))
1058 if (infoPtr
->bUnicode
)
1059 len
= strlenW (infoPtr
->parts
[0].text
);
1061 len
= WideCharToMultiByte( CP_ACP
, 0, infoPtr
->parts
[0].text
, -1, NULL
, 0, NULL
, NULL
)-1;
1064 if (infoPtr
->bUnicode
)
1065 strcpyW (buf
, infoPtr
->parts
[0].text
);
1067 WideCharToMultiByte( CP_ACP
, 0, infoPtr
->parts
[0].text
, -1,
1068 (LPSTR
)buf
, len
+1, NULL
, NULL
);
1077 STATUSBAR_WMNCHitTest (STATUS_INFO
*infoPtr
, INT x
, INT y
)
1079 if (GetWindowLongW (infoPtr
->Self
, GWL_STYLE
) & SBARS_SIZEGRIP
) {
1083 GetClientRect (infoPtr
->Self
, &rect
);
1087 ScreenToClient (infoPtr
->Self
, &pt
);
1089 rect
.left
= rect
.right
- 13;
1092 if (PtInRect (&rect
, pt
))
1093 return HTBOTTOMRIGHT
;
1101 STATUSBAR_WMPaint (STATUS_INFO
*infoPtr
, HDC hdc
)
1106 if (hdc
) return STATUSBAR_Refresh (infoPtr
, hdc
);
1107 hdc
= BeginPaint (infoPtr
->Self
, &ps
);
1108 STATUSBAR_Refresh (infoPtr
, hdc
);
1109 EndPaint (infoPtr
->Self
, &ps
);
1116 STATUSBAR_WMSetFont (STATUS_INFO
*infoPtr
, HFONT font
, BOOL redraw
)
1118 infoPtr
->hFont
= font
;
1119 TRACE("%p\n", infoPtr
->hFont
);
1121 InvalidateRect(infoPtr
->Self
, NULL
, FALSE
);
1128 STATUSBAR_WMSetText (STATUS_INFO
*infoPtr
, LPCSTR text
)
1130 STATUSWINDOWPART
*part
;
1134 if (infoPtr
->numParts
== 0)
1137 part
= &infoPtr
->parts
[0];
1138 /* duplicate string */
1142 if (infoPtr
->bUnicode
) {
1143 if (text
&& (len
= strlenW((LPCWSTR
)text
))) {
1144 part
->text
= Alloc ((len
+1)*sizeof(WCHAR
));
1145 if (!part
->text
) return FALSE
;
1146 strcpyW (part
->text
, (LPCWSTR
)text
);
1150 if (text
&& (len
= lstrlenA(text
))) {
1151 DWORD lenW
= MultiByteToWideChar( CP_ACP
, 0, text
, -1, NULL
, 0 );
1152 part
->text
= Alloc (lenW
*sizeof(WCHAR
));
1153 if (!part
->text
) return FALSE
;
1154 MultiByteToWideChar( CP_ACP
, 0, text
, -1, part
->text
, lenW
);
1158 InvalidateRect(infoPtr
->Self
, &part
->bound
, FALSE
);
1165 STATUSBAR_WMSize (STATUS_INFO
*infoPtr
, WORD flags
)
1170 /* Need to resize width to match parent */
1171 TRACE("flags %04x\n", flags
);
1173 if (flags
!= SIZE_RESTORED
&& flags
!= SIZE_MAXIMIZED
) {
1174 WARN("flags MUST be SIZE_RESTORED or SIZE_MAXIMIZED\n");
1178 if (GetWindowLongW(infoPtr
->Self
, GWL_STYLE
) & CCS_NORESIZE
) return FALSE
;
1180 /* width and height don't apply */
1181 GetClientRect (infoPtr
->Notify
, &parent_rect
);
1182 width
= parent_rect
.right
- parent_rect
.left
;
1183 x
= parent_rect
.left
;
1184 y
= parent_rect
.bottom
- infoPtr
->height
;
1185 MoveWindow (infoPtr
->Self
, parent_rect
.left
,
1186 parent_rect
.bottom
- infoPtr
->height
,
1187 width
, infoPtr
->height
, TRUE
);
1188 STATUSBAR_SetPartBounds (infoPtr
);
1193 /* update theme after a WM_THEMECHANGED message */
1194 static LRESULT
theme_changed (STATUS_INFO
* infoPtr
)
1196 HTHEME theme
= GetWindowTheme (infoPtr
->Self
);
1197 CloseThemeData (theme
);
1198 OpenThemeData (infoPtr
->Self
, themeClass
);
1204 STATUSBAR_NotifyFormat (STATUS_INFO
*infoPtr
, HWND from
, INT cmd
)
1206 if (cmd
== NF_REQUERY
) {
1207 INT i
= SendMessageW(from
, WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->Self
, NF_QUERY
);
1208 infoPtr
->NtfUnicode
= (i
== NFR_UNICODE
);
1210 return infoPtr
->NtfUnicode
? NFR_UNICODE
: NFR_ANSI
;
1215 STATUSBAR_SendNotify (STATUS_INFO
*infoPtr
, UINT code
)
1219 TRACE("code %04x\n", code
);
1220 nmhdr
.hwndFrom
= infoPtr
->Self
;
1221 nmhdr
.idFrom
= GetWindowLongPtrW (infoPtr
->Self
, GWLP_ID
);
1223 SendMessageW (infoPtr
->Notify
, WM_NOTIFY
, 0, (LPARAM
)&nmhdr
);
1229 static LRESULT WINAPI
1230 StatusWindowProc (HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1232 STATUS_INFO
*infoPtr
= (STATUS_INFO
*)GetWindowLongPtrW (hwnd
, 0);
1233 INT nPart
= ((INT
) wParam
) & 0x00ff;
1236 TRACE("hwnd=%p msg=%x wparam=%x lparam=%lx\n", hwnd
, msg
, wParam
, lParam
);
1237 if (!infoPtr
&& msg
!= WM_CREATE
)
1238 return DefWindowProcW (hwnd
, msg
, wParam
, lParam
);
1242 return STATUSBAR_GetBorders (infoPtr
, (INT
*)lParam
);
1245 return (LRESULT
)STATUSBAR_GetIcon (infoPtr
, nPart
);
1248 return STATUSBAR_GetParts (infoPtr
, (INT
)wParam
, (INT
*)lParam
);
1251 return STATUSBAR_GetRect (infoPtr
, nPart
, (LPRECT
)lParam
);
1254 return STATUSBAR_GetTextA (infoPtr
, nPart
, (LPSTR
)lParam
);
1257 return STATUSBAR_GetTextW (infoPtr
, nPart
, (LPWSTR
)lParam
);
1259 case SB_GETTEXTLENGTHA
:
1260 case SB_GETTEXTLENGTHW
:
1261 return STATUSBAR_GetTextLength (infoPtr
, nPart
);
1263 case SB_GETTIPTEXTA
:
1264 return STATUSBAR_GetTipTextA (infoPtr
, LOWORD(wParam
), (LPSTR
)lParam
, HIWORD(wParam
));
1266 case SB_GETTIPTEXTW
:
1267 return STATUSBAR_GetTipTextW (infoPtr
, LOWORD(wParam
), (LPWSTR
)lParam
, HIWORD(wParam
));
1269 case SB_GETUNICODEFORMAT
:
1270 return infoPtr
->bUnicode
;
1273 return infoPtr
->simple
;
1276 return STATUSBAR_SetBorders (infoPtr
, (INT
*)lParam
);
1279 return STATUSBAR_SetBkColor (infoPtr
, (COLORREF
)lParam
);
1282 return STATUSBAR_SetIcon (infoPtr
, nPart
, (HICON
)lParam
);
1284 case SB_SETMINHEIGHT
:
1285 return STATUSBAR_SetMinHeight (infoPtr
, (INT
)wParam
);
1288 return STATUSBAR_SetParts (infoPtr
, (INT
)wParam
, (LPINT
)lParam
);
1291 return STATUSBAR_SetTextT (infoPtr
, nPart
, wParam
& 0xff00, (LPCWSTR
)lParam
, FALSE
);
1294 return STATUSBAR_SetTextT (infoPtr
, nPart
, wParam
& 0xff00, (LPCWSTR
)lParam
, TRUE
);
1296 case SB_SETTIPTEXTA
:
1297 return STATUSBAR_SetTipTextA (infoPtr
, (INT
)wParam
, (LPSTR
)lParam
);
1299 case SB_SETTIPTEXTW
:
1300 return STATUSBAR_SetTipTextW (infoPtr
, (INT
)wParam
, (LPWSTR
)lParam
);
1302 case SB_SETUNICODEFORMAT
:
1303 return STATUSBAR_SetUnicodeFormat (infoPtr
, (BOOL
)wParam
);
1306 return STATUSBAR_Simple (infoPtr
, (BOOL
)wParam
);
1309 return STATUSBAR_WMCreate (hwnd
, (LPCREATESTRUCTA
)lParam
);
1312 return STATUSBAR_WMDestroy (infoPtr
);
1315 return (LRESULT
)(infoPtr
->hFont
? infoPtr
->hFont
: infoPtr
->hDefaultFont
);
1318 return STATUSBAR_WMGetText (infoPtr
, (INT
)wParam
, (LPWSTR
)lParam
);
1320 case WM_GETTEXTLENGTH
:
1321 return STATUSBAR_GetTextLength (infoPtr
, 0);
1323 case WM_LBUTTONDBLCLK
:
1324 return STATUSBAR_SendNotify (infoPtr
, NM_DBLCLK
);
1327 return STATUSBAR_SendNotify (infoPtr
, NM_CLICK
);
1330 return STATUSBAR_Relay2Tip (infoPtr
, msg
, wParam
, lParam
);
1333 res
= STATUSBAR_WMNCHitTest(infoPtr
, (short)LOWORD(lParam
),
1334 (short)HIWORD(lParam
));
1335 if (res
!= HTERROR
) return res
;
1336 return DefWindowProcW (hwnd
, msg
, wParam
, lParam
);
1338 case WM_NCLBUTTONUP
:
1339 case WM_NCLBUTTONDOWN
:
1340 PostMessageW (infoPtr
->Notify
, msg
, wParam
, lParam
);
1343 case WM_NOTIFYFORMAT
:
1344 return STATUSBAR_NotifyFormat(infoPtr
, (HWND
)wParam
, (INT
)lParam
);
1346 case WM_PRINTCLIENT
:
1348 return STATUSBAR_WMPaint (infoPtr
, (HDC
)wParam
);
1350 case WM_RBUTTONDBLCLK
:
1351 return STATUSBAR_SendNotify (infoPtr
, NM_RDBLCLK
);
1354 return STATUSBAR_SendNotify (infoPtr
, NM_RCLICK
);
1357 return STATUSBAR_WMSetFont (infoPtr
, (HFONT
)wParam
, LOWORD(lParam
));
1360 return STATUSBAR_WMSetText (infoPtr
, (LPCSTR
)lParam
);
1363 if (STATUSBAR_WMSize (infoPtr
, (WORD
)wParam
)) return 0;
1364 return DefWindowProcW (hwnd
, msg
, wParam
, lParam
);
1366 case WM_THEMECHANGED
:
1367 return theme_changed (infoPtr
);
1370 if ((msg
>= WM_USER
) && (msg
< WM_APP
))
1371 ERR("unknown msg %04x wp=%04x lp=%08lx\n",
1372 msg
, wParam
, lParam
);
1373 return DefWindowProcW (hwnd
, msg
, wParam
, lParam
);
1378 /***********************************************************************
1379 * STATUS_Register [Internal]
1381 * Registers the status window class.
1385 STATUS_Register (void)
1389 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
1390 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_VREDRAW
;
1391 wndClass
.lpfnWndProc
= StatusWindowProc
;
1392 wndClass
.cbClsExtra
= 0;
1393 wndClass
.cbWndExtra
= sizeof(STATUS_INFO
*);
1394 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
1395 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_BTNFACE
+ 1);
1396 wndClass
.lpszClassName
= STATUSCLASSNAMEW
;
1398 RegisterClassW (&wndClass
);
1402 /***********************************************************************
1403 * STATUS_Unregister [Internal]
1405 * Unregisters the status window class.
1409 STATUS_Unregister (void)
1411 UnregisterClassW (STATUSCLASSNAMEW
, NULL
);