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