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