riched20: Add newlines to ERR macro output.
[wine] / dlls / comctl32 / status.c
1 /*
2  * Interface code to StatusWindow widget/control
3  *
4  * Copyright 1996 Bruce Milner
5  * Copyright 1998, 1999 Eric Kohl
6  * Copyright 2002 Dimitrie O. Paun
7  *
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.
12  *
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.
17  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  * NOTE
23  * 
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.
26  * 
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.
30  * 
31  * TODO:
32  *      -- CCS_BOTTOM (default)
33  *      -- CCS_LEFT
34  *      -- CCS_NODEVIDER
35  *      -- CCS_NOMOVEX
36  *      -- CCS_NOMOVEY
37  *      -- CCS_NOPARENTALIGN
38  *      -- CCS_RIGHT
39  *      -- CCS_TOP
40  *      -- CCS_VERT (defaults to RIGHT)
41  */
42
43 #include <stdarg.h>
44 #include <string.h>
45
46 #include "windef.h"
47 #include "winbase.h"
48 #include "wine/unicode.h"
49 #include "wingdi.h"
50 #include "winuser.h"
51 #include "winnls.h"
52 #include "commctrl.h"
53 #include "comctl32.h"
54 #include "uxtheme.h"
55 #include "tmschema.h"
56 #include "wine/debug.h"
57
58 WINE_DEFAULT_DEBUG_CHANNEL(statusbar);
59
60 typedef struct
61 {
62     INT         x;
63     INT         style;
64     RECT        bound;
65     LPWSTR      text;
66     HICON       hIcon;
67 } STATUSWINDOWPART;
68
69 typedef struct
70 {
71     HWND              Self;
72     HWND              Notify;
73     WORD              numParts;
74     UINT              height;
75     BOOL              simple;
76     HWND              hwndToolTip;
77     HFONT             hFont;
78     HFONT             hDefaultFont;
79     COLORREF          clrBk;            /* background color */
80     BOOL              bUnicode;         /* unicode flag */
81     BOOL              NtfUnicode;       /* notify format */
82     STATUSWINDOWPART  part0;            /* simple window */
83     STATUSWINDOWPART* parts;
84     INT               horizontalBorder;
85     INT               verticalBorder;
86     INT               horizontalGap;
87 } STATUS_INFO;
88
89 /*
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
93  */
94
95 #define HORZ_BORDER 0
96 #define VERT_BORDER 2
97 #define HORZ_GAP    2
98
99 static const WCHAR themeClass[] = { 'S','t','a','t','u','s',0 };
100
101 /* prototype */
102 static void
103 STATUSBAR_SetPartBounds (STATUS_INFO *infoPtr);
104
105 static inline LPCSTR debugstr_t(LPCWSTR text, BOOL isW)
106 {
107   return isW ? debugstr_w(text) : debugstr_a((LPCSTR)text);
108 }
109
110 static void
111 STATUSBAR_DrawSizeGrip (HTHEME theme, HDC hdc, LPRECT lpRect)
112 {
113     HPEN hPenFace, hPenShadow, hPenHighlight, hOldPen;
114     POINT pt;
115     INT i;
116
117     TRACE("draw size grip %ld,%ld - %ld,%ld\n", lpRect->left, lpRect->top, lpRect->right, lpRect->bottom);
118     
119     if (theme)
120     {
121         RECT gripperRect;
122         SIZE gripperSize;
123         gripperRect = *lpRect;
124         if (SUCCEEDED (GetThemePartSize (theme, hdc, SP_GRIPPER, 0, lpRect, 
125             TS_DRAW, &gripperSize)))
126         {
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)))
130                 return;
131         }
132     }
133
134     pt.x = lpRect->right - 1;
135     pt.y = lpRect->bottom - 1;
136
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);
142
143     pt.x--;
144     pt.y--;
145
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);
151
152         MoveToEx (hdc, pt.x - i - 1, pt.y, NULL);
153         LineTo (hdc, pt.x + 1, pt.y - i - 2);
154     }
155
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);
161     }
162
163     SelectObject (hdc, hOldPen);
164     DeleteObject( hPenFace );
165     DeleteObject( hPenShadow );
166     DeleteObject( hPenHighlight );
167 }
168
169
170 static void
171 STATUSBAR_DrawPart (STATUS_INFO *infoPtr, HDC hdc, STATUSWINDOWPART *part, int itemID)
172 {
173     RECT r = part->bound;
174     UINT border = BDR_SUNKENOUTER;
175     HTHEME theme = GetWindowTheme (infoPtr->Self);
176     int themePart = SP_PANE;
177
178     TRACE("part bound %ld,%ld - %ld,%ld\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)
182         border = 0;
183
184     if (theme)
185     {
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);
190     }
191     else
192         DrawEdge(hdc, &r, border, BF_RECT|BF_ADJUST);
193
194     if (part->style & SBT_OWNERDRAW) {
195         DRAWITEMSTRUCT dis;
196
197         dis.CtlID = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
198         dis.itemID = itemID;
199         dis.hwndItem = infoPtr->Self;
200         dis.hDC = hdc;
201         dis.rcItem = r;
202         dis.itemData = (ULONG_PTR)part->text;
203         SendMessageW (infoPtr->Notify, WM_DRAWITEM, (WPARAM)dis.CtlID, (LPARAM)&dis);
204     } else {
205         if (part->hIcon) {
206            INT cy = r.bottom - r.top;
207
208             r.left += 2;
209             DrawIconEx (hdc, r.left, r.top, part->hIcon, cy, cy, 0, 0, DI_NORMAL);
210             r.left += cy;
211         }
212         DrawStatusTextW (hdc, &r, part->text, SBT_NOBORDERS);
213     }
214 }
215
216
217 static void
218 STATUSBAR_RefreshPart (STATUS_INFO *infoPtr, HDC hdc, STATUSWINDOWPART *part, int itemID)
219 {
220     HBRUSH hbrBk;
221     HFONT  hOldFont;
222     HTHEME theme;
223
224     TRACE("item %d\n", itemID);
225     if (!IsWindowVisible (infoPtr->Self))
226         return;
227
228     if (part->bound.right < part->bound.left) return;
229
230     if ((theme = GetWindowTheme (infoPtr->Self)))
231     {
232         RECT cr;
233         GetClientRect (infoPtr->Self, &cr);
234         DrawThemeBackground(theme, hdc, 0, 0, &cr, &part->bound);
235     }
236     else
237     {
238         if (infoPtr->clrBk != CLR_DEFAULT)
239                 hbrBk = CreateSolidBrush (infoPtr->clrBk);
240         else
241                 hbrBk = GetSysColorBrush (COLOR_3DFACE);
242         FillRect(hdc, &part->bound, hbrBk);
243         if (infoPtr->clrBk != CLR_DEFAULT)
244                 DeleteObject (hbrBk);
245     }
246
247     hOldFont = SelectObject (hdc, infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont);
248
249         STATUSBAR_DrawPart (infoPtr, hdc, part, itemID);
250
251     SelectObject (hdc, hOldFont);
252
253     if (GetWindowLongW (infoPtr->Self, GWL_STYLE) & SBARS_SIZEGRIP) {
254         RECT rect;
255
256         GetClientRect (infoPtr->Self, &rect);
257         STATUSBAR_DrawSizeGrip (theme, hdc, &rect);
258     }
259 }
260
261
262 static LRESULT
263 STATUSBAR_Refresh (STATUS_INFO *infoPtr, HDC hdc)
264 {
265     int      i;
266     RECT   rect;
267     HBRUSH hbrBk;
268     HFONT  hOldFont;
269     HTHEME theme;
270
271     TRACE("\n");
272     if (!IsWindowVisible(infoPtr->Self))
273         return 0;
274
275     STATUSBAR_SetPartBounds(infoPtr);
276
277     GetClientRect (infoPtr->Self, &rect);
278
279     if ((theme = GetWindowTheme (infoPtr->Self)))
280     {
281         DrawThemeBackground(theme, hdc, 0, 0, &rect, NULL);
282     }
283     else
284     {
285         if (infoPtr->clrBk != CLR_DEFAULT)
286             hbrBk = CreateSolidBrush (infoPtr->clrBk);
287         else
288             hbrBk = GetSysColorBrush (COLOR_3DFACE);
289         FillRect(hdc, &rect, hbrBk);
290         if (infoPtr->clrBk != CLR_DEFAULT)
291             DeleteObject (hbrBk);
292     }
293
294     hOldFont = SelectObject (hdc, infoPtr->hFont ? infoPtr->hFont : infoPtr->hDefaultFont);
295
296     if (infoPtr->simple) {
297         STATUSBAR_RefreshPart (infoPtr, hdc, &infoPtr->part0, 0);
298     } else {
299         for (i = 0; i < infoPtr->numParts; i++) {
300             STATUSBAR_RefreshPart (infoPtr, hdc, &infoPtr->parts[i], i);
301         }
302     }
303
304     SelectObject (hdc, hOldFont);
305
306     if (GetWindowLongW (infoPtr->Self, GWL_STYLE) & SBARS_SIZEGRIP)
307             STATUSBAR_DrawSizeGrip (theme, hdc, &rect);
308
309     return 0;
310 }
311
312
313 static void
314 STATUSBAR_SetPartBounds (STATUS_INFO *infoPtr)
315 {
316     STATUSWINDOWPART *part;
317     RECT rect, *r;
318     int i;
319
320     /* get our window size */
321     GetClientRect (infoPtr->Self, &rect);
322     TRACE("client wnd size is %ld,%ld - %ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom);
323
324     rect.left += infoPtr->horizontalBorder;
325     rect.top += infoPtr->verticalBorder;
326
327     /* set bounds for simple rectangle */
328     infoPtr->part0.bound = rect;
329
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;
334         r->top = rect.top;
335         r->bottom = rect.bottom;
336         if (i == 0)
337             r->left = 0;
338         else
339             r->left = infoPtr->parts[i-1].bound.right + infoPtr->horizontalGap;
340         if (part->x == -1)
341             r->right = rect.right;
342         else
343             r->right = part->x;
344
345         if (infoPtr->hwndToolTip) {
346             TTTOOLINFOW ti;
347
348             ti.cbSize = sizeof(TTTOOLINFOW);
349             ti.hwnd = infoPtr->Self;
350             ti.uId = i;
351             ti.rect = *r;
352             SendMessageW (infoPtr->hwndToolTip, TTM_NEWTOOLRECTW,
353                             0, (LPARAM)&ti);
354         }
355     }
356 }
357
358
359 static LRESULT
360 STATUSBAR_Relay2Tip (STATUS_INFO *infoPtr, UINT uMsg,
361                      WPARAM wParam, LPARAM lParam)
362 {
363     MSG msg;
364
365     msg.hwnd = infoPtr->Self;
366     msg.message = uMsg;
367     msg.wParam = wParam;
368     msg.lParam = lParam;
369     msg.time = GetMessageTime ();
370     msg.pt.x = LOWORD(GetMessagePos ());
371     msg.pt.y = HIWORD(GetMessagePos ());
372
373     return SendMessageW (infoPtr->hwndToolTip, TTM_RELAYEVENT, 0, (LPARAM)&msg);
374 }
375
376
377 static BOOL
378 STATUSBAR_GetBorders (STATUS_INFO *infoPtr, INT out[])
379 {
380     TRACE("\n");
381     out[0] = infoPtr->horizontalBorder;
382     out[1] = infoPtr->verticalBorder;
383     out[2] = infoPtr->horizontalGap;
384
385     return TRUE;
386 }
387
388
389 static BOOL
390 STATUSBAR_SetBorders (STATUS_INFO *infoPtr, INT in[])
391 {
392     TRACE("\n");
393     infoPtr->horizontalBorder = in[0];
394     infoPtr->verticalBorder = in[1];
395     infoPtr->horizontalGap = in[2];
396     InvalidateRect(infoPtr->Self, NULL, FALSE);
397
398     return TRUE;
399 }
400
401
402 static HICON
403 STATUSBAR_GetIcon (STATUS_INFO *infoPtr, INT nPart)
404 {
405     TRACE("%d\n", nPart);
406     /* MSDN says: "simple parts are indexed with -1" */
407     if ((nPart < -1) || (nPart >= infoPtr->numParts))
408         return 0;
409
410     if (nPart == -1)
411         return (infoPtr->part0.hIcon);
412     else
413         return (infoPtr->parts[nPart].hIcon);
414 }
415
416
417 static INT
418 STATUSBAR_GetParts (STATUS_INFO *infoPtr, INT num_parts, INT parts[])
419 {
420     INT   i;
421
422     TRACE("(%d)\n", num_parts);
423     if (parts) {
424         for (i = 0; i < num_parts; i++) {
425             parts[i] = infoPtr->parts[i].x;
426         }
427     }
428     return infoPtr->numParts;
429 }
430
431
432 static BOOL
433 STATUSBAR_GetRect (STATUS_INFO *infoPtr, INT nPart, LPRECT rect)
434 {
435     TRACE("part %d\n", nPart);
436     if (infoPtr->simple)
437         *rect = infoPtr->part0.bound;
438     else
439         *rect = infoPtr->parts[nPart].bound;
440     return TRUE;
441 }
442
443
444 static LRESULT
445 STATUSBAR_GetTextA (STATUS_INFO *infoPtr, INT nPart, LPSTR buf)
446 {
447     STATUSWINDOWPART *part;
448     LRESULT result;
449
450     TRACE("part %d\n", nPart);
451
452     /* MSDN says: "simple parts use index of 0", so this check is ok. */
453     if (nPart < 0 || nPart >= infoPtr->numParts) return 0;
454
455     if (infoPtr->simple)
456         part = &infoPtr->part0;
457     else
458         part = &infoPtr->parts[nPart];
459
460     if (part->style & SBT_OWNERDRAW)
461         result = (LRESULT)part->text;
462     else {
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 );
468     }
469     return result;
470 }
471
472
473 static LRESULT
474 STATUSBAR_GetTextW (STATUS_INFO *infoPtr, INT nPart, LPWSTR buf)
475 {
476     STATUSWINDOWPART *part;
477     LRESULT result;
478
479     TRACE("part %d\n", nPart);
480     if (nPart < 0 || nPart >= infoPtr->numParts) return 0;
481
482     if (infoPtr->simple)
483         part = &infoPtr->part0;
484     else
485         part = &infoPtr->parts[nPart];
486
487     if (part->style & SBT_OWNERDRAW)
488         result = (LRESULT)part->text;
489     else {
490         result = part->text ? strlenW (part->text) : 0;
491         result |= (part->style << 16);
492         if (part->text && buf)
493             strcpyW (buf, part->text);
494     }
495     return result;
496 }
497
498
499 static LRESULT
500 STATUSBAR_GetTextLength (STATUS_INFO *infoPtr, INT nPart)
501 {
502     STATUSWINDOWPART *part;
503     DWORD result;
504
505     TRACE("part %d\n", nPart);
506
507     /* MSDN says: "simple parts use index of 0", so this check is ok. */
508     if (nPart < 0 || nPart >= infoPtr->numParts) return 0;
509
510     if (infoPtr->simple)
511         part = &infoPtr->part0;
512     else
513         part = &infoPtr->parts[nPart];
514
515     if ((~part->style & SBT_OWNERDRAW) && part->text)
516         result = strlenW(part->text);
517     else
518         result = 0;
519
520     result |= (part->style << 16);
521     return result;
522 }
523
524 static LRESULT
525 STATUSBAR_GetTipTextA (STATUS_INFO *infoPtr, INT id, LPSTR tip, INT size)
526 {
527     TRACE("\n");
528     if (tip) {
529         CHAR buf[INFOTIPSIZE];
530         buf[0]='\0';
531
532         if (infoPtr->hwndToolTip) {
533             TTTOOLINFOA ti;
534             ti.cbSize = sizeof(TTTOOLINFOA);
535             ti.hwnd = infoPtr->Self;
536             ti.uId = id;
537             ti.lpszText = buf;
538             SendMessageA (infoPtr->hwndToolTip, TTM_GETTEXTA, 0, (LPARAM)&ti);
539         }
540         lstrcpynA (tip, buf, size);
541     }
542     return 0;
543 }
544
545
546 static LRESULT
547 STATUSBAR_GetTipTextW (STATUS_INFO *infoPtr, INT id, LPWSTR tip, INT size)
548 {
549     TRACE("\n");
550     if (tip) {
551         WCHAR buf[INFOTIPSIZE];
552         buf[0]=0;
553
554         if (infoPtr->hwndToolTip) {
555             TTTOOLINFOW ti;
556             ti.cbSize = sizeof(TTTOOLINFOW);
557             ti.hwnd = infoPtr->Self;
558             ti.uId = id;
559             ti.lpszText = buf;
560             SendMessageW(infoPtr->hwndToolTip, TTM_GETTEXTW, 0, (LPARAM)&ti);
561         }
562         lstrcpynW(tip, buf, size);
563     }
564
565     return 0;
566 }
567
568
569 static COLORREF
570 STATUSBAR_SetBkColor (STATUS_INFO *infoPtr, COLORREF color)
571 {
572     COLORREF oldBkColor;
573
574     oldBkColor = infoPtr->clrBk;
575     infoPtr->clrBk = color;
576     InvalidateRect(infoPtr->Self, NULL, FALSE);
577
578     TRACE("CREF: %08lx -> %08lx\n", oldBkColor, infoPtr->clrBk);
579     return oldBkColor;
580 }
581
582
583 static BOOL
584 STATUSBAR_SetIcon (STATUS_INFO *infoPtr, INT nPart, HICON hIcon)
585 {
586     if ((nPart < -1) || (nPart >= infoPtr->numParts))
587         return FALSE;
588
589     TRACE("setting part %d\n", nPart);
590
591     /* FIXME: MSDN says "if nPart is -1, the status bar is assumed simple" */
592     if (nPart == -1) {
593         if (infoPtr->part0.hIcon == hIcon) /* same as - no redraw */
594             return TRUE;
595         infoPtr->part0.hIcon = hIcon;
596         if (infoPtr->simple)
597             InvalidateRect(infoPtr->Self, &infoPtr->part0.bound, FALSE);
598     } else {
599         if (infoPtr->parts[nPart].hIcon == hIcon) /* same as - no redraw */
600             return TRUE;
601
602         infoPtr->parts[nPart].hIcon = hIcon;
603         if (!(infoPtr->simple))
604             InvalidateRect(infoPtr->Self, &infoPtr->parts[nPart].bound, FALSE);
605     }
606     return TRUE;
607 }
608
609
610 static BOOL
611 STATUSBAR_SetMinHeight (STATUS_INFO *infoPtr, INT height)
612 {
613
614     TRACE("(height=%d)\n", height);
615     if (IsWindowVisible (infoPtr->Self)) {
616         INT  width, x, y;
617         RECT parent_rect;
618         HTHEME theme;
619
620         GetClientRect (infoPtr->Notify, &parent_rect);
621         infoPtr->height = height + infoPtr->verticalBorder;
622         
623         if ((theme = GetWindowTheme (infoPtr->Self)))
624         {
625             /* Determine bar height from theme such that the content area is
626              * 'height' pixels large */
627             HDC hdc = GetDC (infoPtr->Self);
628             RECT r;
629             memset (&r, 0, sizeof (r));
630             r.bottom = height;
631             if (SUCCEEDED(GetThemeBackgroundExtent (theme, hdc, SP_PANE, 0, &r, &r)))
632             {
633                 infoPtr->height = r.bottom - r.top;
634             }
635             ReleaseDC (infoPtr->Self, hdc);
636         }
637         
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);
645     }
646
647     return TRUE;
648 }
649
650
651 static BOOL
652 STATUSBAR_SetParts (STATUS_INFO *infoPtr, INT count, LPINT parts)
653 {
654     STATUSWINDOWPART *tmp;
655     int i, oldNumParts;
656
657     TRACE("(%d,%p)\n", count, parts);
658
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);
665         }
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];
671         }
672         if (infoPtr->parts)
673             Free (infoPtr->parts);
674         infoPtr->parts = tmp;
675     }
676     if (oldNumParts == infoPtr->numParts) {
677         for (i=0; i < oldNumParts; i++)
678             if (infoPtr->parts[i].x != parts[i])
679                 break;
680         if (i==oldNumParts) /* Unchanged? no need to redraw! */
681             return TRUE;
682     }
683
684     for (i = 0; i < infoPtr->numParts; i++)
685         infoPtr->parts[i].x = parts[i];
686
687     if (infoPtr->hwndToolTip) {
688         INT nTipCount, i;
689         TTTOOLINFOW ti;
690
691         ZeroMemory (&ti, sizeof(TTTOOLINFOW));
692         ti.cbSize = sizeof(TTTOOLINFOW);
693         ti.hwnd = infoPtr->Self;
694
695         nTipCount = SendMessageW (infoPtr->hwndToolTip, TTM_GETTOOLCOUNT, 0, 0);
696         if (nTipCount < infoPtr->numParts) {
697             /* add tools */
698             for (i = nTipCount; i < infoPtr->numParts; i++) {
699                 TRACE("add tool %d\n", i);
700                 ti.uId = i;
701                 SendMessageW (infoPtr->hwndToolTip, TTM_ADDTOOLW,
702                                 0, (LPARAM)&ti);
703             }
704         }
705         else if (nTipCount > infoPtr->numParts) {
706             /* delete tools */
707             for (i = nTipCount - 1; i >= infoPtr->numParts; i--) {
708                 TRACE("delete tool %d\n", i);
709                 ti.uId = i;
710                 SendMessageW (infoPtr->hwndToolTip, TTM_DELTOOLW,
711                                 0, (LPARAM)&ti);
712             }
713         }
714     }
715     STATUSBAR_SetPartBounds (infoPtr);
716     InvalidateRect(infoPtr->Self, NULL, FALSE);
717     return TRUE;
718 }
719
720
721 static BOOL
722 STATUSBAR_SetTextT (STATUS_INFO *infoPtr, INT nPart, WORD style,
723                     LPCWSTR text, BOOL isW)
724 {
725     STATUSWINDOWPART *part=NULL;
726     BOOL changed = FALSE;
727     INT  oldStyle;
728
729     if (style & SBT_OWNERDRAW) {
730          TRACE("part %d, text %p\n",nPart,text);
731     }
732     else TRACE("part %d, text %s\n", nPart, debugstr_t(text, isW));
733
734     /* MSDN says: "If the parameter is set to SB_SIMPLEID (255), the status
735      * window is assumed to be a simple window */
736
737     if (nPart == 0x00ff) {
738         part = &infoPtr->part0;
739     } else {
740         if (infoPtr->parts && nPart >= 0 && nPart < infoPtr->numParts) {
741             part = &infoPtr->parts[nPart];
742         }
743     }
744     if (!part) return FALSE;
745
746     if (part->style != style)
747         changed = TRUE;
748
749     oldStyle = part->style;
750     part->style = style;
751     if (style & SBT_OWNERDRAW) {
752         if (!(oldStyle & SBT_OWNERDRAW)) {
753             if (part->text)
754                 Free (part->text);
755         } else if (part->text == text)
756             return TRUE;
757         part->text = (LPWSTR)text;
758     } else {
759         LPWSTR ntext;
760
761         if (text && !isW) {
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 );
767         } else if (text) {
768             ntext = Alloc( (strlenW(text) + 1)*sizeof(WCHAR) );
769             if (!ntext) return FALSE;
770             strcpyW (ntext, text);
771         } else ntext = 0;
772
773         /* check if text is unchanged -> no need to redraw */
774         if (text) {
775             if (!changed && part->text && !lstrcmpW(ntext, part->text)) {
776                 Free(ntext);
777                 return TRUE;
778             }
779         } else {
780             if (!changed && !part->text)
781                 return TRUE;
782         }
783
784         if (part->text && !(oldStyle & SBT_OWNERDRAW))
785             Free (part->text);
786         part->text = ntext;
787     }
788     InvalidateRect(infoPtr->Self, &part->bound, FALSE);
789
790     return TRUE;
791 }
792
793
794 static LRESULT
795 STATUSBAR_SetTipTextA (STATUS_INFO *infoPtr, INT id, LPSTR text)
796 {
797     TRACE("part %d: \"%s\"\n", id, text);
798     if (infoPtr->hwndToolTip) {
799         TTTOOLINFOA ti;
800         ti.cbSize = sizeof(TTTOOLINFOA);
801         ti.hwnd = infoPtr->Self;
802         ti.uId = id;
803         ti.hinst = 0;
804         ti.lpszText = text;
805         SendMessageA (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTA, 0, (LPARAM)&ti);
806     }
807
808     return 0;
809 }
810
811
812 static LRESULT
813 STATUSBAR_SetTipTextW (STATUS_INFO *infoPtr, INT id, LPWSTR text)
814 {
815     TRACE("part %d: \"%s\"\n", id, debugstr_w(text));
816     if (infoPtr->hwndToolTip) {
817         TTTOOLINFOW ti;
818         ti.cbSize = sizeof(TTTOOLINFOW);
819         ti.hwnd = infoPtr->Self;
820         ti.uId = id;
821         ti.hinst = 0;
822         ti.lpszText = text;
823         SendMessageW (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTW, 0, (LPARAM)&ti);
824     }
825
826     return 0;
827 }
828
829
830 inline static LRESULT
831 STATUSBAR_SetUnicodeFormat (STATUS_INFO *infoPtr, BOOL bUnicode)
832 {
833     BOOL bOld = infoPtr->bUnicode;
834
835     TRACE("(0x%x)\n", bUnicode);
836     infoPtr->bUnicode = bUnicode;
837
838     return bOld;
839 }
840
841
842 static BOOL
843 STATUSBAR_Simple (STATUS_INFO *infoPtr, BOOL simple)
844 {
845     NMHDR  nmhdr;
846
847     TRACE("(simple=%d)\n", simple);
848     if (infoPtr->simple == simple) /* no need to change */
849         return TRUE;
850
851     infoPtr->simple = simple;
852
853     /* send notification */
854     nmhdr.hwndFrom = infoPtr->Self;
855     nmhdr.idFrom = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
856     nmhdr.code = SBN_SIMPLEMODECHANGE;
857     SendMessageW (infoPtr->Notify, WM_NOTIFY, 0, (LPARAM)&nmhdr);
858     InvalidateRect(infoPtr->Self, NULL, FALSE);
859     return TRUE;
860 }
861
862
863 static LRESULT
864 STATUSBAR_WMDestroy (STATUS_INFO *infoPtr)
865 {
866     int i;
867
868     TRACE("\n");
869     for (i = 0; i < infoPtr->numParts; i++) {
870         if (infoPtr->parts[i].text && !(infoPtr->parts[i].style & SBT_OWNERDRAW))
871             Free (infoPtr->parts[i].text);
872     }
873     if (infoPtr->part0.text && !(infoPtr->part0.style & SBT_OWNERDRAW))
874         Free (infoPtr->part0.text);
875     Free (infoPtr->parts);
876
877     /* delete default font */
878     if (infoPtr->hDefaultFont)
879         DeleteObject (infoPtr->hDefaultFont);
880
881     /* delete tool tip control */
882     if (infoPtr->hwndToolTip)
883         DestroyWindow (infoPtr->hwndToolTip);
884
885     CloseThemeData (GetWindowTheme (infoPtr->Self));
886
887     SetWindowLongPtrW(infoPtr->Self, 0, 0);
888     Free (infoPtr);
889     return 0;
890 }
891
892
893 static LRESULT
894 STATUSBAR_WMCreate (HWND hwnd, LPCREATESTRUCTA lpCreate)
895 {
896     STATUS_INFO *infoPtr;
897     NONCLIENTMETRICSW nclm;
898     DWORD dwStyle;
899     RECT rect;
900     int i, width, len, textHeight = 0;
901     HDC hdc;
902
903     TRACE("\n");
904     infoPtr = (STATUS_INFO*)Alloc (sizeof(STATUS_INFO));
905     if (!infoPtr) goto create_fail;
906     SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
907
908     infoPtr->Self = hwnd;
909     infoPtr->Notify = lpCreate->hwndParent;
910     infoPtr->numParts = 1;
911     infoPtr->parts = 0;
912     infoPtr->simple = FALSE;
913     infoPtr->clrBk = CLR_DEFAULT;
914     infoPtr->hFont = 0;
915     infoPtr->horizontalBorder = HORZ_BORDER;
916     infoPtr->verticalBorder = VERT_BORDER;
917     infoPtr->horizontalGap = HORZ_GAP;
918
919     i = SendMessageW(infoPtr->Notify, WM_NOTIFYFORMAT, (WPARAM)hwnd, NF_QUERY);
920     infoPtr->NtfUnicode = (i == NFR_UNICODE);
921
922     GetClientRect (hwnd, &rect);
923     InvalidateRect (hwnd, &rect, 0);
924     UpdateWindow(hwnd);
925
926     ZeroMemory (&nclm, sizeof(nclm));
927     nclm.cbSize = sizeof(nclm);
928     SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, nclm.cbSize, &nclm, 0);
929     infoPtr->hDefaultFont = CreateFontIndirectW (&nclm.lfStatusFont);
930
931     /* initialize simple case */
932     infoPtr->part0.bound = rect;
933     infoPtr->part0.text = 0;
934     infoPtr->part0.x = 0;
935     infoPtr->part0.style = 0;
936     infoPtr->part0.hIcon = 0;
937
938     /* initialize first part */
939     infoPtr->parts = Alloc (sizeof(STATUSWINDOWPART));
940     if (!infoPtr->parts) goto create_fail;
941     infoPtr->parts[0].bound = rect;
942     infoPtr->parts[0].text = 0;
943     infoPtr->parts[0].x = -1;
944     infoPtr->parts[0].style = 0;
945     infoPtr->parts[0].hIcon = 0;
946     
947     OpenThemeData (hwnd, themeClass);
948
949     if (IsWindowUnicode (hwnd)) {
950         infoPtr->bUnicode = TRUE;
951         if (lpCreate->lpszName &&
952             (len = strlenW ((LPCWSTR)lpCreate->lpszName))) {
953             infoPtr->parts[0].text = Alloc ((len + 1)*sizeof(WCHAR));
954             if (!infoPtr->parts[0].text) goto create_fail;
955             strcpyW (infoPtr->parts[0].text, (LPCWSTR)lpCreate->lpszName);
956         }
957     }
958     else {
959         if (lpCreate->lpszName &&
960             (len = strlen((LPCSTR)lpCreate->lpszName))) {
961             DWORD lenW = MultiByteToWideChar( CP_ACP, 0, (LPCSTR)lpCreate->lpszName, -1, NULL, 0 );
962             infoPtr->parts[0].text = Alloc (lenW*sizeof(WCHAR));
963             if (!infoPtr->parts[0].text) goto create_fail;
964             MultiByteToWideChar( CP_ACP, 0, (LPCSTR)lpCreate->lpszName, -1,
965                                  infoPtr->parts[0].text, lenW );
966         }
967     }
968
969     dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
970     /* native seems to clear WS_BORDER, too */
971     dwStyle &= ~WS_BORDER;
972
973     /* statusbars on managed windows should not have SIZEGRIP style */
974     if ((dwStyle & SBARS_SIZEGRIP) && lpCreate->hwndParent &&
975         GetPropA( lpCreate->hwndParent, "__wine_x11_managed" ))
976         dwStyle &= ~SBARS_SIZEGRIP;
977
978     SetWindowLongW (hwnd, GWL_STYLE, dwStyle);
979
980     if ((hdc = GetDC (hwnd))) {
981         TEXTMETRICW tm;
982         HFONT hOldFont;
983
984         hOldFont = SelectObject (hdc, infoPtr->hDefaultFont);
985         GetTextMetricsW (hdc, &tm);
986         textHeight = tm.tmHeight;
987         SelectObject (hdc, hOldFont);
988         ReleaseDC (hwnd, hdc);
989     }
990     TRACE("    textHeight=%d\n", textHeight);
991
992     if (dwStyle & SBT_TOOLTIPS) {
993         infoPtr->hwndToolTip =
994             CreateWindowExW (0, TOOLTIPS_CLASSW, NULL, 0,
995                              CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
996                              CW_USEDEFAULT, hwnd, 0,
997                              (HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE), NULL);
998
999         if (infoPtr->hwndToolTip) {
1000             NMTOOLTIPSCREATED nmttc;
1001
1002             nmttc.hdr.hwndFrom = hwnd;
1003             nmttc.hdr.idFrom = GetWindowLongPtrW (hwnd, GWLP_ID);
1004             nmttc.hdr.code = NM_TOOLTIPSCREATED;
1005             nmttc.hwndToolTips = infoPtr->hwndToolTip;
1006
1007             SendMessageW (lpCreate->hwndParent, WM_NOTIFY,
1008                             (WPARAM)nmttc.hdr.idFrom, (LPARAM)&nmttc);
1009         }
1010     }
1011
1012     if (!(dwStyle & CCS_NORESIZE)) { /* don't resize wnd if it doesn't want it ! */
1013         HTHEME theme;
1014         GetClientRect (infoPtr->Notify, &rect);
1015         width = rect.right - rect.left;
1016         infoPtr->height = textHeight + 4 + infoPtr->verticalBorder;
1017         
1018         if ((theme = GetWindowTheme (hwnd)))
1019         {
1020             /* Determine bar height from theme such that the content area is
1021              * textHeight pixels large */
1022             HDC hdc = GetDC (hwnd);
1023             RECT r;
1024             memset (&r, 0, sizeof (r));
1025             r.bottom = textHeight;
1026             if (SUCCEEDED(GetThemeBackgroundExtent (theme, hdc, SP_PANE, 0, &r, &r)))
1027             {
1028                 infoPtr->height = r.bottom - r.top;
1029             }
1030             ReleaseDC (hwnd, hdc);
1031         }
1032     
1033         SetWindowPos(hwnd, 0, lpCreate->x, lpCreate->y - 1,
1034                         width, infoPtr->height, SWP_NOZORDER);
1035         STATUSBAR_SetPartBounds (infoPtr);
1036     }
1037
1038     return 0;
1039
1040 create_fail:
1041     TRACE("    failed!\n");
1042     if (infoPtr) STATUSBAR_WMDestroy(infoPtr);
1043     return -1;
1044 }
1045
1046
1047 /* in contrast to SB_GETTEXT*, WM_GETTEXT handles the text
1048  * of the first part only (usual behaviour) */
1049 static INT
1050 STATUSBAR_WMGetText (STATUS_INFO *infoPtr, INT size, LPWSTR buf)
1051 {
1052     INT len;
1053
1054     TRACE("\n");
1055     if (!(infoPtr->parts[0].text))
1056         return 0;
1057     if (infoPtr->bUnicode)
1058         len = strlenW (infoPtr->parts[0].text);
1059     else
1060         len = WideCharToMultiByte( CP_ACP, 0, infoPtr->parts[0].text, -1, NULL, 0, NULL, NULL )-1;
1061
1062     if (size > len) {
1063         if (infoPtr->bUnicode)
1064             strcpyW (buf, infoPtr->parts[0].text);
1065         else
1066             WideCharToMultiByte( CP_ACP, 0, infoPtr->parts[0].text, -1,
1067                                  (LPSTR)buf, len+1, NULL, NULL );
1068         return len;
1069     }
1070
1071     return -1;
1072 }
1073
1074
1075 static BOOL
1076 STATUSBAR_WMNCHitTest (STATUS_INFO *infoPtr, INT x, INT y)
1077 {
1078     if (GetWindowLongW (infoPtr->Self, GWL_STYLE) & SBARS_SIZEGRIP) {
1079         RECT  rect;
1080         POINT pt;
1081
1082         GetClientRect (infoPtr->Self, &rect);
1083
1084         pt.x = x;
1085         pt.y = y;
1086         ScreenToClient (infoPtr->Self, &pt);
1087
1088         rect.left = rect.right - 13;
1089         rect.top += 2;
1090
1091         if (PtInRect (&rect, pt))
1092             return HTBOTTOMRIGHT;
1093     }
1094
1095     return HTERROR;
1096 }
1097
1098
1099 static LRESULT
1100 STATUSBAR_WMPaint (STATUS_INFO *infoPtr, HDC hdc)
1101 {
1102     PAINTSTRUCT ps;
1103
1104     TRACE("\n");
1105     if (hdc) return STATUSBAR_Refresh (infoPtr, hdc);
1106     hdc = BeginPaint (infoPtr->Self, &ps);
1107     STATUSBAR_Refresh (infoPtr, hdc);
1108     EndPaint (infoPtr->Self, &ps);
1109
1110     return 0;
1111 }
1112
1113
1114 static LRESULT
1115 STATUSBAR_WMSetFont (STATUS_INFO *infoPtr, HFONT font, BOOL redraw)
1116 {
1117     infoPtr->hFont = font;
1118     TRACE("%p\n", infoPtr->hFont);
1119     if (redraw)
1120         InvalidateRect(infoPtr->Self, NULL, FALSE);
1121
1122     return 0;
1123 }
1124
1125
1126 static BOOL
1127 STATUSBAR_WMSetText (STATUS_INFO *infoPtr, LPCSTR text)
1128 {
1129     STATUSWINDOWPART *part;
1130     int len;
1131
1132     TRACE("\n");
1133     if (infoPtr->numParts == 0)
1134         return FALSE;
1135
1136     part = &infoPtr->parts[0];
1137     /* duplicate string */
1138     if (part->text)
1139         Free (part->text);
1140     part->text = 0;
1141     if (infoPtr->bUnicode) {
1142         if (text && (len = strlenW((LPCWSTR)text))) {
1143             part->text = Alloc ((len+1)*sizeof(WCHAR));
1144             if (!part->text) return FALSE;
1145             strcpyW (part->text, (LPCWSTR)text);
1146         }
1147     }
1148     else {
1149         if (text && (len = lstrlenA(text))) {
1150             DWORD lenW = MultiByteToWideChar( CP_ACP, 0, text, -1, NULL, 0 );
1151             part->text = Alloc (lenW*sizeof(WCHAR));
1152             if (!part->text) return FALSE;
1153             MultiByteToWideChar( CP_ACP, 0, text, -1, part->text, lenW );
1154         }
1155     }
1156
1157     InvalidateRect(infoPtr->Self, &part->bound, FALSE);
1158
1159     return TRUE;
1160 }
1161
1162
1163 static BOOL
1164 STATUSBAR_WMSize (STATUS_INFO *infoPtr, WORD flags)
1165 {
1166     INT  width, x, y;
1167     RECT parent_rect;
1168
1169     /* Need to resize width to match parent */
1170     TRACE("flags %04x\n", flags);
1171
1172     if (flags != SIZE_RESTORED && flags != SIZE_MAXIMIZED) {
1173         WARN("flags MUST be SIZE_RESTORED or SIZE_MAXIMIZED\n");
1174         return FALSE;
1175     }
1176
1177     if (GetWindowLongW(infoPtr->Self, GWL_STYLE) & CCS_NORESIZE) return FALSE;
1178
1179     /* width and height don't apply */
1180     GetClientRect (infoPtr->Notify, &parent_rect);
1181     width = parent_rect.right - parent_rect.left;
1182     x = parent_rect.left;
1183     y = parent_rect.bottom - infoPtr->height;
1184     MoveWindow (infoPtr->Self, parent_rect.left,
1185                 parent_rect.bottom - infoPtr->height,
1186                 width, infoPtr->height, TRUE);
1187     STATUSBAR_SetPartBounds (infoPtr);
1188     return TRUE;
1189 }
1190
1191
1192 /* update theme after a WM_THEMECHANGED message */
1193 static LRESULT theme_changed (STATUS_INFO* infoPtr)
1194 {
1195     HTHEME theme = GetWindowTheme (infoPtr->Self);
1196     CloseThemeData (theme);
1197     OpenThemeData (infoPtr->Self, themeClass);
1198     return 0;
1199 }
1200
1201
1202 static LRESULT
1203 STATUSBAR_NotifyFormat (STATUS_INFO *infoPtr, HWND from, INT cmd)
1204 {
1205     if (cmd == NF_REQUERY) {
1206         INT i = SendMessageW(from, WM_NOTIFYFORMAT, (WPARAM)infoPtr->Self, NF_QUERY);
1207         infoPtr->NtfUnicode = (i == NFR_UNICODE);
1208     }
1209     return infoPtr->NtfUnicode ? NFR_UNICODE : NFR_ANSI;
1210 }
1211
1212
1213 static LRESULT
1214 STATUSBAR_SendNotify (STATUS_INFO *infoPtr, UINT code)
1215 {
1216     NMHDR  nmhdr;
1217
1218     TRACE("code %04x\n", code);
1219     nmhdr.hwndFrom = infoPtr->Self;
1220     nmhdr.idFrom = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
1221     nmhdr.code = code;
1222     SendMessageW (infoPtr->Notify, WM_NOTIFY, 0, (LPARAM)&nmhdr);
1223     return 0;
1224 }
1225
1226
1227
1228 static LRESULT WINAPI
1229 StatusWindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1230 {
1231     STATUS_INFO *infoPtr = (STATUS_INFO *)GetWindowLongPtrW (hwnd, 0);
1232     INT nPart = ((INT) wParam) & 0x00ff;
1233     LRESULT res;
1234
1235     TRACE("hwnd=%p msg=%x wparam=%x lparam=%lx\n", hwnd, msg, wParam, lParam);
1236     if (!infoPtr && msg != WM_CREATE)
1237         return DefWindowProcW (hwnd, msg, wParam, lParam);
1238
1239     switch (msg) {
1240         case SB_GETBORDERS:
1241             return STATUSBAR_GetBorders (infoPtr, (INT *)lParam);
1242
1243         case SB_GETICON:
1244             return (LRESULT)STATUSBAR_GetIcon (infoPtr, nPart);
1245
1246         case SB_GETPARTS:
1247             return STATUSBAR_GetParts (infoPtr, (INT)wParam, (INT *)lParam);
1248
1249         case SB_GETRECT:
1250             return STATUSBAR_GetRect (infoPtr, nPart, (LPRECT)lParam);
1251
1252         case SB_GETTEXTA:
1253             return STATUSBAR_GetTextA (infoPtr, nPart, (LPSTR)lParam);
1254
1255         case SB_GETTEXTW:
1256             return STATUSBAR_GetTextW (infoPtr, nPart, (LPWSTR)lParam);
1257
1258         case SB_GETTEXTLENGTHA:
1259         case SB_GETTEXTLENGTHW:
1260             return STATUSBAR_GetTextLength (infoPtr, nPart);
1261
1262         case SB_GETTIPTEXTA:
1263             return STATUSBAR_GetTipTextA (infoPtr,  LOWORD(wParam), (LPSTR)lParam,  HIWORD(wParam));
1264
1265         case SB_GETTIPTEXTW:
1266             return STATUSBAR_GetTipTextW (infoPtr,  LOWORD(wParam), (LPWSTR)lParam,  HIWORD(wParam));
1267
1268         case SB_GETUNICODEFORMAT:
1269             return infoPtr->bUnicode;
1270
1271         case SB_ISSIMPLE:
1272             return infoPtr->simple;
1273
1274         case SB_SETBORDERS:
1275             return STATUSBAR_SetBorders (infoPtr, (INT *)lParam);
1276
1277         case SB_SETBKCOLOR:
1278             return STATUSBAR_SetBkColor (infoPtr, (COLORREF)lParam);
1279
1280         case SB_SETICON:
1281             return STATUSBAR_SetIcon (infoPtr, nPart, (HICON)lParam);
1282
1283         case SB_SETMINHEIGHT:
1284             return STATUSBAR_SetMinHeight (infoPtr, (INT)wParam);
1285
1286         case SB_SETPARTS:
1287             return STATUSBAR_SetParts (infoPtr, (INT)wParam, (LPINT)lParam);
1288
1289         case SB_SETTEXTA:
1290             return STATUSBAR_SetTextT (infoPtr, nPart, wParam & 0xff00, (LPCWSTR)lParam, FALSE);
1291
1292         case SB_SETTEXTW:
1293             return STATUSBAR_SetTextT (infoPtr, nPart, wParam & 0xff00, (LPCWSTR)lParam, TRUE);
1294
1295         case SB_SETTIPTEXTA:
1296             return STATUSBAR_SetTipTextA (infoPtr, (INT)wParam, (LPSTR)lParam);
1297
1298         case SB_SETTIPTEXTW:
1299             return STATUSBAR_SetTipTextW (infoPtr, (INT)wParam, (LPWSTR)lParam);
1300
1301         case SB_SETUNICODEFORMAT:
1302             return STATUSBAR_SetUnicodeFormat (infoPtr, (BOOL)wParam);
1303
1304         case SB_SIMPLE:
1305             return STATUSBAR_Simple (infoPtr, (BOOL)wParam);
1306
1307         case WM_CREATE:
1308             return STATUSBAR_WMCreate (hwnd, (LPCREATESTRUCTA)lParam);
1309
1310         case WM_DESTROY:
1311             return STATUSBAR_WMDestroy (infoPtr);
1312
1313         case WM_GETFONT:
1314             return (LRESULT)(infoPtr->hFont? infoPtr->hFont : infoPtr->hDefaultFont);
1315
1316         case WM_GETTEXT:
1317             return STATUSBAR_WMGetText (infoPtr, (INT)wParam, (LPWSTR)lParam);
1318
1319         case WM_GETTEXTLENGTH:
1320             return STATUSBAR_GetTextLength (infoPtr, 0);
1321
1322         case WM_LBUTTONDBLCLK:
1323             return STATUSBAR_SendNotify (infoPtr, NM_DBLCLK);
1324
1325         case WM_LBUTTONUP:
1326             return STATUSBAR_SendNotify (infoPtr, NM_CLICK);
1327
1328         case WM_MOUSEMOVE:
1329             return STATUSBAR_Relay2Tip (infoPtr, msg, wParam, lParam);
1330
1331         case WM_NCHITTEST:
1332             res = STATUSBAR_WMNCHitTest(infoPtr, (INT)LOWORD(lParam),
1333                                         (INT)HIWORD(lParam));
1334             if (res != HTERROR) return res;
1335             return DefWindowProcW (hwnd, msg, wParam, lParam);
1336
1337         case WM_NCLBUTTONUP:
1338         case WM_NCLBUTTONDOWN:
1339             PostMessageW (infoPtr->Notify, msg, wParam, lParam);
1340             return 0;
1341
1342         case WM_NOTIFYFORMAT:
1343             return STATUSBAR_NotifyFormat(infoPtr, (HWND)wParam, (INT)lParam);
1344
1345         case WM_PRINTCLIENT:
1346         case WM_PAINT:
1347             return STATUSBAR_WMPaint (infoPtr, (HDC)wParam);
1348
1349         case WM_RBUTTONDBLCLK:
1350             return STATUSBAR_SendNotify (infoPtr, NM_RDBLCLK);
1351
1352         case WM_RBUTTONUP:
1353             return STATUSBAR_SendNotify (infoPtr, NM_RCLICK);
1354
1355         case WM_SETFONT:
1356             return STATUSBAR_WMSetFont (infoPtr, (HFONT)wParam, LOWORD(lParam));
1357
1358         case WM_SETTEXT:
1359             return STATUSBAR_WMSetText (infoPtr, (LPCSTR)lParam);
1360
1361         case WM_SIZE:
1362             if (STATUSBAR_WMSize (infoPtr, (WORD)wParam)) return 0;
1363             return DefWindowProcW (hwnd, msg, wParam, lParam);
1364
1365         case WM_THEMECHANGED:
1366             return theme_changed (infoPtr);
1367
1368         default:
1369             if ((msg >= WM_USER) && (msg < WM_APP))
1370                 ERR("unknown msg %04x wp=%04x lp=%08lx\n",
1371                      msg, wParam, lParam);
1372             return DefWindowProcW (hwnd, msg, wParam, lParam);
1373     }
1374 }
1375
1376
1377 /***********************************************************************
1378  * STATUS_Register [Internal]
1379  *
1380  * Registers the status window class.
1381  */
1382
1383 void
1384 STATUS_Register (void)
1385 {
1386     WNDCLASSW wndClass;
1387
1388     ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1389     wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW;
1390     wndClass.lpfnWndProc   = StatusWindowProc;
1391     wndClass.cbClsExtra    = 0;
1392     wndClass.cbWndExtra    = sizeof(STATUS_INFO *);
1393     wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1394     wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
1395     wndClass.lpszClassName = STATUSCLASSNAMEW;
1396
1397     RegisterClassW (&wndClass);
1398 }
1399
1400
1401 /***********************************************************************
1402  * STATUS_Unregister [Internal]
1403  *
1404  * Unregisters the status window class.
1405  */
1406
1407 void
1408 STATUS_Unregister (void)
1409 {
1410     UnregisterClassW (STATUSCLASSNAMEW, NULL);
1411 }