comctl32: toolbar: Test standard buttons size.
[wine] / dlls / comctl32 / toolbar.c
1 /*
2  * Toolbar control
3  *
4  * Copyright 1998,1999 Eric Kohl
5  * Copyright 2000 Eric Kohl for CodeWeavers
6  * Copyright 2004 Robert Shearman
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  *
22  * NOTES
23  *
24  * This code was audited for completeness against the documented features
25  * of Comctl32.dll version 6.0 on Mar. 14, 2004, by Robert Shearman.
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  *   - Styles:
33  *     - TBSTYLE_REGISTERDROP
34  *     - TBSTYLE_EX_DOUBLEBUFFER
35  *   - Messages:
36  *     - TB_GETMETRICS
37  *     - TB_GETOBJECT
38  *     - TB_INSERTMARKHITTEST
39  *     - TB_SAVERESTORE
40  *     - TB_SETMETRICS
41  *     - WM_WININICHANGE
42  *   - Notifications:
43  *     - NM_CHAR
44  *     - TBN_GETOBJECT
45  *     - TBN_SAVE
46  *   - Button wrapping (under construction).
47  *   - Fix TB_SETROWS.
48  *   - iListGap custom draw support.
49  *
50  * Testing:
51  *   - Run tests using Waite Group Windows95 API Bible Volume 2.
52  *     The second cdrom contains executables addstr.exe, btncount.exe,
53  *     btnstate.exe, butstrsz.exe, chkbtn.exe, chngbmp.exe, customiz.exe,
54  *     enablebtn.exe, getbmp.exe, getbtn.exe, getflags.exe, hidebtn.exe,
55  *     indetbtn.exe, insbtn.exe, pressbtn.exe, setbtnsz.exe, setcmdid.exe,
56  *     setparnt.exe, setrows.exe, toolwnd.exe.
57  *   - Microsoft's controlspy examples.
58  *   - Charles Petzold's 'Programming Windows': gadgets.exe
59  *
60  *  Differences between MSDN and actual native control operation:
61  *   1. MSDN says: "TBSTYLE_LIST: Creates a flat toolbar with button text
62  *                  to the right of the bitmap. Otherwise, this style is
63  *                  identical to TBSTYLE_FLAT."
64  *      As implemented by both v4.71 and v5.80 of the native COMCTL32.DLL
65  *      you can create a TBSTYLE_LIST without TBSTYLE_FLAT and the result
66  *      is non-flat non-transparent buttons. Therefore TBSTYLE_LIST does
67  *      *not* imply TBSTYLE_FLAT as documented.  (GA 8/2001)
68  *
69  */
70
71 #include <stdarg.h>
72 #include <string.h>
73
74 #include "windef.h"
75 #include "winbase.h"
76 #include "winreg.h"
77 #include "wingdi.h"
78 #include "winuser.h"
79 #include "wine/unicode.h"
80 #include "winnls.h"
81 #include "commctrl.h"
82 #include "comctl32.h"
83 #include "uxtheme.h"
84 #include "tmschema.h"
85 #include "wine/debug.h"
86
87 WINE_DEFAULT_DEBUG_CHANNEL(toolbar);
88
89 static HCURSOR hCursorDrag = NULL;
90
91 typedef struct
92 {
93     INT iBitmap;
94     INT idCommand;
95     BYTE  fsState;
96     BYTE  fsStyle;
97     BYTE  bHot;
98     BYTE  bDropDownPressed;
99     DWORD_PTR dwData;
100     INT_PTR iString;
101     INT nRow;
102     RECT rect;
103     INT cx; /* manually set size */
104 } TBUTTON_INFO;
105
106 typedef struct
107 {
108     UINT nButtons;
109     HINSTANCE hInst;
110     UINT nID;
111 } TBITMAP_INFO;
112
113 typedef struct
114 {
115     HIMAGELIST himl;
116     INT id;
117 } IMLENTRY, *PIMLENTRY;
118
119 typedef struct
120 {
121     DWORD    dwStructSize;    /* size of TBBUTTON struct */
122     INT      nWidth;          /* width of the toolbar */
123     RECT     client_rect;
124     RECT     rcBound;         /* bounding rectangle */
125     INT      nButtonHeight;
126     INT      nButtonWidth;
127     INT      nBitmapHeight;
128     INT      nBitmapWidth;
129     INT      nIndent;
130     INT      nRows;           /* number of button rows */
131     INT      nMaxTextRows;    /* maximum number of text rows */
132     INT      cxMin;           /* minimum button width */
133     INT      cxMax;           /* maximum button width */
134     INT      nNumButtons;     /* number of buttons */
135     INT      nNumBitmaps;     /* number of bitmaps */
136     INT      nNumStrings;     /* number of strings */
137     INT      nNumBitmapInfos;
138     INT      nButtonDown;     /* toolbar button being pressed or -1 if none */
139     INT      nButtonDrag;     /* toolbar button being dragged or -1 if none */
140     INT      nOldHit;
141     INT      nHotItem;        /* index of the "hot" item */
142     SIZE     szPadding;       /* padding values around button */
143     INT      iTopMargin;      /* the top margin */
144     INT      iListGap;        /* default gap between text and image for toolbar with list style */
145     HFONT    hDefaultFont;
146     HFONT    hFont;           /* text font */
147     HIMAGELIST himlInt;       /* image list created internally */
148     PIMLENTRY *himlDef;       /* default image list array */
149     INT       cimlDef;        /* default image list array count */
150     PIMLENTRY *himlHot;       /* hot image list array */
151     INT       cimlHot;        /* hot image list array count */
152     PIMLENTRY *himlDis;       /* disabled image list array */
153     INT       cimlDis;        /* disabled image list array count */
154     HWND     hwndToolTip;     /* handle to tool tip control */
155     HWND     hwndNotify;      /* handle to the window that gets notifications */
156     HWND     hwndSelf;        /* my own handle */
157     BOOL     bAnchor;         /* anchor highlight enabled */
158     BOOL     bDoRedraw;       /* Redraw status */
159     BOOL     bDragOutSent;    /* has TBN_DRAGOUT notification been sent for this drag? */
160     BOOL     bUnicode;        /* Notifications are ASCII (FALSE) or Unicode (TRUE)? */
161     BOOL     bCaptured;       /* mouse captured? */
162     DWORD      dwStyle;       /* regular toolbar style */
163     DWORD      dwExStyle;     /* extended toolbar style */
164     DWORD      dwDTFlags;     /* DrawText flags */
165
166     COLORREF   clrInsertMark;   /* insert mark color */
167     COLORREF   clrBtnHighlight; /* color for Flat Separator */
168     COLORREF   clrBtnShadow;    /* color for Flag Separator */
169     INT      iVersion;
170     LPWSTR   pszTooltipText;    /* temporary store for a string > 80 characters
171                                  * for TTN_GETDISPINFOW notification */
172     TBINSERTMARK  tbim;         /* info on insertion mark */
173     TBUTTON_INFO *buttons;      /* pointer to button array */
174     LPWSTR       *strings;      /* pointer to string array */
175     TBITMAP_INFO *bitmaps;
176 } TOOLBAR_INFO, *PTOOLBAR_INFO;
177
178
179 /* used by customization dialog */
180 typedef struct
181 {
182     PTOOLBAR_INFO tbInfo;
183     HWND          tbHwnd;
184 } CUSTDLG_INFO, *PCUSTDLG_INFO;
185
186 typedef struct
187 {
188     TBBUTTON btn;
189     BOOL     bVirtual;
190     BOOL     bRemovable;
191     WCHAR    text[64];
192 } CUSTOMBUTTON, *PCUSTOMBUTTON;
193
194 typedef enum
195 {
196     IMAGE_LIST_DEFAULT,
197     IMAGE_LIST_HOT,
198     IMAGE_LIST_DISABLED
199 } IMAGE_LIST_TYPE;
200
201 #define SEPARATOR_WIDTH    8
202 #define TOP_BORDER         2
203 #define BOTTOM_BORDER      2
204 #define DDARROW_WIDTH      11
205 #define ARROW_HEIGHT       3
206 #define INSERTMARK_WIDTH   2
207
208 #define DEFPAD_CX 7
209 #define DEFPAD_CY 6
210 #define DEFLISTGAP 4
211
212 /* vertical padding used in list mode when image is present */
213 #define LISTPAD_CY 9
214
215 /* how wide to treat the bitmap if it isn't present */
216 #define NONLIST_NOTEXT_OFFSET 2
217
218 #define TOOLBAR_NOWHERE (-1)
219
220 #define TOOLBAR_GetInfoPtr(hwnd) ((TOOLBAR_INFO *)GetWindowLongPtrW(hwnd,0))
221 #define TOOLBAR_HasText(x, y) (TOOLBAR_GetText(x, y) ? TRUE : FALSE)
222 #define TOOLBAR_HasDropDownArrows(exStyle) ((exStyle & TBSTYLE_EX_DRAWDDARROWS) ? TRUE : FALSE)
223
224 /* Used to find undocumented extended styles */
225 #define TBSTYLE_EX_ALL (TBSTYLE_EX_DRAWDDARROWS | \
226                         TBSTYLE_EX_UNDOC1 | \
227                         TBSTYLE_EX_MIXEDBUTTONS | \
228                         TBSTYLE_EX_HIDECLIPPEDBUTTONS)
229
230 /* all of the CCS_ styles */
231 #define COMMON_STYLES (CCS_TOP|CCS_NOMOVEY|CCS_BOTTOM|CCS_NORESIZE| \
232                        CCS_NOPARENTALIGN|CCS_ADJUSTABLE|CCS_NODIVIDER|CCS_VERT)
233
234 #define GETIBITMAP(infoPtr, i) (infoPtr->iVersion >= 5 ? LOWORD(i) : i)
235 #define GETHIMLID(infoPtr, i) (infoPtr->iVersion >= 5 ? HIWORD(i) : 0)
236 #define GETDEFIMAGELIST(infoPtr, id) TOOLBAR_GetImageList(infoPtr->himlDef, infoPtr->cimlDef, id)
237 #define GETHOTIMAGELIST(infoPtr, id) TOOLBAR_GetImageList(infoPtr->himlHot, infoPtr->cimlHot, id)
238 #define GETDISIMAGELIST(infoPtr, id) TOOLBAR_GetImageList(infoPtr->himlDis, infoPtr->cimlDis, id)
239
240 static const WCHAR themeClass[] = { 'T','o','o','l','b','a','r',0 };
241
242 static BOOL TOOLBAR_GetButtonInfo(TOOLBAR_INFO *infoPtr, NMTOOLBARW *nmtb);
243 static BOOL TOOLBAR_IsButtonRemovable(TOOLBAR_INFO *infoPtr, int iItem, PCUSTOMBUTTON btnInfo);
244 static HIMAGELIST TOOLBAR_GetImageList(PIMLENTRY *pies, INT cies, INT id);
245 static PIMLENTRY TOOLBAR_GetImageListEntry(PIMLENTRY *pies, INT cies, INT id);
246 static VOID TOOLBAR_DeleteImageList(PIMLENTRY **pies, INT *cies);
247 static HIMAGELIST TOOLBAR_InsertImageList(PIMLENTRY **pies, INT *cies, HIMAGELIST himl, INT id);
248 static LRESULT TOOLBAR_LButtonDown(HWND hwnd, WPARAM wParam, LPARAM lParam);
249 static void TOOLBAR_SetHotItemEx (TOOLBAR_INFO *infoPtr, INT nHit, DWORD dwReason);
250 static void TOOLBAR_LayoutToolbar(HWND hwnd);
251 static LRESULT TOOLBAR_AutoSize(HWND hwnd);
252 static void TOOLBAR_CheckImageListIconSize(TOOLBAR_INFO *infoPtr);
253 static void TOOLBAR_TooltipSetRect(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *button);
254
255 static LRESULT
256 TOOLBAR_NotifyFormat(TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam);
257
258 static inline int default_top_margin(TOOLBAR_INFO *infoPtr)
259 {
260     return (infoPtr->dwStyle & TBSTYLE_FLAT ? 0 : TOP_BORDER);
261 }
262
263 static LPWSTR
264 TOOLBAR_GetText(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr)
265 {
266     LPWSTR lpText = NULL;
267
268     /* NOTE: iString == -1 is undocumented */
269     if ((HIWORD(btnPtr->iString) != 0) && (btnPtr->iString != -1))
270         lpText = (LPWSTR)btnPtr->iString;
271     else if ((btnPtr->iString >= 0) && (btnPtr->iString < infoPtr->nNumStrings))
272         lpText = infoPtr->strings[btnPtr->iString];
273
274     return lpText;
275 }
276
277 static void
278 TOOLBAR_DumpButton(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *bP, INT btn_num, BOOL internal)
279 {
280     if (TRACE_ON(toolbar)){
281         TRACE("button %d id %d, bitmap=%d, state=%02x, style=%02x, data=%08lx, stringid=0x%08x\n",
282               btn_num, bP->idCommand, GETIBITMAP(infoPtr, bP->iBitmap), 
283               bP->fsState, bP->fsStyle, bP->dwData, bP->iString);
284         TRACE("string %s\n", debugstr_w(TOOLBAR_GetText(infoPtr,bP)));
285         if (internal)
286             TRACE("button %d id %d, hot=%s, row=%d, rect=(%d,%d)-(%d,%d)\n",
287                   btn_num, bP->idCommand,
288                   (bP->bHot) ? "TRUE":"FALSE", bP->nRow,
289                   bP->rect.left, bP->rect.top,
290                   bP->rect.right, bP->rect.bottom);
291     }
292 }
293
294
295 static void
296 TOOLBAR_DumpToolbar(TOOLBAR_INFO *iP, INT line)
297 {
298     if (TRACE_ON(toolbar)) {
299         INT i;
300
301         TRACE("toolbar %p at line %d, exStyle=%08x, buttons=%d, bitmaps=%d, strings=%d, style=%08x\n",
302               iP->hwndSelf, line,
303               iP->dwExStyle, iP->nNumButtons, iP->nNumBitmaps,
304               iP->nNumStrings, iP->dwStyle);
305         TRACE("toolbar %p at line %d, himlInt=%p, himlDef=%p, himlHot=%p, himlDis=%p, redrawable=%s\n",
306               iP->hwndSelf, line,
307               iP->himlInt, iP->himlDef, iP->himlHot, iP->himlDis,
308               (iP->bDoRedraw) ? "TRUE" : "FALSE");
309         for(i=0; i<iP->nNumButtons; i++) {
310             TOOLBAR_DumpButton(iP, &iP->buttons[i], i, TRUE);
311         }
312     }
313 }
314
315
316 /***********************************************************************
317 *               TOOLBAR_CheckStyle
318 *
319 * This function validates that the styles set are implemented and
320 * issues FIXME's warning of possible problems. In a perfect world this
321 * function should be null.
322 */
323 static void
324 TOOLBAR_CheckStyle (HWND hwnd, DWORD dwStyle)
325 {
326     if (dwStyle & TBSTYLE_REGISTERDROP)
327         FIXME("[%p] TBSTYLE_REGISTERDROP not implemented\n", hwnd);
328 }
329
330
331 static INT
332 TOOLBAR_SendNotify (NMHDR *nmhdr, TOOLBAR_INFO *infoPtr, UINT code)
333 {
334         if(!IsWindow(infoPtr->hwndSelf))
335             return 0;   /* we have just been destroyed */
336
337     nmhdr->idFrom = GetDlgCtrlID (infoPtr->hwndSelf);
338     nmhdr->hwndFrom = infoPtr->hwndSelf;
339     nmhdr->code = code;
340
341     TRACE("to window %p, code=%08x, %s\n", infoPtr->hwndNotify, code,
342           (infoPtr->bUnicode) ? "via Unicode" : "via ANSI");
343
344     return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, 
345         (WPARAM)nmhdr->idFrom, (LPARAM)nmhdr);
346 }
347
348 /***********************************************************************
349 *               TOOLBAR_GetBitmapIndex
350 *
351 * This function returns the bitmap index associated with a button.
352 * If the button specifies I_IMAGECALLBACK, then the TBN_GETDISPINFO
353 * is issued to retrieve the index.
354 */
355 static INT
356 TOOLBAR_GetBitmapIndex(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr)
357 {
358     INT ret = btnPtr->iBitmap;
359
360     if (ret == I_IMAGECALLBACK)
361     {
362         /* issue TBN_GETDISPINFO */
363         NMTBDISPINFOA nmgd;
364
365         memset(&nmgd, 0, sizeof(nmgd));
366         nmgd.idCommand = btnPtr->idCommand;
367         nmgd.lParam = btnPtr->dwData;
368         nmgd.dwMask = TBNF_IMAGE;
369         TOOLBAR_SendNotify(&nmgd.hdr, infoPtr,
370                         infoPtr->bUnicode ? TBN_GETDISPINFOW : TBN_GETDISPINFOA);
371         if (nmgd.dwMask & TBNF_DI_SETITEM)
372             btnPtr->iBitmap = nmgd.iImage;
373         ret = nmgd.iImage;
374         TRACE("TBN_GETDISPINFO returned bitmap id %d, mask=%08x, nNumBitmaps=%d\n",
375             ret, nmgd.dwMask, infoPtr->nNumBitmaps);
376     }
377
378     if (ret != I_IMAGENONE)
379         ret = GETIBITMAP(infoPtr, ret);
380
381     return ret;
382 }
383
384
385 static BOOL
386 TOOLBAR_IsValidBitmapIndex(TOOLBAR_INFO *infoPtr, INT index)
387 {
388     HIMAGELIST himl;
389     INT id = GETHIMLID(infoPtr, index);
390     INT iBitmap = GETIBITMAP(infoPtr, index);
391
392     if (((himl = GETDEFIMAGELIST(infoPtr, id)) &&
393         iBitmap >= 0 && iBitmap < ImageList_GetImageCount(himl)) ||
394         (index == I_IMAGECALLBACK))
395       return TRUE;
396     else
397       return FALSE;
398 }
399
400
401 static inline BOOL
402 TOOLBAR_IsValidImageList(TOOLBAR_INFO *infoPtr, INT index)
403 {
404     HIMAGELIST himl = GETDEFIMAGELIST(infoPtr, GETHIMLID(infoPtr, index));
405     return (himl != NULL) && (ImageList_GetImageCount(himl) > 0);
406 }
407
408
409 /***********************************************************************
410 *               TOOLBAR_GetImageListForDrawing
411 *
412 * This function validates the bitmap index (including I_IMAGECALLBACK
413 * functionality) and returns the corresponding image list.
414 */
415 static HIMAGELIST
416 TOOLBAR_GetImageListForDrawing (TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr, IMAGE_LIST_TYPE imagelist, INT * index)
417 {
418     HIMAGELIST himl;
419
420     if (!TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap)) {
421         if (btnPtr->iBitmap == I_IMAGENONE) return NULL;
422         ERR("bitmap for ID %d, index %d is not valid, number of bitmaps in imagelist: %d\n",
423             HIWORD(btnPtr->iBitmap), LOWORD(btnPtr->iBitmap), infoPtr->nNumBitmaps);
424         return NULL;
425     }
426
427     if ((*index = TOOLBAR_GetBitmapIndex(infoPtr, btnPtr)) < 0) {
428         if ((*index == I_IMAGECALLBACK) ||
429             (*index == I_IMAGENONE)) return NULL;
430         ERR("TBN_GETDISPINFO returned invalid index %d\n",
431             *index);
432         return NULL;
433     }
434
435     switch(imagelist)
436     {
437     case IMAGE_LIST_DEFAULT:
438         himl = GETDEFIMAGELIST(infoPtr, GETHIMLID(infoPtr, btnPtr->iBitmap));
439         break;
440     case IMAGE_LIST_HOT:
441         himl = GETHOTIMAGELIST(infoPtr, GETHIMLID(infoPtr, btnPtr->iBitmap));
442         break;
443     case IMAGE_LIST_DISABLED:
444         himl = GETDISIMAGELIST(infoPtr, GETHIMLID(infoPtr, btnPtr->iBitmap));
445         break;
446     default:
447         himl = NULL;
448         FIXME("Shouldn't reach here\n");
449     }
450
451     if (!himl)
452        TRACE("no image list\n");
453
454     return himl;
455 }
456
457
458 static void
459 TOOLBAR_DrawFlatSeparator (LPRECT lpRect, HDC hdc, TOOLBAR_INFO *infoPtr)
460 {
461     RECT myrect;
462     COLORREF oldcolor, newcolor;
463
464     myrect.left = (lpRect->left + lpRect->right) / 2 - 1;
465     myrect.right = myrect.left + 1;
466     myrect.top = lpRect->top + 2;
467     myrect.bottom = lpRect->bottom - 2;
468
469     newcolor = (infoPtr->clrBtnShadow == CLR_DEFAULT) ?
470                 comctl32_color.clrBtnShadow : infoPtr->clrBtnShadow;
471     oldcolor = SetBkColor (hdc, newcolor);
472     ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
473
474     myrect.left = myrect.right;
475     myrect.right = myrect.left + 1;
476
477     newcolor = (infoPtr->clrBtnHighlight == CLR_DEFAULT) ?
478                 comctl32_color.clrBtnHighlight : infoPtr->clrBtnHighlight;
479     SetBkColor (hdc, newcolor);
480     ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
481
482     SetBkColor (hdc, oldcolor);
483 }
484
485
486 /***********************************************************************
487 *               TOOLBAR_DrawDDFlatSeparator
488 *
489 * This function draws the separator that was flagged as BTNS_DROPDOWN.
490 * In this case, the separator is a pixel high line of COLOR_BTNSHADOW,
491 * followed by a pixel high line of COLOR_BTNHIGHLIGHT. These separators
492 * are horizontal as opposed to the vertical separators for not dropdown
493 * type.
494 *
495 * FIXME: It is possible that the height of each line is really SM_CYBORDER.
496 */
497 static void
498 TOOLBAR_DrawDDFlatSeparator (LPRECT lpRect, HDC hdc, TBUTTON_INFO *btnPtr, TOOLBAR_INFO *infoPtr)
499 {
500     RECT myrect;
501     COLORREF oldcolor, newcolor;
502
503     myrect.left = lpRect->left;
504     myrect.right = lpRect->right;
505     myrect.top = lpRect->top + (lpRect->bottom - lpRect->top - 2)/2;
506     myrect.bottom = myrect.top + 1;
507
508     InflateRect (&myrect, -2, 0);
509
510     TRACE("rect=(%d,%d)-(%d,%d)\n",
511           myrect.left, myrect.top, myrect.right, myrect.bottom);
512
513     newcolor = (infoPtr->clrBtnShadow == CLR_DEFAULT) ?
514                 comctl32_color.clrBtnShadow : infoPtr->clrBtnShadow;
515     oldcolor = SetBkColor (hdc, newcolor);
516     ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
517
518     myrect.top = myrect.bottom;
519     myrect.bottom = myrect.top + 1;
520
521     newcolor = (infoPtr->clrBtnHighlight == CLR_DEFAULT) ?
522                 comctl32_color.clrBtnHighlight : infoPtr->clrBtnHighlight;
523     SetBkColor (hdc, newcolor);
524     ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
525
526     SetBkColor (hdc, oldcolor);
527 }
528
529
530 static void
531 TOOLBAR_DrawArrow (HDC hdc, INT left, INT top, COLORREF clr)
532 {
533     INT x, y;
534     HPEN hPen, hOldPen;
535
536     if (!(hPen = CreatePen( PS_SOLID, 1, clr))) return;
537     hOldPen = SelectObject ( hdc, hPen );
538     x = left + 2;
539     y = top;
540     MoveToEx (hdc, x, y, NULL);
541     LineTo (hdc, x+5, y++); x++;
542     MoveToEx (hdc, x, y, NULL);
543     LineTo (hdc, x+3, y++); x++;
544     MoveToEx (hdc, x, y, NULL);
545     LineTo (hdc, x+1, y++);
546     SelectObject( hdc, hOldPen );
547     DeleteObject( hPen );
548 }
549
550 /*
551  * Draw the text string for this button.
552  * note: infoPtr->himlDis *SHOULD* be non-zero when infoPtr->himlDef
553  *      is non-zero, so we can simply check himlDef to see if we have
554  *      an image list
555  */
556 static void
557 TOOLBAR_DrawString (TOOLBAR_INFO *infoPtr, RECT *rcText, LPWSTR lpText,
558                     NMTBCUSTOMDRAW *tbcd, DWORD dwItemCDFlag)
559 {
560     HDC hdc = tbcd->nmcd.hdc;
561     HFONT  hOldFont = 0;
562     COLORREF clrOld = 0;
563     COLORREF clrOldBk = 0;
564     int oldBkMode = 0;
565     UINT state = tbcd->nmcd.uItemState;
566
567     /* draw text */
568     if (lpText) {
569         TRACE("string=%s rect=(%d,%d)-(%d,%d)\n", debugstr_w(lpText),
570               rcText->left, rcText->top, rcText->right, rcText->bottom);
571
572         hOldFont = SelectObject (hdc, infoPtr->hFont);
573         if ((state & CDIS_HOT) && (dwItemCDFlag & TBCDRF_HILITEHOTTRACK )) {
574             clrOld = SetTextColor (hdc, tbcd->clrTextHighlight);
575         }
576         else if (state & CDIS_DISABLED) {
577             clrOld = SetTextColor (hdc, tbcd->clrBtnHighlight);
578             OffsetRect (rcText, 1, 1);
579             DrawTextW (hdc, lpText, -1, rcText, infoPtr->dwDTFlags);
580             SetTextColor (hdc, comctl32_color.clr3dShadow);
581             OffsetRect (rcText, -1, -1);
582         }
583         else if (state & CDIS_INDETERMINATE) {
584             clrOld = SetTextColor (hdc, comctl32_color.clr3dShadow);
585         }
586         else if ((state & CDIS_MARKED) && !(dwItemCDFlag & TBCDRF_NOMARK)) {
587             clrOld = SetTextColor (hdc, tbcd->clrTextHighlight);
588             clrOldBk = SetBkColor (hdc, tbcd->clrMark);
589             oldBkMode = SetBkMode (hdc, tbcd->nHLStringBkMode);
590         }
591         else {
592             clrOld = SetTextColor (hdc, tbcd->clrText);
593         }
594
595         DrawTextW (hdc, lpText, -1, rcText, infoPtr->dwDTFlags);
596         SetTextColor (hdc, clrOld);
597         if ((state & CDIS_MARKED) && !(dwItemCDFlag & TBCDRF_NOMARK))
598         {
599             SetBkColor (hdc, clrOldBk);
600             SetBkMode (hdc, oldBkMode);
601         }
602         SelectObject (hdc, hOldFont);
603     }
604 }
605
606
607 static void
608 TOOLBAR_DrawPattern (LPRECT lpRect, NMTBCUSTOMDRAW *tbcd)
609 {
610     HDC hdc = tbcd->nmcd.hdc;
611     HBRUSH hbr = SelectObject (hdc, tbcd->hbrMonoDither);
612     COLORREF clrTextOld;
613     COLORREF clrBkOld;
614     INT cx = lpRect->right - lpRect->left;
615     INT cy = lpRect->bottom - lpRect->top;
616     INT cxEdge = GetSystemMetrics(SM_CXEDGE);
617     INT cyEdge = GetSystemMetrics(SM_CYEDGE);
618     clrTextOld = SetTextColor(hdc, tbcd->clrBtnHighlight);
619     clrBkOld = SetBkColor(hdc, tbcd->clrBtnFace);
620     PatBlt (hdc, lpRect->left + cxEdge, lpRect->top + cyEdge,
621             cx - (2 * cxEdge), cy - (2 * cyEdge), PATCOPY);
622     SetBkColor(hdc, clrBkOld);
623     SetTextColor(hdc, clrTextOld);
624     SelectObject (hdc, hbr);
625 }
626
627
628 static void TOOLBAR_DrawMasked(HIMAGELIST himl, int index, HDC hdc, INT x, INT y, UINT draw_flags)
629 {
630     INT cx, cy;
631     HBITMAP hbmMask, hbmImage;
632     HDC hdcMask, hdcImage;
633
634     ImageList_GetIconSize(himl, &cx, &cy);
635
636     /* Create src image */
637     hdcImage = CreateCompatibleDC(hdc);
638     hbmImage = CreateCompatibleBitmap(hdc, cx, cy);
639     SelectObject(hdcImage, hbmImage);
640     ImageList_DrawEx(himl, index, hdcImage, 0, 0, cx, cy,
641                      RGB(0xff, 0xff, 0xff), RGB(0,0,0), draw_flags);
642
643     /* Create Mask */
644     hdcMask = CreateCompatibleDC(0);
645     hbmMask = CreateBitmap(cx, cy, 1, 1, NULL);
646     SelectObject(hdcMask, hbmMask);
647
648     /* Remove the background and all white pixels */
649     ImageList_DrawEx(himl, index, hdcMask, 0, 0, cx, cy,
650                      RGB(0xff, 0xff, 0xff), RGB(0,0,0), ILD_MASK);
651     SetBkColor(hdcImage, RGB(0xff, 0xff, 0xff));
652     BitBlt(hdcMask, 0, 0, cx, cy, hdcImage, 0, 0, NOTSRCERASE);
653
654     /* draw the new mask 'etched' to hdc */
655     SetBkColor(hdc, RGB(255, 255, 255));
656     SelectObject(hdc, GetSysColorBrush(COLOR_3DHILIGHT));
657     /* E20746 op code is (Dst ^ (Src & (Pat ^ Dst))) */
658     BitBlt(hdc, x + 1, y + 1, cx, cy, hdcMask, 0, 0, 0xE20746);
659     SelectObject(hdc, GetSysColorBrush(COLOR_3DSHADOW));
660     BitBlt(hdc, x, y, cx, cy, hdcMask, 0, 0, 0xE20746);
661
662     /* Cleanup */
663     DeleteObject(hbmImage);
664     DeleteDC(hdcImage);
665     DeleteObject (hbmMask);
666     DeleteDC(hdcMask);
667 }
668
669
670 static UINT
671 TOOLBAR_TranslateState(TBUTTON_INFO *btnPtr)
672 {
673     UINT retstate = 0;
674
675     retstate |= (btnPtr->fsState & TBSTATE_CHECKED) ? CDIS_CHECKED  : 0;
676     retstate |= (btnPtr->fsState & TBSTATE_PRESSED) ? CDIS_SELECTED : 0;
677     retstate |= (btnPtr->fsState & TBSTATE_ENABLED) ? 0 : CDIS_DISABLED;
678     retstate |= (btnPtr->fsState & TBSTATE_MARKED ) ? CDIS_MARKED   : 0;
679     retstate |= (btnPtr->bHot                     ) ? CDIS_HOT      : 0;
680     retstate |= ((btnPtr->fsState & (TBSTATE_ENABLED|TBSTATE_INDETERMINATE)) == (TBSTATE_ENABLED|TBSTATE_INDETERMINATE)) ? CDIS_INDETERMINATE : 0;
681     /* NOTE: we don't set CDIS_GRAYED, CDIS_FOCUS, CDIS_DEFAULT */
682     return retstate;
683 }
684
685 /* draws the image on a toolbar button */
686 static void
687 TOOLBAR_DrawImage(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr, INT left, INT top,
688     const NMTBCUSTOMDRAW *tbcd, DWORD dwItemCDFlag)
689 {
690     HIMAGELIST himl = NULL;
691     BOOL draw_masked = FALSE;
692     INT index;
693     INT offset = 0;
694     UINT draw_flags = ILD_TRANSPARENT;
695
696     if (tbcd->nmcd.uItemState & (CDIS_DISABLED | CDIS_INDETERMINATE))
697     {
698         himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DISABLED, &index);
699         if (!himl)
700         {
701             himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DEFAULT, &index);
702             draw_masked = TRUE;
703         }
704     }
705     else if (tbcd->nmcd.uItemState & CDIS_CHECKED ||
706       ((tbcd->nmcd.uItemState & CDIS_HOT) 
707       && ((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf))))
708     {
709         /* if hot, attempt to draw with hot image list, if fails, 
710            use default image list */
711         himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_HOT, &index);
712         if (!himl)
713             himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DEFAULT, &index);
714         }
715     else
716         himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DEFAULT, &index);
717
718     if (!himl)
719         return;
720
721     if (!(dwItemCDFlag & TBCDRF_NOOFFSET) && 
722         (tbcd->nmcd.uItemState & (CDIS_SELECTED | CDIS_CHECKED)))
723         offset = 1;
724
725     if (!(dwItemCDFlag & TBCDRF_NOMARK) &&
726         (tbcd->nmcd.uItemState & CDIS_MARKED))
727         draw_flags |= ILD_BLEND50;
728
729     TRACE("drawing index=%d, himl=%p, left=%d, top=%d, offset=%d\n",
730       index, himl, left, top, offset);
731
732     if (draw_masked)
733         TOOLBAR_DrawMasked (himl, index, tbcd->nmcd.hdc, left + offset, top + offset, draw_flags);
734     else
735         ImageList_Draw (himl, index, tbcd->nmcd.hdc, left + offset, top + offset, draw_flags);
736 }
737
738 /* draws a blank frame for a toolbar button */
739 static void
740 TOOLBAR_DrawFrame(const TOOLBAR_INFO *infoPtr, const NMTBCUSTOMDRAW *tbcd, DWORD dwItemCDFlag)
741 {
742     HDC hdc = tbcd->nmcd.hdc;
743     RECT rc = tbcd->nmcd.rc;
744     /* if the state is disabled or indeterminate then the button
745      * cannot have an interactive look like pressed or hot */
746     BOOL non_interactive_state = (tbcd->nmcd.uItemState & CDIS_DISABLED) ||
747                                  (tbcd->nmcd.uItemState & CDIS_INDETERMINATE);
748     BOOL pressed_look = !non_interactive_state &&
749                         ((tbcd->nmcd.uItemState & CDIS_SELECTED) || 
750                          (tbcd->nmcd.uItemState & CDIS_CHECKED));
751
752     /* app don't want us to draw any edges */
753     if (dwItemCDFlag & TBCDRF_NOEDGES)
754         return;
755
756     if (infoPtr->dwStyle & TBSTYLE_FLAT)
757     {
758         if (pressed_look)
759             DrawEdge (hdc, &rc, BDR_SUNKENOUTER, BF_RECT);
760         else if ((tbcd->nmcd.uItemState & CDIS_HOT) && !non_interactive_state)
761             DrawEdge (hdc, &rc, BDR_RAISEDINNER, BF_RECT);
762     }
763     else
764     {
765         if (pressed_look)
766             DrawEdge (hdc, &rc, EDGE_SUNKEN, BF_RECT | BF_MIDDLE);
767         else
768             DrawEdge (hdc, &rc, EDGE_RAISED,
769               BF_SOFT | BF_RECT | BF_MIDDLE);
770     }
771 }
772
773 static void
774 TOOLBAR_DrawSepDDArrow(const TOOLBAR_INFO *infoPtr, const NMTBCUSTOMDRAW *tbcd, RECT *rcArrow, BOOL bDropDownPressed, DWORD dwItemCDFlag)
775 {
776     HDC hdc = tbcd->nmcd.hdc;
777     int offset = 0;
778     BOOL pressed = bDropDownPressed ||
779         (tbcd->nmcd.uItemState & (CDIS_SELECTED | CDIS_CHECKED));
780
781     if (infoPtr->dwStyle & TBSTYLE_FLAT)
782     {
783         if (pressed)
784             DrawEdge (hdc, rcArrow, BDR_SUNKENOUTER, BF_RECT);
785         else if ( (tbcd->nmcd.uItemState & CDIS_HOT) &&
786                  !(tbcd->nmcd.uItemState & CDIS_DISABLED) &&
787                  !(tbcd->nmcd.uItemState & CDIS_INDETERMINATE))
788             DrawEdge (hdc, rcArrow, BDR_RAISEDINNER, BF_RECT);
789     }
790     else
791     {
792         if (pressed)
793             DrawEdge (hdc, rcArrow, EDGE_SUNKEN, BF_RECT | BF_MIDDLE);
794         else
795             DrawEdge (hdc, rcArrow, EDGE_RAISED,
796               BF_SOFT | BF_RECT | BF_MIDDLE);
797     }
798
799     if (pressed)
800         offset = (dwItemCDFlag & TBCDRF_NOOFFSET) ? 0 : 1;
801
802     if (tbcd->nmcd.uItemState & (CDIS_DISABLED | CDIS_INDETERMINATE))
803     {
804         TOOLBAR_DrawArrow(hdc, rcArrow->left+1, rcArrow->top+1 + (rcArrow->bottom - rcArrow->top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnHighlight);
805         TOOLBAR_DrawArrow(hdc, rcArrow->left, rcArrow->top + (rcArrow->bottom - rcArrow->top - ARROW_HEIGHT) / 2, comctl32_color.clr3dShadow);
806     }
807     else
808         TOOLBAR_DrawArrow(hdc, rcArrow->left + offset, rcArrow->top + offset + (rcArrow->bottom - rcArrow->top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnText);
809 }
810
811 /* draws a complete toolbar button */
812 static void
813 TOOLBAR_DrawButton (HWND hwnd, TBUTTON_INFO *btnPtr, HDC hdc, DWORD dwBaseCustDraw)
814 {
815     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
816     DWORD dwStyle = infoPtr->dwStyle;
817     BOOL hasDropDownArrow = (TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle) &&
818                             (btnPtr->fsStyle & BTNS_DROPDOWN)) ||
819                             (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN);
820     BOOL drawSepDropDownArrow = hasDropDownArrow && 
821                                 (~btnPtr->fsStyle & BTNS_WHOLEDROPDOWN);
822     RECT rc, rcArrow, rcBitmap, rcText;
823     LPWSTR lpText = NULL;
824     NMTBCUSTOMDRAW tbcd;
825     DWORD ntfret;
826     INT offset;
827     INT oldBkMode;
828     DWORD dwItemCustDraw;
829     DWORD dwItemCDFlag;
830     HTHEME theme = GetWindowTheme (hwnd);
831
832     rc = btnPtr->rect;
833     CopyRect (&rcArrow, &rc);
834
835     /* separator - doesn't send NM_CUSTOMDRAW */
836     if (btnPtr->fsStyle & BTNS_SEP) {
837         if (theme)
838         {
839             DrawThemeBackground (theme, hdc, 
840                 (dwStyle & CCS_VERT) ? TP_SEPARATORVERT : TP_SEPARATOR, 0, 
841                 &rc, NULL);
842         }
843         else
844         /* with the FLAT style, iBitmap is the width and has already */
845         /* been taken into consideration in calculating the width    */
846         /* so now we need to draw the vertical separator             */
847         /* empirical tests show that iBitmap can/will be non-zero    */
848         /* when drawing the vertical bar...      */
849         if ((dwStyle & TBSTYLE_FLAT) /* && (btnPtr->iBitmap == 0) */) {
850             if (btnPtr->fsStyle & BTNS_DROPDOWN)
851                 TOOLBAR_DrawDDFlatSeparator (&rc, hdc, btnPtr, infoPtr);
852             else
853                 TOOLBAR_DrawFlatSeparator (&rc, hdc, infoPtr);
854         }
855         else if (btnPtr->fsStyle != BTNS_SEP) {
856             FIXME("Draw some kind of separator: fsStyle=%x\n",
857                   btnPtr->fsStyle);
858         }
859         return;
860     }
861
862     /* get a pointer to the text */
863     lpText = TOOLBAR_GetText(infoPtr, btnPtr);
864
865     if (hasDropDownArrow)
866     {
867         int right;
868
869         if (dwStyle & TBSTYLE_FLAT)
870             right = max(rc.left, rc.right - DDARROW_WIDTH);
871         else
872             right = max(rc.left, rc.right - DDARROW_WIDTH - 2);
873
874         if (drawSepDropDownArrow)
875            rc.right = right;
876
877         rcArrow.left = right;
878     }
879
880     /* copy text & bitmap rects after adjusting for drop-down arrow
881      * so that text & bitmap is centred in the rectangle not containing
882      * the arrow */
883     CopyRect(&rcText, &rc);
884     CopyRect(&rcBitmap, &rc);
885
886     /* Center the bitmap horizontally and vertically */
887     if (dwStyle & TBSTYLE_LIST)
888     {
889         if (lpText &&
890             infoPtr->nMaxTextRows > 0 &&
891             (!(infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) ||
892             (btnPtr->fsStyle & BTNS_SHOWTEXT)) )
893             rcBitmap.left += GetSystemMetrics(SM_CXEDGE) + infoPtr->szPadding.cx / 2;
894         else
895             rcBitmap.left += GetSystemMetrics(SM_CXEDGE) + infoPtr->iListGap / 2;
896     }
897     else
898         rcBitmap.left += ((rc.right - rc.left) - infoPtr->nBitmapWidth) / 2;
899
900     rcBitmap.top += infoPtr->szPadding.cy / 2;
901
902     TRACE("iBitmap=%d, start=(%d,%d) w=%d, h=%d\n",
903       btnPtr->iBitmap, rcBitmap.left, rcBitmap.top,
904       infoPtr->nBitmapWidth, infoPtr->nBitmapHeight);
905     TRACE("Text=%s\n", debugstr_w(lpText));
906     TRACE("iListGap=%d, padding = { %d, %d }\n", infoPtr->iListGap, infoPtr->szPadding.cx, infoPtr->szPadding.cy);
907
908     /* calculate text position */
909     if (lpText)
910     {
911         rcText.left += GetSystemMetrics(SM_CXEDGE);
912         rcText.right -= GetSystemMetrics(SM_CXEDGE);
913         if (dwStyle & TBSTYLE_LIST)
914         {
915             if (TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
916                 rcText.left += infoPtr->nBitmapWidth + infoPtr->iListGap + 2;
917         }
918         else
919         {
920             if (ImageList_GetImageCount(GETDEFIMAGELIST(infoPtr, 0)) > 0)
921                 rcText.top += infoPtr->szPadding.cy/2 + infoPtr->nBitmapHeight + 1;
922             else
923                 rcText.top += infoPtr->szPadding.cy/2 + 2;
924         }
925     }
926
927     /* Initialize fields in all cases, because we use these later
928      * NOTE: applications can and do alter these to customize their
929      * toolbars */
930     ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
931     tbcd.clrText = comctl32_color.clrBtnText;
932     tbcd.clrTextHighlight = comctl32_color.clrHighlightText;
933     tbcd.clrBtnFace = comctl32_color.clrBtnFace;
934     tbcd.clrBtnHighlight = comctl32_color.clrBtnHighlight;
935     tbcd.clrMark = comctl32_color.clrHighlight;
936     tbcd.clrHighlightHotTrack = 0;
937     tbcd.nStringBkMode = TRANSPARENT;
938     tbcd.nHLStringBkMode = OPAQUE;
939     /* MSDN says that this is the text rectangle.
940      * But (why always a but) tracing of v5.7 of native shows
941      * that this is really a *relative* rectangle based on the
942      * the nmcd.rc. Also the left and top are always 0 ignoring
943      * any bitmap that might be present. */
944     tbcd.rcText.left = 0;
945     tbcd.rcText.top = 0;
946     tbcd.rcText.right = rcText.right - rc.left;
947     tbcd.rcText.bottom = rcText.bottom - rc.top;
948     tbcd.nmcd.uItemState = TOOLBAR_TranslateState(btnPtr);
949     tbcd.nmcd.hdc = hdc;
950     tbcd.nmcd.rc = rc;
951     tbcd.hbrMonoDither = COMCTL32_hPattern55AABrush;
952
953     /* FIXME: what are these used for? */
954     tbcd.hbrLines = 0;
955     tbcd.hpenLines = 0;
956
957     /* Issue Item Prepaint notify */
958     dwItemCustDraw = 0;
959     dwItemCDFlag = 0;
960     if (dwBaseCustDraw & CDRF_NOTIFYITEMDRAW)
961     {
962         tbcd.nmcd.dwDrawStage = CDDS_ITEMPREPAINT;
963         tbcd.nmcd.dwItemSpec = btnPtr->idCommand;
964         tbcd.nmcd.lItemlParam = btnPtr->dwData;
965         ntfret = TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
966         /* reset these fields so the user can't alter the behaviour like native */
967         tbcd.nmcd.hdc = hdc;
968         tbcd.nmcd.rc = rc;
969
970         dwItemCustDraw = ntfret & 0xffff;
971         dwItemCDFlag = ntfret & 0xffff0000;
972         if (dwItemCustDraw & CDRF_SKIPDEFAULT)
973             return;
974         /* save the only part of the rect that the user can change */
975         rcText.right = tbcd.rcText.right + rc.left;
976         rcText.bottom = tbcd.rcText.bottom + rc.top;
977     }
978
979     if (!(dwItemCDFlag & TBCDRF_NOOFFSET) &&
980         (btnPtr->fsState & (TBSTATE_PRESSED | TBSTATE_CHECKED)))
981         OffsetRect(&rcText, 1, 1);
982
983     if (!(tbcd.nmcd.uItemState & CDIS_HOT) && 
984         ((tbcd.nmcd.uItemState & CDIS_CHECKED) || (tbcd.nmcd.uItemState & CDIS_INDETERMINATE)))
985         TOOLBAR_DrawPattern (&rc, &tbcd);
986
987     if (((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)) 
988         && (tbcd.nmcd.uItemState & CDIS_HOT))
989     {
990         if ( dwItemCDFlag & TBCDRF_HILITEHOTTRACK )
991         {
992             COLORREF oldclr;
993
994             oldclr = SetBkColor(hdc, tbcd.clrHighlightHotTrack);
995             ExtTextOutW(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, 0);
996             if (hasDropDownArrow)
997                 ExtTextOutW(hdc, 0, 0, ETO_OPAQUE, &rcArrow, NULL, 0, 0);
998             SetBkColor(hdc, oldclr);
999         }
1000     }
1001
1002     if (theme)
1003     {
1004         int partId = drawSepDropDownArrow ? TP_SPLITBUTTON : TP_BUTTON;
1005         int stateId = TS_NORMAL;
1006         
1007         if (tbcd.nmcd.uItemState & CDIS_DISABLED)
1008             stateId = TS_DISABLED;
1009         else if (tbcd.nmcd.uItemState & CDIS_SELECTED)
1010             stateId = TS_PRESSED;
1011         else if (tbcd.nmcd.uItemState & CDIS_CHECKED)
1012             stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_HOT;
1013         else if ((tbcd.nmcd.uItemState & CDIS_HOT)
1014             || (drawSepDropDownArrow && btnPtr->bDropDownPressed))
1015             stateId = TS_HOT;
1016             
1017         DrawThemeBackground (theme, hdc, partId, stateId, &tbcd.nmcd.rc, NULL);
1018     }
1019     else
1020         TOOLBAR_DrawFrame(infoPtr, &tbcd, dwItemCDFlag);
1021
1022     if (drawSepDropDownArrow)
1023     {
1024         if (theme)
1025         {
1026             int stateId = TS_NORMAL;
1027             
1028             if (tbcd.nmcd.uItemState & CDIS_DISABLED)
1029                 stateId = TS_DISABLED;
1030             else if (btnPtr->bDropDownPressed || (tbcd.nmcd.uItemState & CDIS_SELECTED))
1031                 stateId = TS_PRESSED;
1032             else if (tbcd.nmcd.uItemState & CDIS_CHECKED)
1033                 stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_HOT;
1034             else if (tbcd.nmcd.uItemState & CDIS_HOT)
1035                 stateId = TS_HOT;
1036                 
1037             DrawThemeBackground (theme, hdc, TP_DROPDOWNBUTTON, stateId, &rcArrow, NULL);
1038             DrawThemeBackground (theme, hdc, TP_SPLITBUTTONDROPDOWN, stateId, &rcArrow, NULL);
1039         }
1040         else
1041             TOOLBAR_DrawSepDDArrow(infoPtr, &tbcd, &rcArrow, btnPtr->bDropDownPressed, dwItemCDFlag);
1042     }
1043
1044     oldBkMode = SetBkMode (hdc, tbcd.nStringBkMode);
1045     if (!(infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) || (btnPtr->fsStyle & BTNS_SHOWTEXT))
1046         TOOLBAR_DrawString (infoPtr, &rcText, lpText, &tbcd, dwItemCDFlag);
1047     SetBkMode (hdc, oldBkMode);
1048
1049     TOOLBAR_DrawImage(infoPtr, btnPtr, rcBitmap.left, rcBitmap.top, &tbcd, dwItemCDFlag);
1050
1051     if (hasDropDownArrow && !drawSepDropDownArrow)
1052     {
1053         if (tbcd.nmcd.uItemState & (CDIS_DISABLED | CDIS_INDETERMINATE))
1054         {
1055             TOOLBAR_DrawArrow(hdc, rcArrow.left+1, rcArrow.top+1 + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnHighlight);
1056             TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clr3dShadow);
1057         }
1058         else if (tbcd.nmcd.uItemState & (CDIS_SELECTED | CDIS_CHECKED))
1059         {
1060             offset = (dwItemCDFlag & TBCDRF_NOOFFSET) ? 0 : 1;
1061             TOOLBAR_DrawArrow(hdc, rcArrow.left + offset, rcArrow.top + offset + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnText);
1062         }
1063         else
1064             TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnText);
1065     }
1066
1067     if (dwItemCustDraw & CDRF_NOTIFYPOSTPAINT)
1068     {
1069         tbcd.nmcd.dwDrawStage = CDDS_ITEMPOSTPAINT;
1070         TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
1071     }
1072
1073 }
1074
1075
1076 static void
1077 TOOLBAR_Refresh (HWND hwnd, HDC hdc, PAINTSTRUCT* ps)
1078 {
1079     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1080     TBUTTON_INFO *btnPtr;
1081     INT i;
1082     RECT rcTemp, rcClient;
1083     NMTBCUSTOMDRAW tbcd;
1084     DWORD ntfret;
1085     DWORD dwBaseCustDraw;
1086
1087     /* the app has told us not to redraw the toolbar */
1088     if (!infoPtr->bDoRedraw)
1089         return;
1090
1091     /* if imagelist belongs to the app, it can be changed
1092        by the app after setting it */
1093     if (GETDEFIMAGELIST(infoPtr, 0) != infoPtr->himlInt)
1094     {
1095         infoPtr->nNumBitmaps = 0;
1096         for (i = 0; i < infoPtr->cimlDef; i++)
1097             infoPtr->nNumBitmaps += ImageList_GetImageCount(infoPtr->himlDef[i]->himl);
1098     }
1099
1100     TOOLBAR_DumpToolbar (infoPtr, __LINE__);
1101
1102     /* change the imagelist icon size if we manage the list and it is necessary */
1103     TOOLBAR_CheckImageListIconSize(infoPtr);
1104
1105     /* Send initial notify */
1106     ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
1107     tbcd.nmcd.dwDrawStage = CDDS_PREPAINT;
1108     tbcd.nmcd.hdc = hdc;
1109     tbcd.nmcd.rc = ps->rcPaint;
1110     ntfret = TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
1111     dwBaseCustDraw = ntfret & 0xffff;
1112
1113     GetClientRect(hwnd, &rcClient);
1114
1115     /* redraw necessary buttons */
1116     btnPtr = infoPtr->buttons;
1117     for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++)
1118     {
1119         BOOL bDraw;
1120         if (!RectVisible(hdc, &btnPtr->rect))
1121             continue;
1122         if (infoPtr->dwExStyle & TBSTYLE_EX_HIDECLIPPEDBUTTONS)
1123         {
1124             IntersectRect(&rcTemp, &rcClient, &btnPtr->rect);
1125             bDraw = EqualRect(&rcTemp, &btnPtr->rect);
1126         }
1127         else
1128             bDraw = TRUE;
1129         bDraw &= IntersectRect(&rcTemp, &(ps->rcPaint), &(btnPtr->rect));
1130         bDraw = (btnPtr->fsState & TBSTATE_HIDDEN) ? FALSE : bDraw;
1131         if (bDraw)
1132             TOOLBAR_DrawButton(hwnd, btnPtr, hdc, dwBaseCustDraw);
1133     }
1134
1135     /* draw insert mark if required */
1136     if (infoPtr->tbim.iButton != -1)
1137     {
1138         RECT rcButton = infoPtr->buttons[infoPtr->tbim.iButton].rect;
1139         RECT rcInsertMark;
1140         rcInsertMark.top = rcButton.top;
1141         rcInsertMark.bottom = rcButton.bottom;
1142         if (infoPtr->tbim.dwFlags & TBIMHT_AFTER)
1143             rcInsertMark.left = rcInsertMark.right = rcButton.right;
1144         else
1145             rcInsertMark.left = rcInsertMark.right = rcButton.left - INSERTMARK_WIDTH;
1146         COMCTL32_DrawInsertMark(hdc, &rcInsertMark, infoPtr->clrInsertMark, FALSE);
1147     }
1148
1149     if (dwBaseCustDraw & CDRF_NOTIFYPOSTPAINT)
1150     {
1151         ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
1152         tbcd.nmcd.dwDrawStage = CDDS_POSTPAINT;
1153         tbcd.nmcd.hdc = hdc;
1154         tbcd.nmcd.rc = ps->rcPaint;
1155         ntfret = TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
1156     }
1157 }
1158
1159 /***********************************************************************
1160 *               TOOLBAR_MeasureString
1161 *
1162 * This function gets the width and height of a string in pixels. This
1163 * is done first by using GetTextExtentPoint to get the basic width
1164 * and height. The DrawText is called with DT_CALCRECT to get the exact
1165 * width. The reason is because the text may have more than one "&" (or
1166 * prefix characters as M$ likes to call them). The prefix character
1167 * indicates where the underline goes, except for the string "&&" which
1168 * is reduced to a single "&". GetTextExtentPoint does not process these
1169 * only DrawText does. Note that the BTNS_NOPREFIX is handled here.
1170 */
1171 static void
1172 TOOLBAR_MeasureString(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr,
1173                       HDC hdc, LPSIZE lpSize)
1174 {
1175     RECT myrect;
1176
1177     lpSize->cx = 0;
1178     lpSize->cy = 0;
1179
1180     if (infoPtr->nMaxTextRows > 0 &&
1181         !(btnPtr->fsState & TBSTATE_HIDDEN) &&
1182         (!(infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) ||
1183         (btnPtr->fsStyle & BTNS_SHOWTEXT)) )
1184     {
1185         LPWSTR lpText = TOOLBAR_GetText(infoPtr, btnPtr);
1186
1187         if(lpText != NULL) {
1188             /* first get size of all the text */
1189             GetTextExtentPoint32W (hdc, lpText, strlenW (lpText), lpSize);
1190
1191             /* feed above size into the rectangle for DrawText */
1192             myrect.left = myrect.top = 0;
1193             myrect.right = lpSize->cx;
1194             myrect.bottom = lpSize->cy;
1195
1196             /* Use DrawText to get true size as drawn (less pesky "&") */
1197             DrawTextW (hdc, lpText, -1, &myrect, DT_VCENTER | DT_SINGLELINE |
1198                    DT_CALCRECT | ((btnPtr->fsStyle & BTNS_NOPREFIX) ?
1199                                   DT_NOPREFIX : 0));
1200
1201             /* feed back to caller  */
1202             lpSize->cx = myrect.right;
1203             lpSize->cy = myrect.bottom;
1204         }
1205     }
1206
1207     TRACE("string size %d x %d!\n", lpSize->cx, lpSize->cy);
1208 }
1209
1210 /***********************************************************************
1211 *               TOOLBAR_CalcStrings
1212 *
1213 * This function walks through each string and measures it and returns
1214 * the largest height and width to caller.
1215 */
1216 static void
1217 TOOLBAR_CalcStrings (HWND hwnd, LPSIZE lpSize)
1218 {
1219     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1220     TBUTTON_INFO *btnPtr;
1221     INT i;
1222     SIZE sz;
1223     HDC hdc;
1224     HFONT hOldFont;
1225
1226     lpSize->cx = 0;
1227     lpSize->cy = 0;
1228
1229     if (infoPtr->nMaxTextRows == 0)
1230         return;
1231
1232     hdc = GetDC (hwnd);
1233     hOldFont = SelectObject (hdc, infoPtr->hFont);
1234
1235     if (infoPtr->nNumButtons == 0 && infoPtr->nNumStrings > 0)
1236     {
1237         TEXTMETRICW tm;
1238
1239         GetTextMetricsW(hdc, &tm);
1240         lpSize->cy = tm.tmHeight;
1241     }
1242
1243     btnPtr = infoPtr->buttons;
1244     for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
1245         if(TOOLBAR_HasText(infoPtr, btnPtr))
1246         {
1247             TOOLBAR_MeasureString(infoPtr, btnPtr, hdc, &sz);
1248             if (sz.cx > lpSize->cx)
1249                 lpSize->cx = sz.cx;
1250             if (sz.cy > lpSize->cy)
1251                 lpSize->cy = sz.cy;
1252         }
1253     }
1254
1255     SelectObject (hdc, hOldFont);
1256     ReleaseDC (hwnd, hdc);
1257
1258     TRACE("max string size %d x %d!\n", lpSize->cx, lpSize->cy);
1259 }
1260
1261 /***********************************************************************
1262 *               TOOLBAR_WrapToolbar
1263 *
1264 * This function walks through the buttons and separators in the
1265 * toolbar, and sets the TBSTATE_WRAP flag only on those items where
1266 * wrapping should occur based on the width of the toolbar window.
1267 * It does *not* calculate button placement itself.  That task
1268 * takes place in TOOLBAR_CalcToolbar. If the program wants to manage
1269 * the toolbar wrapping on its own, it can use the TBSTYLE_WRAPABLE
1270 * flag, and set the TBSTATE_WRAP flags manually on the appropriate items.
1271 *
1272 * Note: TBSTYLE_WRAPABLE or TBSTYLE_EX_UNDOC1 can be used also to allow
1273 * vertical toolbar lists.
1274 */
1275
1276 static void
1277 TOOLBAR_WrapToolbar( HWND hwnd, DWORD dwStyle )
1278 {
1279     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1280     TBUTTON_INFO *btnPtr;
1281     INT x, cx, i, j;
1282     RECT rc;
1283     BOOL bWrap, bButtonWrap;
1284
1285     /*  When the toolbar window style is not TBSTYLE_WRAPABLE,  */
1286     /*  no layout is necessary. Applications may use this style */
1287     /*  to perform their own layout on the toolbar.             */
1288     if( !(dwStyle & TBSTYLE_WRAPABLE) &&
1289         !(infoPtr->dwExStyle & TBSTYLE_EX_UNDOC1) )  return;
1290
1291     btnPtr = infoPtr->buttons;
1292     x  = infoPtr->nIndent;
1293
1294     if (GetParent(hwnd))
1295     {
1296         /* this can get the parents width, to know how far we can extend
1297          * this toolbar.  We cannot use its height, as there may be multiple
1298          * toolbars in a rebar control
1299          */
1300         GetClientRect( GetParent(hwnd), &rc );
1301         infoPtr->nWidth = rc.right - rc.left;
1302     }
1303     else
1304     {
1305         GetWindowRect( hwnd, &rc );
1306         infoPtr->nWidth = rc.right - rc.left;
1307     }
1308
1309     bButtonWrap = FALSE;
1310
1311     TRACE("start ButtonWidth=%d, BitmapWidth=%d, nWidth=%d, nIndent=%d\n",
1312           infoPtr->nButtonWidth, infoPtr->nBitmapWidth, infoPtr->nWidth,
1313           infoPtr->nIndent);
1314
1315     for (i = 0; i < infoPtr->nNumButtons; i++ )
1316     {
1317         bWrap = FALSE;
1318         btnPtr[i].fsState &= ~TBSTATE_WRAP;
1319
1320         if (btnPtr[i].fsState & TBSTATE_HIDDEN)
1321             continue;
1322
1323         /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
1324         /* it is the actual width of the separator. This is used for */
1325         /* custom controls in toolbars.                              */
1326         /*                                                           */
1327         /* BTNS_DROPDOWN separators are treated as buttons for    */
1328         /* width.  - GA 8/01                                         */
1329         if ((btnPtr[i].fsStyle & BTNS_SEP) &&
1330             !(btnPtr[i].fsStyle & BTNS_DROPDOWN))
1331             cx = (btnPtr[i].iBitmap > 0) ?
1332                         btnPtr[i].iBitmap : SEPARATOR_WIDTH;
1333         else
1334             cx = infoPtr->nButtonWidth;
1335
1336         /* Two or more adjacent separators form a separator group.   */
1337         /* The first separator in a group should be wrapped to the   */
1338         /* next row if the previous wrapping is on a button.         */
1339         if( bButtonWrap &&
1340                 (btnPtr[i].fsStyle & BTNS_SEP) &&
1341                 (i + 1 < infoPtr->nNumButtons ) &&
1342                 (btnPtr[i + 1].fsStyle & BTNS_SEP) )
1343         {
1344             TRACE("wrap point 1 btn %d style %02x\n", i, btnPtr[i].fsStyle);
1345             btnPtr[i].fsState |= TBSTATE_WRAP;
1346             x = infoPtr->nIndent;
1347             i++;
1348             bButtonWrap = FALSE;
1349             continue;
1350         }
1351
1352         /* The layout makes sure the bitmap is visible, but not the button. */
1353         /* Test added to also wrap after a button that starts a row but     */
1354         /* is bigger than the area.  - GA  8/01                             */
1355         if (( x + cx - (infoPtr->nButtonWidth - infoPtr->nBitmapWidth) / 2
1356            > infoPtr->nWidth ) ||
1357             ((x == infoPtr->nIndent) && (cx > infoPtr->nWidth)))
1358         {
1359             BOOL bFound = FALSE;
1360
1361             /*  If the current button is a separator and not hidden,  */
1362             /*  go to the next until it reaches a non separator.      */
1363             /*  Wrap the last separator if it is before a button.     */
1364             while( ( ((btnPtr[i].fsStyle & BTNS_SEP) &&
1365                       !(btnPtr[i].fsStyle & BTNS_DROPDOWN)) ||
1366                      (btnPtr[i].fsState & TBSTATE_HIDDEN) ) &&
1367                         i < infoPtr->nNumButtons )
1368             {
1369                 i++;
1370                 bFound = TRUE;
1371             }
1372
1373             if( bFound && i < infoPtr->nNumButtons )
1374             {
1375                 i--;
1376                 TRACE("wrap point 2 btn %d style %02x, x=%d, cx=%d\n",
1377                       i, btnPtr[i].fsStyle, x, cx);
1378                 btnPtr[i].fsState |= TBSTATE_WRAP;
1379                 x = infoPtr->nIndent;
1380                 bButtonWrap = FALSE;
1381                 continue;
1382             }
1383             else if ( i >= infoPtr->nNumButtons)
1384                 break;
1385
1386             /*  If the current button is not a separator, find the last  */
1387             /*  separator and wrap it.                                   */
1388             for ( j = i - 1; j >= 0  &&  !(btnPtr[j].fsState & TBSTATE_WRAP); j--)
1389             {
1390                 if ((btnPtr[j].fsStyle & BTNS_SEP) &&
1391                         !(btnPtr[j].fsState & TBSTATE_HIDDEN))
1392                 {
1393                     bFound = TRUE;
1394                     i = j;
1395                     TRACE("wrap point 3 btn %d style %02x, x=%d, cx=%d\n",
1396                           i, btnPtr[i].fsStyle, x, cx);
1397                     x = infoPtr->nIndent;
1398                     btnPtr[j].fsState |= TBSTATE_WRAP;
1399                     bButtonWrap = FALSE;
1400                     break;
1401                 }
1402             }
1403
1404             /*  If no separator available for wrapping, wrap one of     */
1405             /*  non-hidden previous button.                             */
1406             if (!bFound)
1407             {
1408                 for ( j = i - 1;
1409                         j >= 0 && !(btnPtr[j].fsState & TBSTATE_WRAP); j--)
1410                 {
1411                     if (btnPtr[j].fsState & TBSTATE_HIDDEN)
1412                         continue;
1413
1414                     bFound = TRUE;
1415                     i = j;
1416                     TRACE("wrap point 4 btn %d style %02x, x=%d, cx=%d\n",
1417                           i, btnPtr[i].fsStyle, x, cx);
1418                     x = infoPtr->nIndent;
1419                     btnPtr[j].fsState |= TBSTATE_WRAP;
1420                     bButtonWrap = TRUE;
1421                     break;
1422                 }
1423             }
1424
1425             /* If all above failed, wrap the current button. */
1426             if (!bFound)
1427             {
1428                 TRACE("wrap point 5 btn %d style %02x, x=%d, cx=%d\n",
1429                       i, btnPtr[i].fsStyle, x, cx);
1430                 btnPtr[i].fsState |= TBSTATE_WRAP;
1431                 bFound = TRUE;
1432                 x = infoPtr->nIndent;
1433                 if (btnPtr[i].fsStyle & BTNS_SEP )
1434                     bButtonWrap = FALSE;
1435                 else
1436                     bButtonWrap = TRUE;
1437             }
1438         }
1439         else {
1440             TRACE("wrap point 6 btn %d style %02x, x=%d, cx=%d\n",
1441                   i, btnPtr[i].fsStyle, x, cx);
1442             x += cx;
1443         }
1444     }
1445 }
1446
1447
1448 /***********************************************************************
1449 *               TOOLBAR_MeasureButton
1450 *
1451 * Calculates the width and height required for a button. Used in
1452 * TOOLBAR_CalcToolbar to set the all-button width and height and also for
1453 * the width of buttons that are autosized.
1454 *
1455 * Note that it would have been rather elegant to use one piece of code for
1456 * both the laying out of the toolbar and for controlling where button parts
1457 * are drawn, but the native control has inconsistencies between the two that
1458 * prevent this from being effectively. These inconsistencies can be seen as
1459 * artefacts where parts of the button appear outside of the bounding button
1460 * rectangle.
1461 *
1462 * There are several cases for the calculation of the button dimensions and
1463 * button part positioning:
1464 *
1465 * List
1466 * ====
1467 *
1468 * With Bitmap:
1469 *
1470 * +--------------------------------------------------------+ ^
1471 * |                    ^                     ^             | |
1472 * |                    | pad.cy / 2          | centred     | |
1473 * | pad.cx/2 + cxedge +--------------+     +------------+  | | DEFPAD_CY +
1474 * |<----------------->| nBitmapWidth |     | Text       |  | | max(nBitmapHeight, szText.cy)
1475 * |                   |<------------>|     |            |  | |
1476 * |                   +--------------+     +------------+  | |
1477 * |<-------------------------------------->|               | |
1478 * |  cxedge + iListGap + nBitmapWidth + 2  |<----------->  | |
1479 * |                                           szText.cx    | |
1480 * +--------------------------------------------------------+ -
1481 * <-------------------------------------------------------->
1482 *  2*cxedge + nBitmapWidth + iListGap + szText.cx + pad.cx
1483 *
1484 * Without Bitmap (I_IMAGENONE):
1485 *
1486 * +-----------------------------------+ ^
1487 * |                     ^             | |
1488 * |                     | centred     | | LISTPAD_CY +
1489 * |                   +------------+  | | szText.cy
1490 * |                   | Text       |  | |
1491 * |                   |            |  | |
1492 * |                   +------------+  | |
1493 * |<----------------->|               | |
1494 * |      cxedge       |<----------->  | |
1495 * |                      szText.cx    | |
1496 * +-----------------------------------+ -
1497 * <----------------------------------->
1498 *          szText.cx + pad.cx
1499 *
1500 * Without text:
1501 *
1502 * +--------------------------------------+ ^
1503 * |                       ^              | |
1504 * |                       | padding.cy/2 | | DEFPAD_CY +
1505 * |                     +------------+   | | nBitmapHeight
1506 * |                     | Bitmap     |   | |
1507 * |                     |            |   | |
1508 * |                     +------------+   | |
1509 * |<------------------->|                | |
1510 * | cxedge + iListGap/2 |<----------->   | |
1511 * |                       nBitmapWidth   | |
1512 * +--------------------------------------+ -
1513 * <-------------------------------------->
1514 *     2*cxedge + nBitmapWidth + iListGap
1515 *
1516 * Non-List
1517 * ========
1518 *
1519 * With bitmap:
1520 *
1521 * +-----------------------------------+ ^
1522 * |                     ^             | |
1523 * |                     | pad.cy / 2  | | nBitmapHeight +
1524 * |                     -             | | szText.cy +
1525 * |                   +------------+  | | DEFPAD_CY + 1
1526 * |    centred        |   Bitmap   |  | |
1527 * |<----------------->|            |  | |
1528 * |                   +------------+  | |
1529 * |                         ^         | |
1530 * |                       1 |         | |
1531 * |                         -         | |
1532 * |     centred     +---------------+ | |
1533 * |<--------------->|      Text     | | |
1534 * |                 +---------------+ | |
1535 * +-----------------------------------+ -
1536 * <----------------------------------->
1537 * pad.cx + max(nBitmapWidth, szText.cx)
1538 *
1539 * Without bitmaps (NULL imagelist or ImageList_GetImageCount() = 0):
1540 *
1541 * +---------------------------------------+ ^
1542 * |                     ^                 | |
1543 * |                     | 2 + pad.cy / 2  | |
1544 * |                     -                 | | szText.cy +
1545 * |    centred      +-----------------+   | | pad.cy + 2
1546 * |<--------------->|   Text          |   | |
1547 * |                 +-----------------+   | |
1548 * |                                       | |
1549 * +---------------------------------------+ -
1550 * <--------------------------------------->
1551 *          2*cxedge + pad.cx + szText.cx
1552 *
1553 * Without text:
1554 *   As for with bitmaps, but with szText.cx zero.
1555 */
1556 static inline SIZE TOOLBAR_MeasureButton(TOOLBAR_INFO *infoPtr, SIZE sizeString, BOOL bHasBitmap, BOOL bValidImageList)
1557 {
1558     SIZE sizeButton;
1559     if (infoPtr->dwStyle & TBSTYLE_LIST)
1560     {
1561         /* set button height from bitmap / text height... */
1562         sizeButton.cy = max((bHasBitmap ? infoPtr->nBitmapHeight : 0),
1563             sizeString.cy);
1564
1565         /* ... add on the necessary padding */
1566         if (bValidImageList)
1567         {
1568             if (bHasBitmap)
1569                 sizeButton.cy += DEFPAD_CY;
1570             else
1571                 sizeButton.cy += LISTPAD_CY;
1572         }
1573         else
1574             sizeButton.cy += infoPtr->szPadding.cy;
1575
1576         /* calculate button width */
1577         if (bHasBitmap)
1578         {
1579             sizeButton.cx = 2*GetSystemMetrics(SM_CXEDGE) +
1580                 infoPtr->nBitmapWidth + infoPtr->iListGap;
1581             if (sizeString.cx > 0)
1582                 sizeButton.cx += sizeString.cx + infoPtr->szPadding.cx;
1583         }
1584         else
1585             sizeButton.cx = sizeString.cx + infoPtr->szPadding.cx;
1586     }
1587     else
1588     {
1589         if (bHasBitmap)
1590         {
1591             sizeButton.cy = infoPtr->nBitmapHeight + DEFPAD_CY;
1592             if (sizeString.cy > 0)
1593                 sizeButton.cy += 1 + sizeString.cy;
1594             sizeButton.cx = infoPtr->szPadding.cx +
1595                 max(sizeString.cx, infoPtr->nBitmapWidth);
1596         }
1597         else
1598         {
1599             sizeButton.cy = sizeString.cy + infoPtr->szPadding.cy +
1600                 NONLIST_NOTEXT_OFFSET;
1601             sizeButton.cx = 2*GetSystemMetrics(SM_CXEDGE) +
1602                 infoPtr->szPadding.cx + sizeString.cx;
1603         }
1604     }
1605     return sizeButton;
1606 }
1607
1608
1609 /***********************************************************************
1610 *               TOOLBAR_CalcToolbar
1611 *
1612 * This function calculates button and separator placement. It first
1613 * calculates the button sizes, gets the toolbar window width and then
1614 * calls TOOLBAR_WrapToolbar to determine which buttons we need to wrap
1615 * on. It assigns a new location to each item and sends this location to
1616 * the tooltip window if appropriate. Finally, it updates the rcBound
1617 * rect and calculates the new required toolbar window height.
1618 */
1619 static void
1620 TOOLBAR_CalcToolbar (HWND hwnd)
1621 {
1622     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
1623     SIZE  sizeString, sizeButton;
1624     BOOL validImageList = FALSE;
1625
1626     TOOLBAR_CalcStrings (hwnd, &sizeString);
1627
1628     TOOLBAR_DumpToolbar (infoPtr, __LINE__);
1629
1630     if (TOOLBAR_IsValidImageList(infoPtr, 0))
1631         validImageList = TRUE;
1632     sizeButton = TOOLBAR_MeasureButton(infoPtr, sizeString, TRUE, validImageList);
1633     infoPtr->nButtonWidth = sizeButton.cx;
1634     infoPtr->nButtonHeight = sizeButton.cy;
1635     infoPtr->iTopMargin = default_top_margin(infoPtr);
1636
1637     if ( infoPtr->cxMin >= 0 && infoPtr->nButtonWidth < infoPtr->cxMin )
1638         infoPtr->nButtonWidth = infoPtr->cxMin;
1639     if ( infoPtr->cxMax > 0 && infoPtr->nButtonWidth > infoPtr->cxMax )
1640         infoPtr->nButtonWidth = infoPtr->cxMax;
1641
1642     TOOLBAR_LayoutToolbar(hwnd);
1643 }
1644
1645 static void
1646 TOOLBAR_LayoutToolbar(HWND hwnd)
1647 {
1648     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
1649     TBUTTON_INFO *btnPtr;
1650     SIZE sizeButton;
1651     INT i, nRows, nSepRows;
1652     INT x, y, cx, cy;
1653     BOOL bWrap;
1654     BOOL validImageList = TOOLBAR_IsValidImageList(infoPtr, 0);
1655     BOOL hasDropDownArrows = TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle);
1656
1657     TOOLBAR_WrapToolbar(hwnd, infoPtr->dwStyle);
1658
1659     x  = infoPtr->nIndent;
1660     y  = infoPtr->iTopMargin;
1661     cx = infoPtr->nButtonWidth;
1662     cy = infoPtr->nButtonHeight;
1663
1664     nRows = nSepRows = 0;
1665
1666     infoPtr->rcBound.top = y;
1667     infoPtr->rcBound.left = x;
1668     infoPtr->rcBound.bottom = y + cy;
1669     infoPtr->rcBound.right = x;
1670
1671     btnPtr = infoPtr->buttons;
1672
1673     TRACE("cy=%d\n", cy);
1674
1675     for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++ )
1676     {
1677         bWrap = FALSE;
1678         if (btnPtr->fsState & TBSTATE_HIDDEN)
1679         {
1680             SetRectEmpty (&btnPtr->rect);
1681             continue;
1682         }
1683
1684         cy = infoPtr->nButtonHeight;
1685
1686         /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
1687         /* it is the actual width of the separator. This is used for */
1688         /* custom controls in toolbars.                              */
1689         if (btnPtr->fsStyle & BTNS_SEP) {
1690             if (btnPtr->fsStyle & BTNS_DROPDOWN) {
1691                 cy = (btnPtr->iBitmap > 0) ?
1692                      btnPtr->iBitmap : SEPARATOR_WIDTH;
1693                 cx = infoPtr->nButtonWidth;
1694             }
1695             else
1696                 cx = (btnPtr->iBitmap > 0) ?
1697                      btnPtr->iBitmap : SEPARATOR_WIDTH;
1698         }
1699         else
1700         {
1701             if (btnPtr->cx)
1702               cx = btnPtr->cx;
1703             else if ((infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) || 
1704                 (btnPtr->fsStyle & BTNS_AUTOSIZE))
1705             {
1706               SIZE sz;
1707               HDC hdc;
1708               HFONT hOldFont;
1709
1710               hdc = GetDC (hwnd);
1711               hOldFont = SelectObject (hdc, infoPtr->hFont);
1712
1713               TOOLBAR_MeasureString(infoPtr, btnPtr, hdc, &sz);
1714
1715               SelectObject (hdc, hOldFont);
1716               ReleaseDC (hwnd, hdc);
1717
1718               sizeButton = TOOLBAR_MeasureButton(infoPtr, sz,
1719                   TOOLBAR_IsValidBitmapIndex(infoPtr, infoPtr->buttons[i].iBitmap),
1720                   validImageList);
1721               cx = sizeButton.cx;
1722             }
1723             else
1724               cx = infoPtr->nButtonWidth;
1725
1726             /* if size has been set manually then don't add on extra space
1727              * for the drop down arrow */
1728             if (!btnPtr->cx && hasDropDownArrows && 
1729                 ((btnPtr->fsStyle & BTNS_DROPDOWN) || (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN)))
1730               cx += DDARROW_WIDTH;
1731         }
1732         if (btnPtr->fsState & TBSTATE_WRAP )
1733                     bWrap = TRUE;
1734
1735         SetRect (&btnPtr->rect, x, y, x + cx, y + cy);
1736
1737         if (infoPtr->rcBound.left > x)
1738             infoPtr->rcBound.left = x;
1739         if (infoPtr->rcBound.right < x + cx)
1740             infoPtr->rcBound.right = x + cx;
1741         if (infoPtr->rcBound.bottom < y + cy)
1742             infoPtr->rcBound.bottom = y + cy;
1743
1744         TOOLBAR_TooltipSetRect(infoPtr, btnPtr);
1745
1746         /* btnPtr->nRow is zero based. The space between the rows is    */
1747         /* also considered as a row.                                    */
1748         btnPtr->nRow = nRows + nSepRows;
1749
1750         TRACE("button %d style=%x, bWrap=%d, nRows=%d, nSepRows=%d, btnrow=%d, (%d,%d)-(%d,%d)\n",
1751               i, btnPtr->fsStyle, bWrap, nRows, nSepRows, btnPtr->nRow,
1752               x, y, x+cx, y+cy);
1753
1754         if( bWrap )
1755         {
1756             if ( !(btnPtr->fsStyle & BTNS_SEP) )
1757                 y += cy;
1758             else
1759             {
1760                 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
1761                 /* it is the actual width of the separator. This is used for */
1762                 /* custom controls in toolbars.                              */
1763                 if ( !(btnPtr->fsStyle & BTNS_DROPDOWN))
1764                     y += cy + ( (btnPtr->iBitmap > 0 ) ?
1765                                 btnPtr->iBitmap : SEPARATOR_WIDTH) * 2 /3;
1766                 else
1767                     y += cy;
1768
1769                 /* nSepRows is used to calculate the extra height follwoing  */
1770                 /* the last row.                                             */
1771                 nSepRows++;
1772             }
1773             x = infoPtr->nIndent;
1774
1775             /* Increment row number unless this is the last button    */
1776             /* and it has Wrap set.                                   */
1777             if (i != infoPtr->nNumButtons-1)
1778                 nRows++;
1779         }
1780         else
1781             x += cx;
1782     }
1783
1784     /* infoPtr->nRows is the number of rows on the toolbar */
1785     infoPtr->nRows = nRows + nSepRows + 1;
1786
1787     TRACE("toolbar button width %d\n", infoPtr->nButtonWidth);
1788 }
1789
1790
1791 static INT
1792 TOOLBAR_InternalHitTest (HWND hwnd, LPPOINT lpPt)
1793 {
1794     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1795     TBUTTON_INFO *btnPtr;
1796     INT i;
1797
1798     btnPtr = infoPtr->buttons;
1799     for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
1800         if (btnPtr->fsState & TBSTATE_HIDDEN)
1801             continue;
1802
1803         if (btnPtr->fsStyle & BTNS_SEP) {
1804             if (PtInRect (&btnPtr->rect, *lpPt)) {
1805                 TRACE(" ON SEPARATOR %d!\n", i);
1806                 return -i;
1807             }
1808         }
1809         else {
1810             if (PtInRect (&btnPtr->rect, *lpPt)) {
1811                 TRACE(" ON BUTTON %d!\n", i);
1812                 return i;
1813             }
1814         }
1815     }
1816
1817     TRACE(" NOWHERE!\n");
1818     return TOOLBAR_NOWHERE;
1819 }
1820
1821
1822 static INT
1823 TOOLBAR_GetButtonIndex (TOOLBAR_INFO *infoPtr, INT idCommand, BOOL CommandIsIndex)
1824 {
1825     TBUTTON_INFO *btnPtr;
1826     INT i;
1827
1828     if (CommandIsIndex) {
1829         TRACE("command is really index command=%d\n", idCommand);
1830         if (idCommand >= infoPtr->nNumButtons) return -1;
1831         return idCommand;
1832     }
1833     btnPtr = infoPtr->buttons;
1834     for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
1835         if (btnPtr->idCommand == idCommand) {
1836             TRACE("command=%d index=%d\n", idCommand, i);
1837             return i;
1838         }
1839     }
1840     TRACE("no index found for command=%d\n", idCommand);
1841     return -1;
1842 }
1843
1844
1845 static INT
1846 TOOLBAR_GetCheckedGroupButtonIndex (TOOLBAR_INFO *infoPtr, INT nIndex)
1847 {
1848     TBUTTON_INFO *btnPtr;
1849     INT nRunIndex;
1850
1851     if ((nIndex < 0) || (nIndex > infoPtr->nNumButtons))
1852         return -1;
1853
1854     /* check index button */
1855     btnPtr = &infoPtr->buttons[nIndex];
1856     if ((btnPtr->fsStyle & BTNS_CHECKGROUP) == BTNS_CHECKGROUP) {
1857         if (btnPtr->fsState & TBSTATE_CHECKED)
1858             return nIndex;
1859     }
1860
1861     /* check previous buttons */
1862     nRunIndex = nIndex - 1;
1863     while (nRunIndex >= 0) {
1864         btnPtr = &infoPtr->buttons[nRunIndex];
1865         if ((btnPtr->fsStyle & BTNS_GROUP) == BTNS_GROUP) {
1866             if (btnPtr->fsState & TBSTATE_CHECKED)
1867                 return nRunIndex;
1868         }
1869         else
1870             break;
1871         nRunIndex--;
1872     }
1873
1874     /* check next buttons */
1875     nRunIndex = nIndex + 1;
1876     while (nRunIndex < infoPtr->nNumButtons) {
1877         btnPtr = &infoPtr->buttons[nRunIndex];
1878         if ((btnPtr->fsStyle & BTNS_GROUP) == BTNS_GROUP) {
1879             if (btnPtr->fsState & TBSTATE_CHECKED)
1880                 return nRunIndex;
1881         }
1882         else
1883             break;
1884         nRunIndex++;
1885     }
1886
1887     return -1;
1888 }
1889
1890
1891 static VOID
1892 TOOLBAR_RelayEvent (HWND hwndTip, HWND hwndMsg, UINT uMsg,
1893                     WPARAM wParam, LPARAM lParam)
1894 {
1895     MSG msg;
1896
1897     msg.hwnd = hwndMsg;
1898     msg.message = uMsg;
1899     msg.wParam = wParam;
1900     msg.lParam = lParam;
1901     msg.time = GetMessageTime ();
1902     msg.pt.x = (short)LOWORD(GetMessagePos ());
1903     msg.pt.y = (short)HIWORD(GetMessagePos ());
1904
1905     SendMessageW (hwndTip, TTM_RELAYEVENT, 0, (LPARAM)&msg);
1906 }
1907
1908 static void
1909 TOOLBAR_TooltipAddTool(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *button)
1910 {
1911     if (infoPtr->hwndToolTip && !(button->fsStyle & BTNS_SEP)) {
1912         TTTOOLINFOW ti;
1913
1914         ZeroMemory(&ti, sizeof(TTTOOLINFOW));
1915         ti.cbSize   = sizeof (TTTOOLINFOW);
1916         ti.hwnd     = infoPtr->hwndSelf;
1917         ti.uId      = button->idCommand;
1918         ti.hinst    = 0;
1919         ti.lpszText = LPSTR_TEXTCALLBACKW;
1920         /* ti.lParam = random value from the stack? */
1921
1922         SendMessageW(infoPtr->hwndToolTip, TTM_ADDTOOLW,
1923             0, (LPARAM)&ti);
1924     }
1925 }
1926
1927 static void
1928 TOOLBAR_TooltipDelTool(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *button)
1929 {
1930     if ((infoPtr->hwndToolTip) && !(button->fsStyle & BTNS_SEP)) {
1931         TTTOOLINFOW ti;
1932
1933         ZeroMemory(&ti, sizeof(ti));
1934         ti.cbSize   = sizeof(ti);
1935         ti.hwnd     = infoPtr->hwndSelf;
1936         ti.uId      = button->idCommand;
1937
1938         SendMessageW(infoPtr->hwndToolTip, TTM_DELTOOLW, 0, (LPARAM)&ti);
1939     }
1940 }
1941
1942 static void TOOLBAR_TooltipSetRect(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *button)
1943 {
1944     /* Set the toolTip only for non-hidden, non-separator button */
1945     if (infoPtr->hwndToolTip && !(button->fsStyle & BTNS_SEP))
1946     {
1947         TTTOOLINFOW ti;
1948
1949         ZeroMemory(&ti, sizeof(ti));
1950         ti.cbSize = sizeof(ti);
1951         ti.hwnd = infoPtr->hwndSelf;
1952         ti.uId = button->idCommand;
1953         ti.rect = button->rect;
1954         SendMessageW(infoPtr->hwndToolTip, TTM_NEWTOOLRECTW, 0, (LPARAM)&ti);
1955     }
1956 }
1957
1958 /* Creates the tooltip control */
1959 static void
1960 TOOLBAR_TooltipCreateControl(TOOLBAR_INFO *infoPtr)
1961 {
1962     int i;
1963     NMTOOLTIPSCREATED nmttc;
1964
1965     infoPtr->hwndToolTip = CreateWindowExW(0, TOOLTIPS_CLASSW, NULL, WS_POPUP,
1966             CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
1967             infoPtr->hwndSelf, 0, 0, 0);
1968
1969     if (!infoPtr->hwndToolTip)
1970         return;
1971
1972     /* Send NM_TOOLTIPSCREATED notification */
1973     nmttc.hwndToolTips = infoPtr->hwndToolTip;
1974     TOOLBAR_SendNotify(&nmttc.hdr, infoPtr, NM_TOOLTIPSCREATED);
1975
1976     for (i = 0; i < infoPtr->nNumButtons; i++)
1977     {
1978         TOOLBAR_TooltipAddTool(infoPtr, &infoPtr->buttons[i]);
1979         TOOLBAR_TooltipSetRect(infoPtr, &infoPtr->buttons[i]);
1980     }
1981 }
1982
1983 /* keeps available button list box sorted by button id */
1984 static void TOOLBAR_Cust_InsertAvailButton(HWND hwnd, PCUSTOMBUTTON btnInfoNew)
1985 {
1986     int i;
1987     int count;
1988     PCUSTOMBUTTON btnInfo;
1989     HWND hwndAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
1990
1991     TRACE("button %s, idCommand %d\n", debugstr_w(btnInfoNew->text), btnInfoNew->btn.idCommand);
1992
1993     count = SendMessageW(hwndAvail, LB_GETCOUNT, 0, 0);
1994
1995     /* position 0 is always separator */
1996     for (i = 1; i < count; i++)
1997     {
1998         btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndAvail, LB_GETITEMDATA, i, 0);
1999         if (btnInfoNew->btn.idCommand < btnInfo->btn.idCommand)
2000         {
2001             i = SendMessageW(hwndAvail, LB_INSERTSTRING, i, 0);
2002             SendMessageW(hwndAvail, LB_SETITEMDATA, i, (LPARAM)btnInfoNew);
2003             return;
2004         }
2005     }
2006     /* id higher than all others add to end */
2007     i = SendMessageW(hwndAvail, LB_ADDSTRING, 0, 0);
2008     SendMessageW(hwndAvail, LB_SETITEMDATA, i, (LPARAM)btnInfoNew);
2009 }
2010
2011 static void TOOLBAR_Cust_MoveButton(PCUSTDLG_INFO custInfo, HWND hwnd, INT nIndexFrom, INT nIndexTo)
2012 {
2013     NMTOOLBARW nmtb;
2014
2015         TRACE("index from %d, index to %d\n", nIndexFrom, nIndexTo);
2016
2017     if (nIndexFrom == nIndexTo)
2018         return;
2019
2020     /* MSDN states that iItem is the index of the button, rather than the
2021      * command ID as used by every other NMTOOLBAR notification */
2022     nmtb.iItem = nIndexFrom;
2023     if (TOOLBAR_SendNotify(&nmtb.hdr, custInfo->tbInfo, TBN_QUERYINSERT))
2024     {
2025         PCUSTOMBUTTON btnInfo;
2026         NMHDR hdr;
2027         HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2028         int count = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2029
2030         btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndList, LB_GETITEMDATA, nIndexFrom, 0);
2031
2032         SendMessageW(hwndList, LB_DELETESTRING, nIndexFrom, 0);
2033         SendMessageW(hwndList, LB_INSERTSTRING, nIndexTo, 0);
2034         SendMessageW(hwndList, LB_SETITEMDATA, nIndexTo, (LPARAM)btnInfo);
2035         SendMessageW(hwndList, LB_SETCURSEL, nIndexTo, 0);
2036
2037         if (nIndexTo <= 0)
2038             EnableWindow(GetDlgItem(hwnd,IDC_MOVEUP_BTN), FALSE);
2039         else
2040             EnableWindow(GetDlgItem(hwnd,IDC_MOVEUP_BTN), TRUE);
2041
2042         /* last item is always separator, so -2 instead of -1 */
2043         if (nIndexTo >= (count - 2))
2044             EnableWindow(GetDlgItem(hwnd,IDC_MOVEDN_BTN), FALSE);
2045         else
2046             EnableWindow(GetDlgItem(hwnd,IDC_MOVEDN_BTN), TRUE);
2047
2048         SendMessageW(custInfo->tbHwnd, TB_DELETEBUTTON, nIndexFrom, 0);
2049         SendMessageW(custInfo->tbHwnd, TB_INSERTBUTTONW, nIndexTo, (LPARAM)&(btnInfo->btn));
2050
2051         TOOLBAR_SendNotify(&hdr, custInfo->tbInfo, TBN_TOOLBARCHANGE);
2052     }
2053 }
2054
2055 static void TOOLBAR_Cust_AddButton(PCUSTDLG_INFO custInfo, HWND hwnd, INT nIndexAvail, INT nIndexTo)
2056 {
2057     NMTOOLBARW nmtb;
2058
2059     TRACE("Add: nIndexAvail %d, nIndexTo %d\n", nIndexAvail, nIndexTo);
2060
2061     /* MSDN states that iItem is the index of the button, rather than the
2062      * command ID as used by every other NMTOOLBAR notification */
2063     nmtb.iItem = nIndexAvail;
2064     if (TOOLBAR_SendNotify(&nmtb.hdr, custInfo->tbInfo, TBN_QUERYINSERT))
2065     {
2066         PCUSTOMBUTTON btnInfo;
2067         NMHDR hdr;
2068         HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2069         HWND hwndAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2070         int count = SendMessageW(hwndAvail, LB_GETCOUNT, 0, 0);
2071
2072         btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndAvail, LB_GETITEMDATA, nIndexAvail, 0);
2073
2074         if (nIndexAvail != 0) /* index == 0 indicates separator */
2075         {
2076             /* remove from 'available buttons' list */
2077             SendMessageW(hwndAvail, LB_DELETESTRING, nIndexAvail, 0);
2078             if (nIndexAvail == count-1)
2079                 SendMessageW(hwndAvail, LB_SETCURSEL, nIndexAvail-1 , 0);
2080             else
2081                 SendMessageW(hwndAvail, LB_SETCURSEL, nIndexAvail , 0);
2082         }
2083         else
2084         {
2085             PCUSTOMBUTTON btnNew;
2086
2087             /* duplicate 'separator' button */
2088             btnNew = (PCUSTOMBUTTON)Alloc(sizeof(CUSTOMBUTTON));
2089             memcpy(btnNew, btnInfo, sizeof(CUSTOMBUTTON));
2090             btnInfo = btnNew;
2091         }
2092
2093         /* insert into 'toolbar button' list */
2094         SendMessageW(hwndList, LB_INSERTSTRING, nIndexTo, 0);
2095         SendMessageW(hwndList, LB_SETITEMDATA, nIndexTo, (LPARAM)btnInfo);
2096
2097         SendMessageW(custInfo->tbHwnd, TB_INSERTBUTTONW, nIndexTo, (LPARAM)&(btnInfo->btn));
2098
2099         TOOLBAR_SendNotify(&hdr, custInfo->tbInfo, TBN_TOOLBARCHANGE);
2100     }
2101 }
2102
2103 static void TOOLBAR_Cust_RemoveButton(PCUSTDLG_INFO custInfo, HWND hwnd, INT index)
2104 {
2105     PCUSTOMBUTTON btnInfo;
2106     HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2107
2108     TRACE("Remove: index %d\n", index);
2109
2110     btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndList, LB_GETITEMDATA, index, 0);
2111
2112     /* send TBN_QUERYDELETE notification */
2113     if (TOOLBAR_IsButtonRemovable(custInfo->tbInfo, index, btnInfo))
2114     {
2115         NMHDR hdr;
2116
2117         SendMessageW(hwndList, LB_DELETESTRING, index, 0);
2118         SendMessageW(hwndList, LB_SETCURSEL, index , 0);
2119
2120         SendMessageW(custInfo->tbHwnd, TB_DELETEBUTTON, index, 0);
2121
2122         /* insert into 'available button' list */
2123         if (!(btnInfo->btn.fsStyle & BTNS_SEP))
2124             TOOLBAR_Cust_InsertAvailButton(hwnd, btnInfo);
2125         else
2126             Free(btnInfo);
2127
2128         TOOLBAR_SendNotify(&hdr, custInfo->tbInfo, TBN_TOOLBARCHANGE);
2129     }
2130 }
2131
2132 /* drag list notification function for toolbar buttons list box */
2133 static LRESULT TOOLBAR_Cust_ToolbarDragListNotification(PCUSTDLG_INFO custInfo, HWND hwnd, DRAGLISTINFO *pDLI)
2134 {
2135     HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2136     switch (pDLI->uNotification)
2137     {
2138     case DL_BEGINDRAG:
2139     {
2140         INT nCurrentItem = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2141         INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2142         /* no dragging for last item (separator) */
2143         if (nCurrentItem >= (nCount - 1)) return FALSE;
2144         return TRUE;
2145     }
2146     case DL_DRAGGING:
2147     {
2148         INT nCurrentItem = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2149         INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2150         /* no dragging past last item (separator) */
2151         if ((nCurrentItem >= 0) && (nCurrentItem < (nCount - 1)))
2152         {
2153             DrawInsert(hwnd, hwndList, nCurrentItem);
2154             /* FIXME: native uses "move button" cursor */
2155             return DL_COPYCURSOR;
2156         }
2157
2158         /* not over toolbar buttons list */
2159         if (nCurrentItem < 0)
2160         {
2161             POINT ptWindow = pDLI->ptCursor;
2162             HWND hwndListAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2163             MapWindowPoints(NULL, hwnd, &ptWindow, 1);
2164             /* over available buttons list? */
2165             if (ChildWindowFromPoint(hwnd, ptWindow) == hwndListAvail)
2166                 /* FIXME: native uses "move button" cursor */
2167                 return DL_COPYCURSOR;
2168         }
2169         /* clear drag arrow */
2170         DrawInsert(hwnd, hwndList, -1);
2171         return DL_STOPCURSOR;
2172     }
2173     case DL_DROPPED:
2174     {
2175         INT nIndexTo = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2176         INT nIndexFrom = SendMessageW(hwndList, LB_GETCURSEL, 0, 0);
2177         INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2178         if ((nIndexTo >= 0) && (nIndexTo < (nCount - 1)))
2179         {
2180             /* clear drag arrow */
2181             DrawInsert(hwnd, hwndList, -1);
2182             /* move item */
2183             TOOLBAR_Cust_MoveButton(custInfo, hwnd, nIndexFrom, nIndexTo);
2184         }
2185         /* not over toolbar buttons list */
2186         if (nIndexTo < 0)
2187         {
2188             POINT ptWindow = pDLI->ptCursor;
2189             HWND hwndListAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2190             MapWindowPoints(NULL, hwnd, &ptWindow, 1);
2191             /* over available buttons list? */
2192             if (ChildWindowFromPoint(hwnd, ptWindow) == hwndListAvail)
2193                 TOOLBAR_Cust_RemoveButton(custInfo, hwnd, nIndexFrom);
2194         }
2195         break;
2196     }
2197     case DL_CANCELDRAG:
2198         /* Clear drag arrow */
2199         DrawInsert(hwnd, hwndList, -1);
2200         break;
2201     }
2202
2203     return 0;
2204 }
2205
2206 /* drag list notification function for available buttons list box */
2207 static LRESULT TOOLBAR_Cust_AvailDragListNotification(PCUSTDLG_INFO custInfo, HWND hwnd, DRAGLISTINFO *pDLI)
2208 {
2209     HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2210     switch (pDLI->uNotification)
2211     {
2212     case DL_BEGINDRAG:
2213         return TRUE;
2214     case DL_DRAGGING:
2215     {
2216         INT nCurrentItem = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2217         INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2218         /* no dragging past last item (separator) */
2219         if ((nCurrentItem >= 0) && (nCurrentItem < nCount))
2220         {
2221             DrawInsert(hwnd, hwndList, nCurrentItem);
2222             /* FIXME: native uses "move button" cursor */
2223             return DL_COPYCURSOR;
2224         }
2225
2226         /* not over toolbar buttons list */
2227         if (nCurrentItem < 0)
2228         {
2229             POINT ptWindow = pDLI->ptCursor;
2230             HWND hwndListAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2231             MapWindowPoints(NULL, hwnd, &ptWindow, 1);
2232             /* over available buttons list? */
2233             if (ChildWindowFromPoint(hwnd, ptWindow) == hwndListAvail)
2234                 /* FIXME: native uses "move button" cursor */
2235                 return DL_COPYCURSOR;
2236         }
2237         /* clear drag arrow */
2238         DrawInsert(hwnd, hwndList, -1);
2239         return DL_STOPCURSOR;
2240     }
2241     case DL_DROPPED:
2242     {
2243         INT nIndexTo = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2244         INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2245         INT nIndexFrom = SendDlgItemMessageW(hwnd, IDC_AVAILBTN_LBOX, LB_GETCURSEL, 0, 0);
2246         if ((nIndexTo >= 0) && (nIndexTo < nCount))
2247         {
2248             /* clear drag arrow */
2249             DrawInsert(hwnd, hwndList, -1);
2250             /* add item */
2251             TOOLBAR_Cust_AddButton(custInfo, hwnd, nIndexFrom, nIndexTo);
2252         }
2253     }
2254     case DL_CANCELDRAG:
2255         /* Clear drag arrow */
2256         DrawInsert(hwnd, hwndList, -1);
2257         break;
2258     }
2259     return 0;
2260 }
2261
2262 extern UINT uDragListMessage;
2263
2264 /***********************************************************************
2265  * TOOLBAR_CustomizeDialogProc
2266  * This function implements the toolbar customization dialog.
2267  */
2268 static INT_PTR CALLBACK
2269 TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
2270 {
2271     PCUSTDLG_INFO custInfo = (PCUSTDLG_INFO)GetWindowLongPtrW (hwnd, DWLP_USER);
2272     PCUSTOMBUTTON btnInfo;
2273     NMTOOLBARA nmtb;
2274     TOOLBAR_INFO *infoPtr = custInfo ? custInfo->tbInfo : NULL;
2275
2276     switch (uMsg)
2277     {
2278         case WM_INITDIALOG:
2279             custInfo = (PCUSTDLG_INFO)lParam;
2280             SetWindowLongPtrW (hwnd, DWLP_USER, (LONG_PTR)custInfo);
2281
2282             if (custInfo)
2283             {
2284                 WCHAR Buffer[256];
2285                 int i = 0;
2286                 int index;
2287                 NMTBINITCUSTOMIZE nmtbic;
2288
2289                 infoPtr = custInfo->tbInfo;
2290
2291                 /* send TBN_QUERYINSERT notification */
2292                 nmtb.iItem = custInfo->tbInfo->nNumButtons;
2293
2294                 if (!TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_QUERYINSERT))
2295                     return FALSE;
2296
2297                 nmtbic.hwndDialog = hwnd;
2298                 /* Send TBN_INITCUSTOMIZE notification */
2299                 if (TOOLBAR_SendNotify (&nmtbic.hdr, infoPtr, TBN_INITCUSTOMIZE) ==
2300                     TBNRF_HIDEHELP)
2301                 {
2302                     TRACE("TBNRF_HIDEHELP requested\n");
2303                     ShowWindow(GetDlgItem(hwnd, IDC_HELP_BTN), SW_HIDE);
2304                 }
2305
2306                 /* add items to 'toolbar buttons' list and check if removable */
2307                 for (i = 0; i < custInfo->tbInfo->nNumButtons; i++)
2308                 {
2309                     btnInfo = (PCUSTOMBUTTON)Alloc(sizeof(CUSTOMBUTTON));
2310                     memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
2311                     btnInfo->btn.fsStyle = BTNS_SEP;
2312                     btnInfo->bVirtual = FALSE;
2313                     LoadStringW (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
2314
2315                     /* send TBN_QUERYDELETE notification */
2316                     btnInfo->bRemovable = TOOLBAR_IsButtonRemovable(infoPtr, i, btnInfo);
2317
2318                     index = (int)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_ADDSTRING, 0, 0);
2319                     SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
2320                 }
2321
2322                 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMHEIGHT, 0, infoPtr->nBitmapHeight + 8);
2323
2324                 /* insert separator button into 'available buttons' list */
2325                 btnInfo = (PCUSTOMBUTTON)Alloc(sizeof(CUSTOMBUTTON));
2326                 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
2327                 btnInfo->btn.fsStyle = BTNS_SEP;
2328                 btnInfo->bVirtual = FALSE;
2329                 btnInfo->bRemovable = TRUE;
2330                 LoadStringW (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
2331                 index = (int)SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_ADDSTRING, 0, (LPARAM)btnInfo);
2332                 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
2333
2334                 /* insert all buttons into dsa */
2335                 for (i = 0;; i++)
2336                 {
2337                     /* send TBN_GETBUTTONINFO notification */
2338                     NMTOOLBARW nmtb;
2339                     nmtb.iItem = i;
2340                     nmtb.pszText = Buffer;
2341                     nmtb.cchText = 256;
2342
2343                     /* Clear previous button's text */
2344                     ZeroMemory(nmtb.pszText, nmtb.cchText * sizeof(WCHAR));
2345
2346                     if (!TOOLBAR_GetButtonInfo(infoPtr, &nmtb))
2347                         break;
2348
2349                     TRACE("WM_INITDIALOG style: %x iItem(%d) idCommand(%d) iString(%d) %s\n", 
2350                         nmtb.tbButton.fsStyle, i, 
2351                         nmtb.tbButton.idCommand,
2352                         nmtb.tbButton.iString,
2353                         nmtb.tbButton.iString >= 0 ? debugstr_w(infoPtr->strings[nmtb.tbButton.iString])
2354                         : "");
2355
2356                     /* insert button into the apropriate list */
2357                     index = TOOLBAR_GetButtonIndex (custInfo->tbInfo, nmtb.tbButton.idCommand, FALSE);
2358                     if (index == -1)
2359                     {
2360                         btnInfo = (PCUSTOMBUTTON)Alloc(sizeof(CUSTOMBUTTON));
2361                         btnInfo->bVirtual = FALSE;
2362                         btnInfo->bRemovable = TRUE;
2363                     }
2364                     else
2365                     {
2366                         btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, 
2367                             IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
2368                     }
2369
2370                     memcpy (&btnInfo->btn, &nmtb.tbButton, sizeof(TBBUTTON));
2371                     if (!(nmtb.tbButton.fsStyle & BTNS_SEP))
2372                     {
2373                         if (lstrlenW(nmtb.pszText))
2374                             lstrcpyW(btnInfo->text, nmtb.pszText);
2375                         else if (nmtb.tbButton.iString >= 0 && 
2376                             nmtb.tbButton.iString < infoPtr->nNumStrings)
2377                         {
2378                             lstrcpyW(btnInfo->text, 
2379                                 infoPtr->strings[nmtb.tbButton.iString]);
2380                         }
2381                     }
2382
2383                     if (index == -1)
2384                         TOOLBAR_Cust_InsertAvailButton(hwnd, btnInfo);
2385                 }
2386
2387                 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMHEIGHT, 0, infoPtr->nBitmapHeight + 8);
2388
2389                 /* select first item in the 'available' list */
2390                 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETCURSEL, 0, 0);
2391
2392                 /* append 'virtual' separator button to the 'toolbar buttons' list */
2393                 btnInfo = (PCUSTOMBUTTON)Alloc(sizeof(CUSTOMBUTTON));
2394                 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
2395                 btnInfo->btn.fsStyle = BTNS_SEP;
2396                 btnInfo->bVirtual = TRUE;
2397                 btnInfo->bRemovable = FALSE;
2398                 LoadStringW (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
2399                 index = (int)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_ADDSTRING, 0, (LPARAM)btnInfo);
2400                 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
2401
2402                 /* select last item in the 'toolbar' list */
2403                 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETCURSEL, index, 0);
2404                 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETTOPINDEX, index, 0);
2405
2406         MakeDragList(GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX));
2407         MakeDragList(GetDlgItem(hwnd, IDC_AVAILBTN_LBOX));
2408
2409                 /* set focus and disable buttons */
2410                 PostMessageW (hwnd, WM_USER, 0, 0);
2411             }
2412             return TRUE;
2413
2414         case WM_USER:
2415             EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
2416             EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
2417             EnableWindow (GetDlgItem (hwnd,IDC_REMOVE_BTN), FALSE);
2418             SetFocus (GetDlgItem (hwnd, IDC_TOOLBARBTN_LBOX));
2419             return TRUE;
2420
2421         case WM_CLOSE:
2422             EndDialog(hwnd, FALSE);
2423             return TRUE;
2424
2425         case WM_COMMAND:
2426             switch (LOWORD(wParam))
2427             {
2428                 case IDC_TOOLBARBTN_LBOX:
2429                     if (HIWORD(wParam) == LBN_SELCHANGE)
2430                     {
2431                         PCUSTOMBUTTON btnInfo;
2432                         NMTOOLBARA nmtb;
2433                         int count;
2434                         int index;
2435
2436                         count = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
2437                         index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2438
2439                         /* send TBN_QUERYINSERT notification */
2440                         nmtb.iItem = index;
2441                         TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_QUERYINSERT);
2442
2443                         /* get list box item */
2444                         btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
2445
2446                         if (index == (count - 1))
2447                         {
2448                             /* last item (virtual separator) */
2449                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
2450                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
2451                         }
2452                         else if (index == (count - 2))
2453                         {
2454                             /* second last item (last non-virtual item) */
2455                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
2456                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
2457                         }
2458                         else if (index == 0)
2459                         {
2460                             /* first item */
2461                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
2462                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
2463                         }
2464                         else
2465                         {
2466                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
2467                             EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
2468                         }
2469
2470                         EnableWindow (GetDlgItem (hwnd,IDC_REMOVE_BTN), btnInfo->bRemovable);
2471                     }
2472                     break;
2473
2474                 case IDC_MOVEUP_BTN:
2475                     {
2476                         int index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2477                         TOOLBAR_Cust_MoveButton(custInfo, hwnd, index, index-1);
2478                     }
2479                     break;
2480
2481                 case IDC_MOVEDN_BTN: /* move down */
2482                     {
2483                         int index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2484                         TOOLBAR_Cust_MoveButton(custInfo, hwnd, index, index+1);
2485                     }
2486                     break;
2487
2488                 case IDC_REMOVE_BTN: /* remove button */
2489                     {
2490                         int index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2491
2492                         if (LB_ERR == index)
2493                                 break;
2494
2495                         TOOLBAR_Cust_RemoveButton(custInfo, hwnd, index);
2496                     }
2497                     break;
2498                 case IDC_HELP_BTN:
2499                         TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_CUSTHELP);
2500                         break;
2501                 case IDC_RESET_BTN:
2502                         TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_RESET);
2503                         break;
2504
2505                 case IDOK: /* Add button */
2506                     {
2507                         int index;
2508                         int indexto;
2509
2510                         index = SendDlgItemMessageW(hwnd, IDC_AVAILBTN_LBOX, LB_GETCURSEL, 0, 0);
2511                         indexto = SendDlgItemMessageW(hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2512
2513                         TOOLBAR_Cust_AddButton(custInfo, hwnd, index, indexto);
2514                     }
2515                     break;
2516
2517                 case IDCANCEL:
2518                     EndDialog(hwnd, FALSE);
2519                     break;
2520             }
2521             return TRUE;
2522
2523         case WM_DESTROY:
2524             {
2525                 int count;
2526                 int i;
2527
2528                 /* delete items from 'toolbar buttons' listbox*/
2529                 count = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
2530                 for (i = 0; i < count; i++)
2531                 {
2532                     btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, i, 0);
2533                     Free(btnInfo);
2534                     SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, 0, 0);
2535                 }
2536                 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_RESETCONTENT, 0, 0);
2537
2538
2539                 /* delete items from 'available buttons' listbox*/
2540                 count = SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_GETCOUNT, 0, 0);
2541                 for (i = 0; i < count; i++)
2542                 {
2543                     btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_GETITEMDATA, i, 0);
2544                     Free(btnInfo);
2545                     SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, i, 0);
2546                 }
2547                 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_RESETCONTENT, 0, 0);
2548             }
2549             return TRUE;
2550
2551         case WM_DRAWITEM:
2552             if (wParam == IDC_AVAILBTN_LBOX || wParam == IDC_TOOLBARBTN_LBOX)
2553             {
2554                 LPDRAWITEMSTRUCT lpdis = (LPDRAWITEMSTRUCT)lParam;
2555                 RECT rcButton;
2556                 RECT rcText;
2557                 HPEN hPen, hOldPen;
2558                 HBRUSH hOldBrush;
2559                 COLORREF oldText = 0;
2560                 COLORREF oldBk = 0;
2561
2562                 /* get item data */
2563                 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, wParam, LB_GETITEMDATA, (WPARAM)lpdis->itemID, 0);
2564                 if (btnInfo == NULL)
2565                 {
2566                     FIXME("btnInfo invalid!\n");
2567                     return TRUE;
2568                 }
2569
2570                 /* set colors and select objects */
2571                 oldBk = SetBkColor (lpdis->hDC, (lpdis->itemState & ODS_FOCUS)?comctl32_color.clrHighlight:comctl32_color.clrWindow);
2572                 if (btnInfo->bVirtual)
2573                    oldText = SetTextColor (lpdis->hDC, comctl32_color.clrGrayText);
2574                 else
2575                    oldText = SetTextColor (lpdis->hDC, (lpdis->itemState & ODS_FOCUS)?comctl32_color.clrHighlightText:comctl32_color.clrWindowText);
2576                 hPen = CreatePen( PS_SOLID, 1,
2577                      GetSysColor( (lpdis->itemState & ODS_SELECTED)?COLOR_HIGHLIGHT:COLOR_WINDOW));
2578                 hOldPen = SelectObject (lpdis->hDC, hPen );
2579                 hOldBrush = SelectObject (lpdis->hDC, GetSysColorBrush ((lpdis->itemState & ODS_FOCUS)?COLOR_HIGHLIGHT:COLOR_WINDOW));
2580
2581                 /* fill background rectangle */
2582                 Rectangle (lpdis->hDC, lpdis->rcItem.left, lpdis->rcItem.top,
2583                            lpdis->rcItem.right, lpdis->rcItem.bottom);
2584
2585                 /* calculate button and text rectangles */
2586                 CopyRect (&rcButton, &lpdis->rcItem);
2587                 InflateRect (&rcButton, -1, -1);
2588                 CopyRect (&rcText, &rcButton);
2589                 rcButton.right = rcButton.left + custInfo->tbInfo->nBitmapWidth + 6;
2590                 rcText.left = rcButton.right + 2;
2591
2592                 /* draw focus rectangle */
2593                 if (lpdis->itemState & ODS_FOCUS)
2594                     DrawFocusRect (lpdis->hDC, &lpdis->rcItem);
2595
2596                 /* draw button */
2597                 if (!(infoPtr->dwStyle & TBSTYLE_FLAT))
2598                     DrawEdge (lpdis->hDC, &rcButton, EDGE_RAISED, BF_RECT|BF_MIDDLE|BF_SOFT);
2599
2600                 /* draw image and text */
2601                 if ((btnInfo->btn.fsStyle & BTNS_SEP) == 0) {
2602                         HIMAGELIST himl = GETDEFIMAGELIST(infoPtr, GETHIMLID(infoPtr, 
2603                                 btnInfo->btn.iBitmap));
2604                     ImageList_Draw (himl, GETIBITMAP(infoPtr, btnInfo->btn.iBitmap), 
2605                                 lpdis->hDC, rcButton.left+3, rcButton.top+3, ILD_NORMAL);
2606                 }
2607                 DrawTextW (lpdis->hDC,  btnInfo->text, -1, &rcText,
2608                                DT_LEFT | DT_VCENTER | DT_SINGLELINE);
2609
2610                 /* delete objects and reset colors */
2611                 SelectObject (lpdis->hDC, hOldBrush);
2612                 SelectObject (lpdis->hDC, hOldPen);
2613                 SetBkColor (lpdis->hDC, oldBk);
2614                 SetTextColor (lpdis->hDC, oldText);
2615                 DeleteObject( hPen );
2616                 return TRUE;
2617             }
2618             return FALSE;
2619
2620         case WM_MEASUREITEM:
2621             if (wParam == IDC_AVAILBTN_LBOX || wParam == IDC_TOOLBARBTN_LBOX)
2622             {
2623                 MEASUREITEMSTRUCT *lpmis = (MEASUREITEMSTRUCT*)lParam;
2624
2625                 lpmis->itemHeight = 15 + 8; /* default height */
2626
2627                 return TRUE;
2628             }
2629             return FALSE;
2630
2631         default:
2632             if (uDragListMessage && (uMsg == uDragListMessage))
2633             {
2634                 if (wParam == IDC_TOOLBARBTN_LBOX)
2635                 {
2636                     LRESULT res = TOOLBAR_Cust_ToolbarDragListNotification(
2637                         custInfo, hwnd, (DRAGLISTINFO *)lParam);
2638                     SetWindowLongPtrW(hwnd, DWLP_MSGRESULT, res);
2639                     return TRUE;
2640                 }
2641                 else if (wParam == IDC_AVAILBTN_LBOX)
2642                 {
2643                     LRESULT res = TOOLBAR_Cust_AvailDragListNotification(
2644                         custInfo, hwnd, (DRAGLISTINFO *)lParam);
2645                     SetWindowLongPtrW(hwnd, DWLP_MSGRESULT, res);
2646                     return TRUE;
2647                 }
2648             }
2649             return FALSE;
2650     }
2651 }
2652
2653 static BOOL
2654 TOOLBAR_AddBitmapToImageList(TOOLBAR_INFO *infoPtr, HIMAGELIST himlDef, const TBITMAP_INFO *bitmap)
2655 {
2656     HBITMAP hbmLoad;
2657     INT nCountBefore = ImageList_GetImageCount(himlDef);
2658     INT nCountAfter;
2659     INT cxIcon, cyIcon;
2660     INT nAdded;
2661     INT nIndex;
2662
2663     TRACE("adding hInst=%p nID=%d nButtons=%d\n", bitmap->hInst, bitmap->nID, bitmap->nButtons);
2664     /* Add bitmaps to the default image list */
2665     if (bitmap->hInst == NULL)         /* a handle was passed */
2666         hbmLoad = (HBITMAP)CopyImage((HBITMAP)bitmap->nID, IMAGE_BITMAP, 0, 0, 0);
2667     else
2668         hbmLoad = CreateMappedBitmap(bitmap->hInst, bitmap->nID, 0, NULL, 0);
2669
2670     /* enlarge the bitmap if needed */
2671     ImageList_GetIconSize(himlDef, &cxIcon, &cyIcon);
2672     COMCTL32_EnsureBitmapSize(&hbmLoad, cxIcon*(INT)bitmap->nButtons, cyIcon, comctl32_color.clrBtnFace);
2673     
2674     nIndex = ImageList_AddMasked(himlDef, hbmLoad, comctl32_color.clrBtnFace);
2675     DeleteObject(hbmLoad);
2676     if (nIndex == -1)
2677         return FALSE;
2678     
2679     nCountAfter = ImageList_GetImageCount(himlDef);
2680     nAdded =  nCountAfter - nCountBefore;
2681     if (bitmap->nButtons == 0) /* wParam == 0 is special and means add only one image */
2682     {
2683         ImageList_SetImageCount(himlDef, nCountBefore + 1);
2684     } else if (nAdded > (INT)bitmap->nButtons) {
2685         TRACE("Added more images than wParam: Previous image number %i added %i while wParam %i. Images in list %i\n",
2686             nCountBefore, nAdded, bitmap->nButtons, nCountAfter);
2687     }
2688
2689     infoPtr->nNumBitmaps += nAdded;
2690     return TRUE;
2691 }
2692
2693 static void
2694 TOOLBAR_CheckImageListIconSize(TOOLBAR_INFO *infoPtr)
2695 {
2696     HIMAGELIST himlDef;
2697     HIMAGELIST himlNew;
2698     INT cx, cy;
2699     INT i;
2700     
2701     himlDef = GETDEFIMAGELIST(infoPtr, 0);
2702     if (himlDef == NULL || himlDef != infoPtr->himlInt)
2703         return;
2704     if (!ImageList_GetIconSize(himlDef, &cx, &cy))
2705         return;
2706     if (cx == infoPtr->nBitmapWidth && cy == infoPtr->nBitmapHeight)
2707         return;
2708
2709     TRACE("Update icon size: %dx%d -> %dx%d\n",
2710         cx, cy, infoPtr->nBitmapWidth, infoPtr->nBitmapHeight);
2711
2712     himlNew = ImageList_Create(infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
2713                                 ILC_COLORDDB|ILC_MASK, 8, 2);
2714     for (i = 0; i < infoPtr->nNumBitmapInfos; i++)
2715         TOOLBAR_AddBitmapToImageList(infoPtr, himlNew, &infoPtr->bitmaps[i]);
2716     TOOLBAR_InsertImageList(&infoPtr->himlDef, &infoPtr->cimlDef, himlNew, 0);
2717     infoPtr->himlInt = himlNew;
2718
2719     infoPtr->nNumBitmaps -= ImageList_GetImageCount(himlDef);
2720     ImageList_Destroy(himlDef);
2721 }
2722
2723 /***********************************************************************
2724  * TOOLBAR_AddBitmap:  Add the bitmaps to the default image list.
2725  *
2726  */
2727 static LRESULT
2728 TOOLBAR_AddBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
2729 {
2730     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2731     LPTBADDBITMAP lpAddBmp = (LPTBADDBITMAP)lParam;
2732     TBITMAP_INFO info;
2733     INT iSumButtons, i;
2734     HIMAGELIST himlDef;
2735
2736     TRACE("hwnd=%p wParam=%x lParam=%lx\n", hwnd, wParam, lParam);
2737     if (!lpAddBmp)
2738         return -1;
2739
2740     if (lpAddBmp->hInst == HINST_COMMCTRL)
2741     {
2742         info.hInst = COMCTL32_hModule;
2743         switch (lpAddBmp->nID)
2744         {
2745             case IDB_STD_SMALL_COLOR:
2746                 info.nButtons = 15;
2747                 info.nID = IDB_STD_SMALL;
2748                 break;
2749             case IDB_STD_LARGE_COLOR:
2750                 info.nButtons = 15;
2751                 info.nID = IDB_STD_LARGE;
2752                 break;
2753             case IDB_VIEW_SMALL_COLOR:
2754                 info.nButtons = 12;
2755                 info.nID = IDB_VIEW_SMALL;
2756                 break;
2757             case IDB_VIEW_LARGE_COLOR:
2758                 info.nButtons = 12;
2759                 info.nID = IDB_VIEW_LARGE;
2760                 break;
2761             case IDB_HIST_SMALL_COLOR:
2762                 info.nButtons = 5;
2763                 info.nID = IDB_HIST_SMALL;
2764                 break;
2765             case IDB_HIST_LARGE_COLOR:
2766                 info.nButtons = 5;
2767                 info.nID = IDB_HIST_LARGE;
2768                 break;
2769             default:
2770                 return -1;
2771         }
2772
2773         TRACE ("adding %d internal bitmaps!\n", info.nButtons);
2774
2775         /* Windows resize all the buttons to the size of a newly added standard image */
2776         if (lpAddBmp->nID & 1)
2777         {
2778             /* large icons: 24x24. Will make the button 31x30 */
2779             SendMessageW (hwnd, TB_SETBITMAPSIZE, 0, MAKELPARAM(24, 24));
2780         }
2781         else
2782         {
2783             /* small icons: 16x16. Will make the buttons 23x22 */
2784             SendMessageW (hwnd, TB_SETBITMAPSIZE, 0, MAKELPARAM(16, 16));
2785         }
2786
2787         TOOLBAR_CalcToolbar (hwnd);
2788     }
2789     else
2790     {
2791         info.nButtons = (INT)wParam;
2792         info.hInst = lpAddBmp->hInst;
2793         info.nID = lpAddBmp->nID;
2794         TRACE("adding %d bitmaps!\n", info.nButtons);
2795     }
2796     
2797     /* check if the bitmap is already loaded and compute iSumButtons */
2798     iSumButtons = 0;
2799     for (i = 0; i < infoPtr->nNumBitmapInfos; i++)
2800     {
2801         if (infoPtr->bitmaps[i].hInst == info.hInst &&
2802             infoPtr->bitmaps[i].nID == info.nID)
2803             return iSumButtons;
2804         iSumButtons += infoPtr->bitmaps[i].nButtons;
2805     }
2806
2807     if (!infoPtr->cimlDef) {
2808         /* create new default image list */
2809         TRACE ("creating default image list!\n");
2810
2811         himlDef = ImageList_Create (infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
2812                                     ILC_COLORDDB | ILC_MASK, info.nButtons, 2);
2813         TOOLBAR_InsertImageList(&infoPtr->himlDef, &infoPtr->cimlDef, himlDef, 0);
2814         infoPtr->himlInt = himlDef;
2815     }
2816     else {
2817         himlDef = GETDEFIMAGELIST(infoPtr, 0);
2818     }
2819
2820     if (!himlDef) {
2821         WARN("No default image list available\n");
2822         return -1;
2823     }
2824
2825     if (!TOOLBAR_AddBitmapToImageList(infoPtr, himlDef, &info))
2826         return -1;
2827
2828     TRACE("Number of bitmap infos: %d\n", infoPtr->nNumBitmapInfos);
2829     infoPtr->bitmaps = ReAlloc(infoPtr->bitmaps, (infoPtr->nNumBitmapInfos + 1) * sizeof(TBITMAP_INFO));
2830     infoPtr->bitmaps[infoPtr->nNumBitmapInfos] = info;
2831     infoPtr->nNumBitmapInfos++;
2832     TRACE("Number of bitmap infos: %d\n", infoPtr->nNumBitmapInfos);
2833
2834     InvalidateRect(hwnd, NULL, TRUE);
2835     return iSumButtons;
2836 }
2837
2838
2839 static LRESULT
2840 TOOLBAR_AddButtonsT(HWND hwnd, WPARAM wParam, LPARAM lParam, BOOL fUnicode)
2841 {
2842     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2843     LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
2844     INT nOldButtons, nNewButtons, nAddButtons, nCount;
2845     BOOL fHasString = FALSE;
2846
2847     TRACE("adding %d buttons (unicode=%d)!\n", wParam, fUnicode);
2848
2849     nAddButtons = (UINT)wParam;
2850     nOldButtons = infoPtr->nNumButtons;
2851     nNewButtons = nOldButtons + nAddButtons;
2852
2853     infoPtr->buttons = ReAlloc(infoPtr->buttons, sizeof(TBUTTON_INFO)*nNewButtons);
2854     infoPtr->nNumButtons = nNewButtons;
2855
2856     /* insert new button data */
2857     for (nCount = 0; nCount < nAddButtons; nCount++) {
2858         TBUTTON_INFO *btnPtr = &infoPtr->buttons[nOldButtons+nCount];
2859         btnPtr->iBitmap   = lpTbb[nCount].iBitmap;
2860         btnPtr->idCommand = lpTbb[nCount].idCommand;
2861         btnPtr->fsState   = lpTbb[nCount].fsState;
2862         btnPtr->fsStyle   = lpTbb[nCount].fsStyle;
2863         btnPtr->dwData    = lpTbb[nCount].dwData;
2864         btnPtr->bHot      = FALSE;
2865         if(HIWORD(lpTbb[nCount].iString) && lpTbb[nCount].iString != -1)
2866         {
2867             if (fUnicode)
2868                 Str_SetPtrW ((LPWSTR*)&btnPtr->iString, (LPWSTR)lpTbb[nCount].iString );
2869             else
2870                 Str_SetPtrAtoW((LPWSTR*)&btnPtr->iString, (LPSTR)lpTbb[nCount].iString);
2871             fHasString = TRUE;
2872         }
2873         else
2874             btnPtr->iString   = lpTbb[nCount].iString;
2875
2876         TOOLBAR_TooltipAddTool(infoPtr, btnPtr);
2877     }
2878
2879     if (infoPtr->nNumStrings > 0 || fHasString)
2880         TOOLBAR_CalcToolbar(hwnd);
2881     else
2882         TOOLBAR_LayoutToolbar(hwnd);
2883     TOOLBAR_AutoSize (hwnd);
2884
2885     TOOLBAR_DumpToolbar (infoPtr, __LINE__);
2886
2887     InvalidateRect(hwnd, NULL, TRUE);
2888
2889     return TRUE;
2890 }
2891
2892
2893 static LRESULT
2894 TOOLBAR_AddStringW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2895 {
2896 #define MAX_RESOURCE_STRING_LENGTH 512
2897     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2898     BOOL fFirstString = (infoPtr->nNumStrings == 0);
2899     INT nIndex = infoPtr->nNumStrings;
2900
2901     if ((wParam) && (HIWORD(lParam) == 0)) {
2902         WCHAR szString[MAX_RESOURCE_STRING_LENGTH];
2903         WCHAR delimiter;
2904         WCHAR *next_delim;
2905         WCHAR *p;
2906         INT len;
2907         TRACE("adding string from resource!\n");
2908
2909         len = LoadStringW ((HINSTANCE)wParam, (UINT)lParam,
2910                              szString, MAX_RESOURCE_STRING_LENGTH);
2911
2912         TRACE("len=%d %s\n", len, debugstr_w(szString));
2913         if (len == 0 || len == 1)
2914             return nIndex;
2915
2916         TRACE("Delimiter: 0x%x\n", *szString);
2917         delimiter = *szString;
2918         p = szString + 1;
2919
2920         while ((next_delim = strchrW(p, delimiter)) != NULL) {
2921             *next_delim = 0;
2922             if (next_delim + 1 >= szString + len)
2923             {
2924                 /* this may happen if delimiter == '\0' or if the last char is a
2925                  * delimiter (then it is ignored like the native does) */
2926                 break;
2927             }
2928
2929             infoPtr->strings = ReAlloc(infoPtr->strings, sizeof(LPWSTR)*(infoPtr->nNumStrings+1));
2930             Str_SetPtrW(&infoPtr->strings[infoPtr->nNumStrings], p);
2931             infoPtr->nNumStrings++;
2932
2933             p = next_delim + 1;
2934         }
2935     }
2936     else {
2937         LPWSTR p = (LPWSTR)lParam;
2938         INT len;
2939
2940         if (p == NULL)
2941             return -1;
2942         TRACE("adding string(s) from array!\n");
2943         while (*p) {
2944             len = strlenW (p);
2945
2946             TRACE("len=%d %s\n", len, debugstr_w(p));
2947             infoPtr->strings = ReAlloc(infoPtr->strings, sizeof(LPWSTR)*(infoPtr->nNumStrings+1));
2948             Str_SetPtrW (&infoPtr->strings[infoPtr->nNumStrings], p);
2949             infoPtr->nNumStrings++;
2950
2951             p += (len+1);
2952         }
2953     }
2954
2955     if (fFirstString)
2956         TOOLBAR_CalcToolbar(hwnd);
2957     return nIndex;
2958 }
2959
2960
2961 static LRESULT
2962 TOOLBAR_AddStringA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2963 {
2964     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2965     BOOL fFirstString = (infoPtr->nNumStrings == 0);
2966     LPSTR p;
2967     INT nIndex;
2968     INT len;
2969
2970     if ((wParam) && (HIWORD(lParam) == 0))  /* load from resources */
2971         return TOOLBAR_AddStringW(hwnd, wParam, lParam);
2972
2973     p = (LPSTR)lParam;
2974     if (p == NULL)
2975         return -1;
2976
2977     TRACE("adding string(s) from array!\n");
2978     nIndex = infoPtr->nNumStrings;
2979     while (*p) {
2980         len = strlen (p);
2981         TRACE("len=%d \"%s\"\n", len, p);
2982
2983         infoPtr->strings = ReAlloc(infoPtr->strings, sizeof(LPWSTR)*(infoPtr->nNumStrings+1));
2984         Str_SetPtrAtoW(&infoPtr->strings[infoPtr->nNumStrings], p);
2985         infoPtr->nNumStrings++;
2986
2987         p += (len+1);
2988     }
2989
2990     if (fFirstString)
2991         TOOLBAR_CalcToolbar(hwnd);
2992     return nIndex;
2993 }
2994
2995
2996 static LRESULT
2997 TOOLBAR_AutoSize (HWND hwnd)
2998 {
2999     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3000     RECT parent_rect;
3001     HWND parent;
3002     INT  x, y;
3003     INT  cx, cy;
3004
3005     TRACE("auto sizing, style=%x!\n", infoPtr->dwStyle);
3006
3007     parent = GetParent (hwnd);
3008
3009     if (!parent || !infoPtr->bDoRedraw)
3010         return 0;
3011
3012     GetClientRect(parent, &parent_rect);
3013
3014     x = parent_rect.left;
3015     y = parent_rect.top;
3016
3017     TRACE("nRows: %d, infoPtr->nButtonHeight: %d\n", infoPtr->nRows, infoPtr->nButtonHeight);
3018
3019     cy = TOP_BORDER + infoPtr->nRows * infoPtr->nButtonHeight + BOTTOM_BORDER;
3020     cx = parent_rect.right - parent_rect.left;
3021
3022     if ((infoPtr->dwStyle & TBSTYLE_WRAPABLE) || (infoPtr->dwExStyle & TBSTYLE_EX_UNDOC1))
3023     {
3024         TOOLBAR_LayoutToolbar(hwnd);
3025         InvalidateRect( hwnd, NULL, TRUE );
3026     }
3027
3028     if (!(infoPtr->dwStyle & CCS_NORESIZE))
3029     {
3030         RECT window_rect;
3031         UINT uPosFlags = SWP_NOZORDER;
3032
3033         if ((infoPtr->dwStyle & CCS_BOTTOM) == CCS_NOMOVEY)
3034         {
3035             GetWindowRect(hwnd, &window_rect);
3036             ScreenToClient(parent, (LPPOINT)&window_rect.left);
3037             y = window_rect.top;
3038         }
3039         if ((infoPtr->dwStyle & CCS_BOTTOM) == CCS_BOTTOM)
3040         {
3041             GetWindowRect(hwnd, &window_rect);
3042             y = parent_rect.bottom - ( window_rect.bottom - window_rect.top);
3043         }
3044
3045         if (infoPtr->dwStyle & CCS_NOPARENTALIGN)
3046             uPosFlags |= SWP_NOMOVE;
3047     
3048         if (!(infoPtr->dwStyle & CCS_NODIVIDER))
3049             cy += GetSystemMetrics(SM_CYEDGE);
3050
3051         if (infoPtr->dwStyle & WS_BORDER)
3052         {
3053             x = y = 1; /* FIXME: this looks wrong */
3054             cy += GetSystemMetrics(SM_CYEDGE);
3055             cx += GetSystemMetrics(SM_CXEDGE);
3056         }
3057
3058         SetWindowPos(hwnd, NULL, x, y, cx, cy, uPosFlags);
3059     }
3060
3061     return 0;
3062 }
3063
3064
3065 static LRESULT
3066 TOOLBAR_ButtonCount (HWND hwnd, WPARAM wParam, LPARAM lParam)
3067 {
3068     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3069
3070     return infoPtr->nNumButtons;
3071 }
3072
3073
3074 static LRESULT
3075 TOOLBAR_ButtonStructSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
3076 {
3077     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3078
3079     infoPtr->dwStructSize = (DWORD)wParam;
3080
3081     return 0;
3082 }
3083
3084
3085 static LRESULT
3086 TOOLBAR_ChangeBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
3087 {
3088     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3089     TBUTTON_INFO *btnPtr;
3090     INT nIndex;
3091
3092     TRACE("button %d, iBitmap now %d\n", wParam, LOWORD(lParam));
3093
3094     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3095     if (nIndex == -1)
3096         return FALSE;
3097
3098     btnPtr = &infoPtr->buttons[nIndex];
3099     btnPtr->iBitmap = LOWORD(lParam);
3100
3101     /* we HAVE to erase the background, the new bitmap could be */
3102     /* transparent */
3103     InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3104
3105     return TRUE;
3106 }
3107
3108
3109 static LRESULT
3110 TOOLBAR_CheckButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3111 {
3112     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3113     TBUTTON_INFO *btnPtr;
3114     INT nIndex;
3115     INT nOldIndex = -1;
3116     BOOL bChecked = FALSE;
3117
3118     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3119
3120     TRACE("hwnd=%p, btn index=%d, lParam=0x%08lx\n", hwnd, nIndex, lParam);
3121
3122     if (nIndex == -1)
3123         return FALSE;
3124
3125     btnPtr = &infoPtr->buttons[nIndex];
3126
3127     bChecked = (btnPtr->fsState & TBSTATE_CHECKED) ? TRUE : FALSE;
3128
3129     if (LOWORD(lParam) == FALSE)
3130         btnPtr->fsState &= ~TBSTATE_CHECKED;
3131     else {
3132         if (btnPtr->fsStyle & BTNS_GROUP) {
3133             nOldIndex =
3134                 TOOLBAR_GetCheckedGroupButtonIndex (infoPtr, nIndex);
3135             if (nOldIndex == nIndex)
3136                 return 0;
3137             if (nOldIndex != -1)
3138                 infoPtr->buttons[nOldIndex].fsState &= ~TBSTATE_CHECKED;
3139         }
3140         btnPtr->fsState |= TBSTATE_CHECKED;
3141     }
3142
3143     if( bChecked != LOWORD(lParam) )
3144     {
3145         if (nOldIndex != -1)
3146             InvalidateRect(hwnd, &infoPtr->buttons[nOldIndex].rect, TRUE);
3147         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3148     }
3149
3150     /* FIXME: Send a WM_NOTIFY?? */
3151
3152     return TRUE;
3153 }
3154
3155
3156 static LRESULT
3157 TOOLBAR_CommandToIndex (HWND hwnd, WPARAM wParam, LPARAM lParam)
3158 {
3159     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3160
3161     return TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3162 }
3163
3164
3165 static LRESULT
3166 TOOLBAR_Customize (HWND hwnd)
3167 {
3168     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3169     CUSTDLG_INFO custInfo;
3170     LRESULT ret;
3171     LPCVOID template;
3172     HRSRC hRes;
3173     NMHDR nmhdr;
3174
3175     custInfo.tbInfo = infoPtr;
3176     custInfo.tbHwnd = hwnd;
3177
3178     /* send TBN_BEGINADJUST notification */
3179     TOOLBAR_SendNotify (&nmhdr, infoPtr, TBN_BEGINADJUST);
3180
3181     if (!(hRes = FindResourceW (COMCTL32_hModule,
3182                                 MAKEINTRESOURCEW(IDD_TBCUSTOMIZE),
3183                                 (LPWSTR)RT_DIALOG)))
3184         return FALSE;
3185
3186     if(!(template = (LPVOID)LoadResource (COMCTL32_hModule, hRes)))
3187         return FALSE;
3188
3189     ret = DialogBoxIndirectParamW ((HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE),
3190                                    (LPCDLGTEMPLATEW)template,
3191                                    hwnd,
3192                                    TOOLBAR_CustomizeDialogProc,
3193                                    (LPARAM)&custInfo);
3194
3195     /* send TBN_ENDADJUST notification */
3196     TOOLBAR_SendNotify (&nmhdr, infoPtr, TBN_ENDADJUST);
3197
3198     return ret;
3199 }
3200
3201
3202 static LRESULT
3203 TOOLBAR_DeleteButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3204 {
3205     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3206     INT nIndex = (INT)wParam;
3207     NMTOOLBARW nmtb;
3208     TBUTTON_INFO *btnPtr = &infoPtr->buttons[nIndex];
3209
3210     if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3211         return FALSE;
3212
3213     memset(&nmtb, 0, sizeof(nmtb));
3214     nmtb.iItem = btnPtr->idCommand;
3215     nmtb.tbButton.iBitmap = btnPtr->iBitmap;
3216     nmtb.tbButton.idCommand = btnPtr->idCommand;
3217     nmtb.tbButton.fsState = btnPtr->fsState;
3218     nmtb.tbButton.fsStyle = btnPtr->fsStyle;
3219     nmtb.tbButton.dwData = btnPtr->dwData;
3220     nmtb.tbButton.iString = btnPtr->iString;
3221     TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_DELETINGBUTTON);
3222
3223     TOOLBAR_TooltipDelTool(infoPtr, &infoPtr->buttons[nIndex]);
3224
3225     if (infoPtr->nNumButtons == 1) {
3226         TRACE(" simple delete!\n");
3227         Free (infoPtr->buttons);
3228         infoPtr->buttons = NULL;
3229         infoPtr->nNumButtons = 0;
3230     }
3231     else {
3232         TBUTTON_INFO *oldButtons = infoPtr->buttons;
3233         TRACE("complex delete! [nIndex=%d]\n", nIndex);
3234
3235         infoPtr->nNumButtons--;
3236         infoPtr->buttons = Alloc (sizeof (TBUTTON_INFO) * infoPtr->nNumButtons);
3237         if (nIndex > 0) {
3238             memcpy (&infoPtr->buttons[0], &oldButtons[0],
3239                     nIndex * sizeof(TBUTTON_INFO));
3240         }
3241
3242         if (nIndex < infoPtr->nNumButtons) {
3243             memcpy (&infoPtr->buttons[nIndex], &oldButtons[nIndex+1],
3244                     (infoPtr->nNumButtons - nIndex) * sizeof(TBUTTON_INFO));
3245         }
3246
3247         Free (oldButtons);
3248     }
3249
3250     TOOLBAR_LayoutToolbar(hwnd);
3251
3252     InvalidateRect (hwnd, NULL, TRUE);
3253
3254     return TRUE;
3255 }
3256
3257
3258 static LRESULT
3259 TOOLBAR_EnableButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3260 {
3261     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3262     TBUTTON_INFO *btnPtr;
3263     INT nIndex;
3264     DWORD bState;
3265
3266     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3267
3268     TRACE("hwnd=%p, btn index=%d, lParam=0x%08lx\n", hwnd, wParam, lParam);
3269
3270     if (nIndex == -1)
3271         return FALSE;
3272
3273     btnPtr = &infoPtr->buttons[nIndex];
3274
3275     bState = btnPtr->fsState & TBSTATE_ENABLED;
3276
3277     /* update the toolbar button state */
3278     if(LOWORD(lParam) == FALSE) {
3279         btnPtr->fsState &= ~(TBSTATE_ENABLED | TBSTATE_PRESSED);
3280     } else {
3281         btnPtr->fsState |= TBSTATE_ENABLED;
3282     }
3283
3284     /* redraw the button only if the state of the button changed */
3285     if(bState != (btnPtr->fsState & TBSTATE_ENABLED))
3286         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3287
3288     return TRUE;
3289 }
3290
3291
3292 static inline LRESULT
3293 TOOLBAR_GetAnchorHighlight (HWND hwnd)
3294 {
3295     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3296
3297     return infoPtr->bAnchor;
3298 }
3299
3300
3301 static LRESULT
3302 TOOLBAR_GetBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
3303 {
3304     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3305     INT nIndex;
3306
3307     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3308     if (nIndex == -1)
3309         return -1;
3310
3311     return infoPtr->buttons[nIndex].iBitmap;
3312 }
3313
3314
3315 static inline LRESULT
3316 TOOLBAR_GetBitmapFlags (HWND hwnd, WPARAM wParam, LPARAM lParam)
3317 {
3318     return (GetDeviceCaps (0, LOGPIXELSX) >= 120) ? TBBF_LARGE : 0;
3319 }
3320
3321
3322 static LRESULT
3323 TOOLBAR_GetButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3324 {
3325     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3326     LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
3327     INT nIndex = (INT)wParam;
3328     TBUTTON_INFO *btnPtr;
3329
3330     if (lpTbb == NULL)
3331         return FALSE;
3332
3333     if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3334         return FALSE;
3335
3336     btnPtr = &infoPtr->buttons[nIndex];
3337     lpTbb->iBitmap   = btnPtr->iBitmap;
3338     lpTbb->idCommand = btnPtr->idCommand;
3339     lpTbb->fsState   = btnPtr->fsState;
3340     lpTbb->fsStyle   = btnPtr->fsStyle;
3341     lpTbb->bReserved[0] = 0;
3342     lpTbb->bReserved[1] = 0;
3343     lpTbb->dwData    = btnPtr->dwData;
3344     lpTbb->iString   = btnPtr->iString;
3345
3346     return TRUE;
3347 }
3348
3349
3350 static LRESULT
3351 TOOLBAR_GetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
3352 {
3353     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3354     LPTBBUTTONINFOA lpTbInfo = (LPTBBUTTONINFOA)lParam;
3355     TBUTTON_INFO *btnPtr;
3356     INT nIndex;
3357
3358     if (lpTbInfo == NULL)
3359         return -1;
3360     if (lpTbInfo->cbSize < sizeof(TBBUTTONINFOA))
3361         return -1;
3362
3363     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
3364                                      lpTbInfo->dwMask & 0x80000000);
3365     if (nIndex == -1)
3366         return -1;
3367
3368     if (!(btnPtr = &infoPtr->buttons[nIndex])) return -1;
3369
3370     if (lpTbInfo->dwMask & TBIF_COMMAND)
3371         lpTbInfo->idCommand = btnPtr->idCommand;
3372     if (lpTbInfo->dwMask & TBIF_IMAGE)
3373         lpTbInfo->iImage = btnPtr->iBitmap;
3374     if (lpTbInfo->dwMask & TBIF_LPARAM)
3375         lpTbInfo->lParam = btnPtr->dwData;
3376     if (lpTbInfo->dwMask & TBIF_SIZE)
3377         lpTbInfo->cx = (WORD)(btnPtr->rect.right - btnPtr->rect.left);
3378     if (lpTbInfo->dwMask & TBIF_STATE)
3379         lpTbInfo->fsState = btnPtr->fsState;
3380     if (lpTbInfo->dwMask & TBIF_STYLE)
3381         lpTbInfo->fsStyle = btnPtr->fsStyle;
3382     if (lpTbInfo->dwMask & TBIF_TEXT) {
3383         /* TB_GETBUTTONINFO doesn't retrieve text from the string list, so we
3384            can't use TOOLBAR_GetText here */
3385         LPWSTR lpText;
3386         if (HIWORD(btnPtr->iString) && (btnPtr->iString != -1)) {
3387             lpText = (LPWSTR)btnPtr->iString;
3388             Str_GetPtrWtoA (lpText, lpTbInfo->pszText,lpTbInfo->cchText);
3389         } else
3390             lpTbInfo->pszText[0] = '\0';
3391     }
3392     return nIndex;
3393 }
3394
3395
3396 static LRESULT
3397 TOOLBAR_GetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
3398 {
3399     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3400     LPTBBUTTONINFOW lpTbInfo = (LPTBBUTTONINFOW)lParam;
3401     TBUTTON_INFO *btnPtr;
3402     INT nIndex;
3403
3404     if (lpTbInfo == NULL)
3405         return -1;
3406     if (lpTbInfo->cbSize < sizeof(TBBUTTONINFOW))
3407         return -1;
3408
3409     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
3410                                      lpTbInfo->dwMask & 0x80000000);
3411     if (nIndex == -1)
3412         return -1;
3413
3414     btnPtr = &infoPtr->buttons[nIndex];
3415
3416     if(!btnPtr)
3417         return -1;
3418
3419     if (lpTbInfo->dwMask & TBIF_COMMAND)
3420         lpTbInfo->idCommand = btnPtr->idCommand;
3421     if (lpTbInfo->dwMask & TBIF_IMAGE)
3422         lpTbInfo->iImage = btnPtr->iBitmap;
3423     if (lpTbInfo->dwMask & TBIF_LPARAM)
3424         lpTbInfo->lParam = btnPtr->dwData;
3425     if (lpTbInfo->dwMask & TBIF_SIZE)
3426         lpTbInfo->cx = (WORD)(btnPtr->rect.right - btnPtr->rect.left);
3427     if (lpTbInfo->dwMask & TBIF_STATE)
3428         lpTbInfo->fsState = btnPtr->fsState;
3429     if (lpTbInfo->dwMask & TBIF_STYLE)
3430         lpTbInfo->fsStyle = btnPtr->fsStyle;
3431     if (lpTbInfo->dwMask & TBIF_TEXT) {
3432         /* TB_GETBUTTONINFO doesn't retrieve text from the string list, so we
3433            can't use TOOLBAR_GetText here */
3434         LPWSTR lpText;
3435         if (HIWORD(btnPtr->iString) && (btnPtr->iString != -1)) {
3436             lpText = (LPWSTR)btnPtr->iString;
3437             Str_GetPtrW (lpText,lpTbInfo->pszText,lpTbInfo->cchText);
3438         } else
3439             lpTbInfo->pszText[0] = '\0';
3440     }
3441
3442     return nIndex;
3443 }
3444
3445
3446 static LRESULT
3447 TOOLBAR_GetButtonSize (HWND hwnd)
3448 {
3449     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3450
3451     return MAKELONG((WORD)infoPtr->nButtonWidth,
3452                     (WORD)infoPtr->nButtonHeight);
3453 }
3454
3455
3456 static LRESULT
3457 TOOLBAR_GetButtonTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
3458 {
3459     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3460     INT nIndex;
3461     LPWSTR lpText;
3462
3463     if (lParam == 0)
3464         return -1;
3465
3466     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3467     if (nIndex == -1)
3468         return -1;
3469
3470     lpText = TOOLBAR_GetText(infoPtr,&infoPtr->buttons[nIndex]);
3471
3472     return WideCharToMultiByte( CP_ACP, 0, lpText, -1,
3473                                 (LPSTR)lParam, 0x7fffffff, NULL, NULL ) - 1;
3474 }
3475
3476
3477 static LRESULT
3478 TOOLBAR_GetButtonTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
3479 {
3480     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3481     INT nIndex;
3482     LPWSTR lpText;
3483     LRESULT ret = 0;
3484
3485     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3486     if (nIndex == -1)
3487         return -1;
3488
3489     lpText = TOOLBAR_GetText(infoPtr,&infoPtr->buttons[nIndex]);
3490
3491     if (lpText)
3492     {
3493         ret = strlenW (lpText);
3494
3495         if (lParam)
3496             strcpyW ((LPWSTR)lParam, lpText);
3497     }
3498
3499     return ret;
3500 }
3501
3502
3503 static LRESULT
3504 TOOLBAR_GetDisabledImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3505 {
3506     TRACE("hwnd=%p, wParam=%d, lParam=0x%lx\n", hwnd, wParam, lParam);
3507     /* UNDOCUMENTED: wParam is actually the ID of the image list to return */
3508     return (LRESULT)GETDISIMAGELIST(TOOLBAR_GetInfoPtr (hwnd), wParam);
3509 }
3510
3511
3512 static inline LRESULT
3513 TOOLBAR_GetExtendedStyle (HWND hwnd)
3514 {
3515     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3516
3517     TRACE("\n");
3518
3519     return infoPtr->dwExStyle;
3520 }
3521
3522
3523 static LRESULT
3524 TOOLBAR_GetHotImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3525 {
3526     TRACE("hwnd=%p, wParam=%d, lParam=0x%lx\n", hwnd, wParam, lParam);
3527     /* UNDOCUMENTED: wParam is actually the ID of the image list to return */
3528     return (LRESULT)GETHOTIMAGELIST(TOOLBAR_GetInfoPtr (hwnd), wParam);
3529 }
3530
3531
3532 static LRESULT
3533 TOOLBAR_GetHotItem (HWND hwnd)
3534 {
3535     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3536
3537     if (!((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)))
3538         return -1;
3539
3540     if (infoPtr->nHotItem < 0)
3541         return -1;
3542
3543     return (LRESULT)infoPtr->nHotItem;
3544 }
3545
3546
3547 static LRESULT
3548 TOOLBAR_GetDefImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3549 {
3550     TRACE("hwnd=%p, wParam=%d, lParam=0x%lx\n", hwnd, wParam, lParam);
3551     /* UNDOCUMENTED: wParam is actually the ID of the image list to return */
3552     return (LRESULT) GETDEFIMAGELIST(TOOLBAR_GetInfoPtr(hwnd), wParam);
3553 }
3554
3555
3556 static LRESULT
3557 TOOLBAR_GetInsertMark (HWND hwnd, WPARAM wParam, LPARAM lParam)
3558 {
3559     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3560     TBINSERTMARK *lptbim = (TBINSERTMARK*)lParam;
3561
3562     TRACE("hwnd = %p, lptbim = %p\n", hwnd, lptbim);
3563
3564     *lptbim = infoPtr->tbim;
3565
3566     return 0;
3567 }
3568
3569
3570 static LRESULT
3571 TOOLBAR_GetInsertMarkColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
3572 {
3573     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3574
3575     TRACE("hwnd = %p\n", hwnd);
3576
3577     return (LRESULT)infoPtr->clrInsertMark;
3578 }
3579
3580
3581 static LRESULT
3582 TOOLBAR_GetItemRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
3583 {
3584     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3585     TBUTTON_INFO *btnPtr;
3586     LPRECT     lpRect;
3587     INT        nIndex;
3588
3589     nIndex = (INT)wParam;
3590     btnPtr = &infoPtr->buttons[nIndex];
3591     if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3592         return FALSE;
3593     lpRect = (LPRECT)lParam;
3594     if (lpRect == NULL)
3595         return FALSE;
3596     if (btnPtr->fsState & TBSTATE_HIDDEN)
3597         return FALSE;
3598
3599     lpRect->left   = btnPtr->rect.left;
3600     lpRect->right  = btnPtr->rect.right;
3601     lpRect->bottom = btnPtr->rect.bottom;
3602     lpRect->top    = btnPtr->rect.top;
3603
3604     return TRUE;
3605 }
3606
3607
3608 static LRESULT
3609 TOOLBAR_GetMaxSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
3610 {
3611     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3612     LPSIZE lpSize = (LPSIZE)lParam;
3613
3614     if (lpSize == NULL)
3615         return FALSE;
3616
3617     lpSize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
3618     lpSize->cy = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
3619
3620     TRACE("maximum size %d x %d\n",
3621            infoPtr->rcBound.right - infoPtr->rcBound.left,
3622            infoPtr->rcBound.bottom - infoPtr->rcBound.top);
3623
3624     return TRUE;
3625 }
3626
3627
3628 /* << TOOLBAR_GetObject >> */
3629
3630
3631 static LRESULT
3632 TOOLBAR_GetPadding (HWND hwnd)
3633 {
3634     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3635     DWORD oldPad;
3636
3637     oldPad = MAKELONG(infoPtr->szPadding.cx, infoPtr->szPadding.cy);
3638     return (LRESULT) oldPad;
3639 }
3640
3641
3642 static LRESULT
3643 TOOLBAR_GetRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
3644 {
3645     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3646     TBUTTON_INFO *btnPtr;
3647     LPRECT     lpRect;
3648     INT        nIndex;
3649
3650     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3651     btnPtr = &infoPtr->buttons[nIndex];
3652     if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3653         return FALSE;
3654     lpRect = (LPRECT)lParam;
3655     if (lpRect == NULL)
3656         return FALSE;
3657
3658     lpRect->left   = btnPtr->rect.left;
3659     lpRect->right  = btnPtr->rect.right;
3660     lpRect->bottom = btnPtr->rect.bottom;
3661     lpRect->top    = btnPtr->rect.top;
3662
3663     return TRUE;
3664 }
3665
3666
3667 static LRESULT
3668 TOOLBAR_GetRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
3669 {
3670     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3671
3672     if (infoPtr->dwStyle & TBSTYLE_WRAPABLE)
3673         return infoPtr->nRows;
3674     else
3675         return 1;
3676 }
3677
3678
3679 static LRESULT
3680 TOOLBAR_GetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
3681 {
3682     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3683     INT nIndex;
3684
3685     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3686     if (nIndex == -1)
3687         return -1;
3688
3689     return infoPtr->buttons[nIndex].fsState;
3690 }
3691
3692
3693 static LRESULT
3694 TOOLBAR_GetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
3695 {
3696     return GetWindowLongW(hwnd, GWL_STYLE);
3697 }
3698
3699
3700 static LRESULT
3701 TOOLBAR_GetTextRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
3702 {
3703     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3704
3705     return infoPtr->nMaxTextRows;
3706 }
3707
3708
3709 static LRESULT
3710 TOOLBAR_GetToolTips (HWND hwnd, WPARAM wParam, LPARAM lParam)
3711 {
3712     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3713
3714     if ((infoPtr->dwStyle & TBSTYLE_TOOLTIPS) && (infoPtr->hwndToolTip == NULL))
3715         TOOLBAR_TooltipCreateControl(infoPtr);
3716     return (LRESULT)infoPtr->hwndToolTip;
3717 }
3718
3719
3720 static LRESULT
3721 TOOLBAR_GetUnicodeFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
3722 {
3723     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3724
3725     TRACE("%s hwnd=%p\n",
3726            infoPtr->bUnicode ? "TRUE" : "FALSE", hwnd);
3727
3728     return infoPtr->bUnicode;
3729 }
3730
3731
3732 static inline LRESULT
3733 TOOLBAR_GetVersion (HWND hwnd)
3734 {
3735     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3736     return infoPtr->iVersion;
3737 }
3738
3739
3740 static LRESULT
3741 TOOLBAR_HideButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3742 {
3743     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3744     TBUTTON_INFO *btnPtr;
3745     INT nIndex;
3746
3747     TRACE("\n");
3748
3749     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3750     if (nIndex == -1)
3751         return FALSE;
3752
3753     btnPtr = &infoPtr->buttons[nIndex];
3754     if (LOWORD(lParam) == FALSE)
3755         btnPtr->fsState &= ~TBSTATE_HIDDEN;
3756     else
3757         btnPtr->fsState |= TBSTATE_HIDDEN;
3758
3759     TOOLBAR_CalcToolbar (hwnd);
3760
3761     InvalidateRect (hwnd, NULL, TRUE);
3762
3763     return TRUE;
3764 }
3765
3766
3767 static inline LRESULT
3768 TOOLBAR_HitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
3769 {
3770     return TOOLBAR_InternalHitTest (hwnd, (LPPOINT)lParam);
3771 }
3772
3773
3774 static LRESULT
3775 TOOLBAR_Indeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
3776 {
3777     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3778     TBUTTON_INFO *btnPtr;
3779     INT nIndex;
3780     DWORD oldState;
3781
3782     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3783     if (nIndex == -1)
3784         return FALSE;
3785
3786     btnPtr = &infoPtr->buttons[nIndex];
3787     oldState = btnPtr->fsState;
3788     if (LOWORD(lParam) == FALSE)
3789         btnPtr->fsState &= ~TBSTATE_INDETERMINATE;
3790     else
3791         btnPtr->fsState |= TBSTATE_INDETERMINATE;
3792
3793     if(oldState != btnPtr->fsState)
3794         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3795
3796     return TRUE;
3797 }
3798
3799
3800 static LRESULT
3801 TOOLBAR_InsertButtonT(HWND hwnd, WPARAM wParam, LPARAM lParam, BOOL fUnicode)
3802 {
3803     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3804     LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
3805     INT nIndex = (INT)wParam;
3806
3807     if (lpTbb == NULL)
3808         return FALSE;
3809
3810     TOOLBAR_DumpButton(infoPtr, (TBUTTON_INFO *)lpTbb, nIndex, FALSE);
3811
3812     if (nIndex == -1) {
3813        /* EPP: this seems to be an undocumented call (from my IE4)
3814         * I assume in that case that:
3815         * - index of insertion is at the end of existing buttons
3816         * I only see this happen with nIndex == -1, but it could have a special
3817         * meaning (like -nIndex (or ~nIndex) to get the real position of insertion).
3818         */
3819         nIndex = infoPtr->nNumButtons;
3820
3821     } else if (nIndex < 0)
3822        return FALSE;
3823
3824     TRACE("inserting button index=%d\n", nIndex);
3825     if (nIndex > infoPtr->nNumButtons) {
3826         nIndex = infoPtr->nNumButtons;
3827         TRACE("adjust index=%d\n", nIndex);
3828     }
3829
3830     infoPtr->nNumButtons++;
3831     infoPtr->buttons = ReAlloc(infoPtr->buttons, sizeof(TBUTTON_INFO) * infoPtr->nNumButtons);
3832     memmove(&infoPtr->buttons[nIndex+1], &infoPtr->buttons[nIndex],
3833             (infoPtr->nNumButtons - nIndex - 1) * sizeof(TBUTTON_INFO));
3834
3835     /* insert new button */
3836     infoPtr->buttons[nIndex].iBitmap   = lpTbb->iBitmap;
3837     infoPtr->buttons[nIndex].idCommand = lpTbb->idCommand;
3838     infoPtr->buttons[nIndex].fsState   = lpTbb->fsState;
3839     infoPtr->buttons[nIndex].fsStyle   = lpTbb->fsStyle;
3840     infoPtr->buttons[nIndex].dwData    = lpTbb->dwData;
3841     /* if passed string and not index, then add string */
3842     if(HIWORD(lpTbb->iString) && lpTbb->iString!=-1) {
3843         if (fUnicode)
3844             Str_SetPtrW((LPWSTR *)&infoPtr->buttons[nIndex].iString, (LPWSTR)lpTbb->iString);
3845         else
3846             Str_SetPtrAtoW((LPWSTR *)&infoPtr->buttons[nIndex].iString, (LPCSTR )lpTbb->iString);
3847     }
3848     else
3849         infoPtr->buttons[nIndex].iString   = lpTbb->iString;
3850
3851     TOOLBAR_TooltipAddTool(infoPtr, &infoPtr->buttons[nIndex]);
3852
3853     if (infoPtr->nNumStrings > 0)
3854         TOOLBAR_CalcToolbar(hwnd);
3855     else
3856         TOOLBAR_LayoutToolbar(hwnd);
3857     TOOLBAR_AutoSize (hwnd);
3858
3859     InvalidateRect (hwnd, NULL, TRUE);
3860
3861     return TRUE;
3862 }
3863
3864 /* << TOOLBAR_InsertMarkHitTest >> */
3865
3866
3867 static LRESULT
3868 TOOLBAR_IsButtonChecked (HWND hwnd, WPARAM wParam, LPARAM lParam)
3869 {
3870     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3871     INT nIndex;
3872
3873     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3874     if (nIndex == -1)
3875         return FALSE;
3876
3877     return (infoPtr->buttons[nIndex].fsState & TBSTATE_CHECKED);
3878 }
3879
3880
3881 static LRESULT
3882 TOOLBAR_IsButtonEnabled (HWND hwnd, WPARAM wParam, LPARAM lParam)
3883 {
3884     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3885     INT nIndex;
3886
3887     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3888     if (nIndex == -1)
3889         return FALSE;
3890
3891     return (infoPtr->buttons[nIndex].fsState & TBSTATE_ENABLED);
3892 }
3893
3894
3895 static LRESULT
3896 TOOLBAR_IsButtonHidden (HWND hwnd, WPARAM wParam, LPARAM lParam)
3897 {
3898     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3899     INT nIndex;
3900
3901     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3902     if (nIndex == -1)
3903         return TRUE;
3904
3905     return (infoPtr->buttons[nIndex].fsState & TBSTATE_HIDDEN);
3906 }
3907
3908
3909 static LRESULT
3910 TOOLBAR_IsButtonHighlighted (HWND hwnd, WPARAM wParam, LPARAM lParam)
3911 {
3912     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3913     INT nIndex;
3914
3915     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3916     if (nIndex == -1)
3917         return FALSE;
3918
3919     return (infoPtr->buttons[nIndex].fsState & TBSTATE_MARKED);
3920 }
3921
3922
3923 static LRESULT
3924 TOOLBAR_IsButtonIndeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
3925 {
3926     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3927     INT nIndex;
3928
3929     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3930     if (nIndex == -1)
3931         return FALSE;
3932
3933     return (infoPtr->buttons[nIndex].fsState & TBSTATE_INDETERMINATE);
3934 }
3935
3936
3937 static LRESULT
3938 TOOLBAR_IsButtonPressed (HWND hwnd, WPARAM wParam, LPARAM lParam)
3939 {
3940     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3941     INT nIndex;
3942
3943     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3944     if (nIndex == -1)
3945         return FALSE;
3946
3947     return (infoPtr->buttons[nIndex].fsState & TBSTATE_PRESSED);
3948 }
3949
3950
3951 static LRESULT
3952 TOOLBAR_LoadImages (HWND hwnd, WPARAM wParam, LPARAM lParam)
3953 {
3954     TBADDBITMAP tbab;
3955     tbab.hInst = (HINSTANCE)lParam;
3956     tbab.nID = (UINT_PTR)wParam;
3957
3958     TRACE("hwnd = %p, hInst = %p, nID = %u\n", hwnd, tbab.hInst, tbab.nID);
3959
3960     return TOOLBAR_AddBitmap(hwnd, 0, (LPARAM)&tbab);
3961 }
3962
3963
3964 static LRESULT
3965 TOOLBAR_MapAccelerator (HWND hwnd, WPARAM wParam, LPARAM lParam)
3966 {
3967     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3968     WCHAR wAccel = (WCHAR)wParam;
3969     UINT* pIDButton = (UINT*)lParam;
3970     WCHAR wszAccel[] = {'&',wAccel,0};
3971     int i;
3972     
3973     TRACE("hwnd = %p, wAccel = %x(%s), pIDButton = %p\n",
3974         hwnd, wAccel, debugstr_wn(&wAccel,1), pIDButton);
3975     
3976     for (i = 0; i < infoPtr->nNumButtons; i++)
3977     {
3978         TBUTTON_INFO *btnPtr = infoPtr->buttons+i;
3979         if (!(btnPtr->fsStyle & BTNS_NOPREFIX) &&
3980             !(btnPtr->fsState & TBSTATE_HIDDEN))
3981         {
3982             int iLen = strlenW(wszAccel);
3983             LPCWSTR lpszStr = TOOLBAR_GetText(infoPtr, btnPtr);
3984             
3985             if (!lpszStr)
3986                 continue;
3987
3988             while (*lpszStr)
3989             {
3990                 if ((lpszStr[0] == '&') && (lpszStr[1] == '&'))
3991                 {
3992                     lpszStr += 2;
3993                     continue;
3994                 }
3995                 if (!strncmpiW(lpszStr, wszAccel, iLen))
3996                 {
3997                     *pIDButton = btnPtr->idCommand;
3998                     return TRUE;
3999                 }
4000                 lpszStr++;
4001             }
4002         }
4003     }
4004     return FALSE;
4005 }
4006
4007
4008 static LRESULT
4009 TOOLBAR_MarkButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
4010 {
4011     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4012     INT nIndex;
4013     DWORD oldState;
4014     TBUTTON_INFO *btnPtr;
4015
4016     TRACE("hwnd = %p, wParam = %d, lParam = 0x%08lx\n", hwnd, wParam, lParam);
4017
4018     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
4019     if (nIndex == -1)
4020         return FALSE;
4021
4022     btnPtr = &infoPtr->buttons[nIndex];
4023     oldState = btnPtr->fsState;
4024
4025     if (LOWORD(lParam))
4026         btnPtr->fsState |= TBSTATE_MARKED;
4027     else
4028         btnPtr->fsState &= ~TBSTATE_MARKED;
4029
4030     if(oldState != btnPtr->fsState)
4031         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4032
4033     return TRUE;
4034 }
4035
4036
4037 /* fixes up an index of a button affected by a move */
4038 static inline void TOOLBAR_MoveFixupIndex(INT* pIndex, INT nIndex, INT nMoveIndex, BOOL bMoveUp)
4039 {
4040     if (bMoveUp)
4041     {
4042         if (*pIndex > nIndex && *pIndex <= nMoveIndex)
4043             (*pIndex)--;
4044         else if (*pIndex == nIndex)
4045             *pIndex = nMoveIndex;
4046     }
4047     else
4048     {
4049         if (*pIndex >= nMoveIndex && *pIndex < nIndex)
4050             (*pIndex)++;
4051         else if (*pIndex == nIndex)
4052             *pIndex = nMoveIndex;
4053     }
4054 }
4055
4056
4057 static LRESULT
4058 TOOLBAR_MoveButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
4059 {
4060     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4061     INT nIndex;
4062     INT nCount;
4063     INT nMoveIndex = (INT)lParam;
4064     TBUTTON_INFO button;
4065
4066     TRACE("hwnd=%p, wParam=%d, lParam=%ld\n", hwnd, wParam, lParam);
4067
4068     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, TRUE);
4069     if ((nIndex == -1) || (nMoveIndex < 0))
4070         return FALSE;
4071
4072     if (nMoveIndex > infoPtr->nNumButtons - 1)
4073         nMoveIndex = infoPtr->nNumButtons - 1;
4074
4075     button = infoPtr->buttons[nIndex];
4076
4077     /* move button right */
4078     if (nIndex < nMoveIndex)
4079     {
4080         nCount = nMoveIndex - nIndex;
4081         memmove(&infoPtr->buttons[nIndex], &infoPtr->buttons[nIndex+1], nCount*sizeof(TBUTTON_INFO));
4082         infoPtr->buttons[nMoveIndex] = button;
4083
4084         TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDown, nIndex, nMoveIndex, TRUE);
4085         TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDrag, nIndex, nMoveIndex, TRUE);
4086         TOOLBAR_MoveFixupIndex(&infoPtr->nOldHit, nIndex, nMoveIndex, TRUE);
4087         TOOLBAR_MoveFixupIndex(&infoPtr->nHotItem, nIndex, nMoveIndex, TRUE);
4088     }
4089     else if (nIndex > nMoveIndex) /* move button left */
4090     {
4091         nCount = nIndex - nMoveIndex;
4092         memmove(&infoPtr->buttons[nMoveIndex+1], &infoPtr->buttons[nMoveIndex], nCount*sizeof(TBUTTON_INFO));
4093         infoPtr->buttons[nMoveIndex] = button;
4094
4095         TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDown, nIndex, nMoveIndex, FALSE);
4096         TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDrag, nIndex, nMoveIndex, FALSE);
4097         TOOLBAR_MoveFixupIndex(&infoPtr->nOldHit, nIndex, nMoveIndex, FALSE);
4098         TOOLBAR_MoveFixupIndex(&infoPtr->nHotItem, nIndex, nMoveIndex, FALSE);
4099     }
4100
4101     TOOLBAR_CalcToolbar(hwnd);
4102     TOOLBAR_AutoSize(hwnd);
4103     InvalidateRect(hwnd, NULL, TRUE);
4104
4105     return TRUE;
4106 }
4107
4108
4109 static LRESULT
4110 TOOLBAR_PressButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
4111 {
4112     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4113     TBUTTON_INFO *btnPtr;
4114     INT nIndex;
4115     DWORD oldState;
4116
4117     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
4118     if (nIndex == -1)
4119         return FALSE;
4120
4121     btnPtr = &infoPtr->buttons[nIndex];
4122     oldState = btnPtr->fsState;
4123     if (LOWORD(lParam) == FALSE)
4124         btnPtr->fsState &= ~TBSTATE_PRESSED;
4125     else
4126         btnPtr->fsState |= TBSTATE_PRESSED;
4127
4128     if(oldState != btnPtr->fsState)
4129         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4130
4131     return TRUE;
4132 }
4133
4134 /* FIXME: there might still be some confusion her between number of buttons
4135  * and number of bitmaps */
4136 static LRESULT
4137 TOOLBAR_ReplaceBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
4138 {
4139     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4140     LPTBREPLACEBITMAP lpReplace = (LPTBREPLACEBITMAP) lParam;
4141     HBITMAP hBitmap;
4142     int i = 0, nOldButtons = 0, pos = 0;
4143     int nOldBitmaps, nNewBitmaps = 0;
4144     HIMAGELIST himlDef = 0;
4145
4146     TRACE("hInstOld %p nIDOld %x hInstNew %p nIDNew %x nButtons %x\n",
4147           lpReplace->hInstOld, lpReplace->nIDOld, lpReplace->hInstNew, lpReplace->nIDNew,
4148           lpReplace->nButtons);
4149
4150     if (lpReplace->hInstOld == HINST_COMMCTRL)
4151     {
4152         FIXME("changing standard bitmaps not implemented\n");
4153         return FALSE;
4154     }
4155     else if (lpReplace->hInstOld != 0)
4156         FIXME("resources not in the current module not implemented\n");
4157
4158     TRACE("To be replaced hInstOld %p nIDOld %x\n", lpReplace->hInstOld, lpReplace->nIDOld);
4159     for (i = 0; i < infoPtr->nNumBitmapInfos; i++) {
4160         TBITMAP_INFO *tbi = &infoPtr->bitmaps[i];
4161         TRACE("tbimapinfo %d hInstOld %p nIDOld %x\n", i, tbi->hInst, tbi->nID);
4162         if (tbi->hInst == lpReplace->hInstOld && tbi->nID == lpReplace->nIDOld)
4163         {
4164             TRACE("Found: nButtons %d hInst %p nID %x\n", tbi->nButtons, tbi->hInst, tbi->nID);
4165             nOldButtons = tbi->nButtons;
4166             tbi->nButtons = lpReplace->nButtons;
4167             tbi->hInst = lpReplace->hInstNew;
4168             tbi->nID = lpReplace->nIDNew;
4169             TRACE("tbimapinfo changed %d hInstOld %p nIDOld %x\n", i, tbi->hInst, tbi->nID);
4170             break;
4171         }
4172         pos += tbi->nButtons;
4173     }
4174
4175     if (nOldButtons == 0)
4176     {
4177         WARN("No hinst/bitmap found! hInst %p nID %x\n", lpReplace->hInstOld, lpReplace->nIDOld);
4178         return FALSE;
4179     }
4180     
4181     /* copy the bitmap before adding it as ImageList_AddMasked modifies the
4182     * bitmap
4183     */
4184     if (lpReplace->hInstNew)
4185         hBitmap = LoadBitmapW(lpReplace->hInstNew,(LPWSTR)lpReplace->nIDNew);
4186     else
4187         hBitmap = CopyImage((HBITMAP)lpReplace->nIDNew, IMAGE_BITMAP, 0, 0, 0);
4188
4189     himlDef = GETDEFIMAGELIST(infoPtr, 0); /* fixme: correct? */
4190     nOldBitmaps = ImageList_GetImageCount(himlDef);
4191
4192     /* ImageList_Replace(GETDEFIMAGELIST(), pos, hBitmap, NULL); */
4193
4194     for (i = pos + nOldBitmaps - 1; i >= pos; i--)
4195         ImageList_Remove(himlDef, i);
4196
4197     if (hBitmap)
4198     {
4199        ImageList_AddMasked (himlDef, hBitmap, comctl32_color.clrBtnFace);
4200        nNewBitmaps = ImageList_GetImageCount(himlDef);
4201        DeleteObject(hBitmap);
4202     }
4203
4204     infoPtr->nNumBitmaps = infoPtr->nNumBitmaps - nOldBitmaps + nNewBitmaps;
4205
4206     TRACE(" pos %d  %d old bitmaps replaced by %d new ones.\n",
4207             pos, nOldBitmaps, nNewBitmaps);
4208
4209     InvalidateRect(hwnd, NULL, TRUE);
4210     return TRUE;
4211 }
4212
4213
4214 /* helper for TOOLBAR_SaveRestoreW */
4215 static BOOL
4216 TOOLBAR_Save(TOOLBAR_INFO *infoPtr, LPTBSAVEPARAMSW lpSave)
4217 {
4218     FIXME("save to %s %s\n", debugstr_w(lpSave->pszSubKey),
4219         debugstr_w(lpSave->pszValueName));
4220
4221     return FALSE;
4222 }
4223
4224
4225 /* helper for TOOLBAR_Restore */
4226 static void
4227 TOOLBAR_DeleteAllButtons(TOOLBAR_INFO *infoPtr)
4228 {
4229     INT i;
4230
4231     for (i = 0; i < infoPtr->nNumButtons; i++)
4232     {
4233         TOOLBAR_TooltipDelTool(infoPtr, &infoPtr->buttons[i]);
4234     }
4235
4236     Free(infoPtr->buttons);
4237     infoPtr->buttons = NULL;
4238     infoPtr->nNumButtons = 0;
4239 }
4240
4241
4242 /* helper for TOOLBAR_SaveRestoreW */
4243 static BOOL
4244 TOOLBAR_Restore(TOOLBAR_INFO *infoPtr, LPTBSAVEPARAMSW lpSave)
4245 {
4246     LONG res;
4247     HKEY hkey = NULL;
4248     BOOL ret = FALSE;
4249     DWORD dwType;
4250     DWORD dwSize = 0;
4251     NMTBRESTORE nmtbr;
4252
4253     /* restore toolbar information */
4254     TRACE("restore from %s %s\n", debugstr_w(lpSave->pszSubKey),
4255         debugstr_w(lpSave->pszValueName));
4256
4257     memset(&nmtbr, 0, sizeof(nmtbr));
4258
4259     res = RegOpenKeyExW(lpSave->hkr, lpSave->pszSubKey, 0,
4260         KEY_QUERY_VALUE, &hkey);
4261     if (!res)
4262         res = RegQueryValueExW(hkey, lpSave->pszValueName, NULL, &dwType,
4263             NULL, &dwSize);
4264     if (!res && dwType != REG_BINARY)
4265         res = ERROR_FILE_NOT_FOUND;
4266     if (!res)
4267     {
4268         nmtbr.pData = Alloc(dwSize);
4269         nmtbr.cbData = (UINT)dwSize;
4270         if (!nmtbr.pData) res = ERROR_OUTOFMEMORY;
4271     }
4272     if (!res)
4273         res = RegQueryValueExW(hkey, lpSave->pszValueName, NULL, &dwType,
4274             (LPBYTE)nmtbr.pData, &dwSize);
4275     if (!res)
4276     {
4277         nmtbr.pCurrent = nmtbr.pData;
4278         nmtbr.iItem = -1;
4279         nmtbr.cbBytesPerRecord = sizeof(DWORD);
4280         nmtbr.cButtons = nmtbr.cbData / nmtbr.cbBytesPerRecord;
4281
4282         if (!TOOLBAR_SendNotify(&nmtbr.hdr, infoPtr, TBN_RESTORE))
4283         {
4284             INT i;
4285
4286             /* remove all existing buttons as this function is designed to
4287              * restore the toolbar to a previously saved state */
4288             TOOLBAR_DeleteAllButtons(infoPtr);
4289
4290             for (i = 0; i < nmtbr.cButtons; i++)
4291             {
4292                 nmtbr.iItem = i;
4293                 nmtbr.tbButton.iBitmap = -1;
4294                 nmtbr.tbButton.fsState = 0;
4295                 nmtbr.tbButton.fsStyle = 0;
4296                 nmtbr.tbButton.idCommand = 0;
4297                 if (*nmtbr.pCurrent == (DWORD)-1)
4298                 {
4299                     /* separator */
4300                     nmtbr.tbButton.fsStyle = TBSTYLE_SEP;
4301                     nmtbr.tbButton.iBitmap = SEPARATOR_WIDTH;
4302                 }
4303                 else if (*nmtbr.pCurrent == (DWORD)-2)
4304                     /* hidden button */
4305                     nmtbr.tbButton.fsState = TBSTATE_HIDDEN;
4306                 else
4307                     nmtbr.tbButton.idCommand = (int)*nmtbr.pCurrent;
4308
4309                 nmtbr.pCurrent++;
4310                 
4311                 TOOLBAR_SendNotify(&nmtbr.hdr, infoPtr, TBN_RESTORE);
4312
4313                 /* can't contain real string as we don't know whether
4314                  * the client put an ANSI or Unicode string in there */
4315                 if (HIWORD(nmtbr.tbButton.iString))
4316                     nmtbr.tbButton.iString = 0;
4317
4318                 TOOLBAR_InsertButtonT(infoPtr->hwndSelf, -1,
4319                     (LPARAM)&nmtbr.tbButton, TRUE);
4320             }
4321
4322             /* do legacy notifications */
4323             if (infoPtr->iVersion < 5)
4324             {
4325                 /* FIXME: send TBN_BEGINADJUST */
4326                 FIXME("send TBN_GETBUTTONINFO for each button\n");
4327                 /* FIXME: send TBN_ENDADJUST */
4328             }
4329
4330             /* remove all uninitialised buttons
4331              * note: loop backwards to avoid having to fixup i on a
4332              * delete */
4333             for (i = infoPtr->nNumButtons - 1; i >= 0; i--)
4334                 if (infoPtr->buttons[i].iBitmap == -1)
4335                     TOOLBAR_DeleteButton(infoPtr->hwndSelf, i, 0);
4336
4337             /* only indicate success if at least one button survived */
4338             if (infoPtr->nNumButtons > 0) ret = TRUE;
4339         }
4340     }
4341     Free (nmtbr.pData);
4342     RegCloseKey(hkey);
4343
4344     return ret;
4345 }
4346
4347
4348 static LRESULT
4349 TOOLBAR_SaveRestoreW (HWND hwnd, WPARAM wParam, LPTBSAVEPARAMSW lpSave)
4350 {
4351     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4352
4353     if (lpSave == NULL) return 0;
4354
4355     if (wParam)
4356         return TOOLBAR_Save(infoPtr, lpSave);
4357     else
4358         return TOOLBAR_Restore(infoPtr, lpSave);
4359 }
4360
4361
4362 static LRESULT
4363 TOOLBAR_SaveRestoreA (HWND hwnd, WPARAM wParam, LPTBSAVEPARAMSA lpSave)
4364 {
4365     LPWSTR pszValueName = 0, pszSubKey = 0;
4366     TBSAVEPARAMSW SaveW;
4367     LRESULT result = 0;
4368     int len;
4369
4370     if (lpSave == NULL) return 0;
4371
4372     len = MultiByteToWideChar(CP_ACP, 0, lpSave->pszSubKey, -1, NULL, 0);
4373     pszSubKey = Alloc(len * sizeof(WCHAR));
4374     if (pszSubKey) goto exit;
4375     MultiByteToWideChar(CP_ACP, 0, lpSave->pszSubKey, -1, pszSubKey, len);
4376
4377     len = MultiByteToWideChar(CP_ACP, 0, lpSave->pszValueName, -1, NULL, 0);
4378     pszValueName = Alloc(len * sizeof(WCHAR));
4379     if (!pszValueName) goto exit;
4380     MultiByteToWideChar(CP_ACP, 0, lpSave->pszValueName, -1, pszValueName, len);
4381
4382     SaveW.pszValueName = pszValueName;
4383     SaveW.pszSubKey = pszSubKey;
4384     SaveW.hkr = lpSave->hkr;
4385     result = TOOLBAR_SaveRestoreW(hwnd, wParam, &SaveW);
4386
4387 exit:
4388     Free (pszValueName);
4389     Free (pszSubKey);
4390
4391     return result;
4392 }
4393
4394
4395 static LRESULT
4396 TOOLBAR_SetAnchorHighlight (HWND hwnd, WPARAM wParam)
4397 {
4398     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4399     BOOL bOldAnchor = infoPtr->bAnchor;
4400
4401     TRACE("hwnd=%p, bAnchor = %s\n", hwnd, wParam ? "TRUE" : "FALSE");
4402
4403     infoPtr->bAnchor = (BOOL)wParam;
4404
4405     /* Native does not remove the hot effect from an already hot button */
4406
4407     return (LRESULT)bOldAnchor;
4408 }
4409
4410
4411 static LRESULT
4412 TOOLBAR_SetBitmapSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
4413 {
4414     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4415     HIMAGELIST himlDef = GETDEFIMAGELIST(infoPtr, 0);
4416
4417     TRACE("hwnd=%p, wParam=%d, lParam=%ld\n", hwnd, wParam, lParam);
4418
4419     if (wParam != 0)
4420         FIXME("wParam is %d. Perhaps image list index?\n", wParam);
4421
4422     if (LOWORD(lParam) == 0)
4423         lParam = MAKELPARAM(1, HIWORD(lParam));
4424
4425     if (HIWORD(lParam)==0)
4426         lParam = MAKELPARAM(LOWORD(lParam), 1);
4427
4428     if (infoPtr->nNumButtons > 0)
4429         WARN("%d buttons, undoc increase to bitmap size : %d-%d -> %d-%d\n",
4430              infoPtr->nNumButtons,
4431              infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
4432              LOWORD(lParam), HIWORD(lParam));
4433
4434     infoPtr->nBitmapWidth = (INT)LOWORD(lParam);
4435     infoPtr->nBitmapHeight = (INT)HIWORD(lParam);
4436
4437     if ((himlDef == infoPtr->himlInt) &&
4438         (ImageList_GetImageCount(infoPtr->himlInt) == 0))
4439     {
4440         ImageList_SetIconSize(infoPtr->himlInt, infoPtr->nBitmapWidth,
4441             infoPtr->nBitmapHeight);
4442     }
4443
4444     TOOLBAR_CalcToolbar(hwnd);
4445     InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
4446     return TRUE;
4447 }
4448
4449
4450 static LRESULT
4451 TOOLBAR_SetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
4452 {
4453     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4454     LPTBBUTTONINFOA lptbbi = (LPTBBUTTONINFOA)lParam;
4455     TBUTTON_INFO *btnPtr;
4456     INT nIndex;
4457     RECT oldBtnRect;
4458
4459     if (lptbbi == NULL)
4460         return FALSE;
4461     if (lptbbi->cbSize < sizeof(TBBUTTONINFOA))
4462         return FALSE;
4463
4464     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
4465                                      lptbbi->dwMask & 0x80000000);
4466     if (nIndex == -1)
4467         return FALSE;
4468
4469     btnPtr = &infoPtr->buttons[nIndex];
4470     if (lptbbi->dwMask & TBIF_COMMAND)
4471         btnPtr->idCommand = lptbbi->idCommand;
4472     if (lptbbi->dwMask & TBIF_IMAGE)
4473         btnPtr->iBitmap = lptbbi->iImage;
4474     if (lptbbi->dwMask & TBIF_LPARAM)
4475         btnPtr->dwData = lptbbi->lParam;
4476     if (lptbbi->dwMask & TBIF_SIZE)
4477         btnPtr->cx = lptbbi->cx;
4478     if (lptbbi->dwMask & TBIF_STATE)
4479         btnPtr->fsState = lptbbi->fsState;
4480     if (lptbbi->dwMask & TBIF_STYLE)
4481         btnPtr->fsStyle = lptbbi->fsStyle;
4482
4483     if ((lptbbi->dwMask & TBIF_TEXT) && ((INT_PTR)lptbbi->pszText != -1)) {
4484         if ((HIWORD(btnPtr->iString) == 0) || (btnPtr->iString == -1))
4485             /* iString is index, zero it to make Str_SetPtr succeed */
4486             btnPtr->iString=0;
4487
4488          Str_SetPtrAtoW ((LPWSTR *)&btnPtr->iString, lptbbi->pszText);
4489     }
4490
4491     /* save the button rect to see if we need to redraw the whole toolbar */
4492     oldBtnRect = btnPtr->rect;
4493     TOOLBAR_CalcToolbar(hwnd);
4494
4495     if (!EqualRect(&oldBtnRect, &btnPtr->rect))
4496         InvalidateRect(hwnd, NULL, TRUE);
4497     else
4498         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4499
4500     return TRUE;
4501 }
4502
4503
4504 static LRESULT
4505 TOOLBAR_SetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
4506 {
4507     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4508     LPTBBUTTONINFOW lptbbi = (LPTBBUTTONINFOW)lParam;
4509     TBUTTON_INFO *btnPtr;
4510     INT nIndex;
4511     RECT oldBtnRect;
4512
4513     if (lptbbi == NULL)
4514         return FALSE;
4515     if (lptbbi->cbSize < sizeof(TBBUTTONINFOW))
4516         return FALSE;
4517
4518     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
4519                                      lptbbi->dwMask & 0x80000000);
4520     if (nIndex == -1)
4521         return FALSE;
4522
4523     btnPtr = &infoPtr->buttons[nIndex];
4524     if (lptbbi->dwMask & TBIF_COMMAND)
4525         btnPtr->idCommand = lptbbi->idCommand;
4526     if (lptbbi->dwMask & TBIF_IMAGE)
4527         btnPtr->iBitmap = lptbbi->iImage;
4528     if (lptbbi->dwMask & TBIF_LPARAM)
4529         btnPtr->dwData = lptbbi->lParam;
4530     if (lptbbi->dwMask & TBIF_SIZE)
4531         btnPtr->cx = lptbbi->cx;
4532     if (lptbbi->dwMask & TBIF_STATE)
4533         btnPtr->fsState = lptbbi->fsState;
4534     if (lptbbi->dwMask & TBIF_STYLE)
4535         btnPtr->fsStyle = lptbbi->fsStyle;
4536
4537     if ((lptbbi->dwMask & TBIF_TEXT) && ((INT_PTR)lptbbi->pszText != -1)) {
4538         if ((HIWORD(btnPtr->iString) == 0) || (btnPtr->iString == -1))
4539             /* iString is index, zero it to make Str_SetPtr succeed */
4540             btnPtr->iString=0;
4541         Str_SetPtrW ((LPWSTR *)&btnPtr->iString, lptbbi->pszText);
4542     }
4543
4544     /* save the button rect to see if we need to redraw the whole toolbar */
4545     oldBtnRect = btnPtr->rect;
4546     TOOLBAR_CalcToolbar(hwnd);
4547
4548     if (!EqualRect(&oldBtnRect, &btnPtr->rect))
4549         InvalidateRect(hwnd, NULL, TRUE);
4550     else
4551         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4552
4553     return TRUE;
4554 }
4555
4556
4557 static LRESULT
4558 TOOLBAR_SetButtonSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
4559 {
4560     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4561     INT cx = (short)LOWORD(lParam), cy = (short)HIWORD(lParam);
4562
4563     if ((cx < 0) || (cy < 0))
4564     {
4565         ERR("invalid parameter 0x%08x\n", (DWORD)lParam);
4566         return FALSE;
4567     }
4568
4569     TRACE("%p, cx = %d, cy = %d\n", hwnd, cx, cy);
4570
4571     /* The documentation claims you can only change the button size before
4572      * any button has been added. But this is wrong.
4573      * WINZIP32.EXE (ver 8) calls this on one of its buttons after adding
4574      * it to the toolbar, and it checks that the return value is nonzero - mjm
4575      * Further testing shows that we must actually perform the change too.
4576      */
4577     /*
4578      * The documentation also does not mention that if 0 is supplied for
4579      * either size, the system changes it to the default of 24 wide and
4580      * 22 high. Demonstarted in ControlSpy Toolbar. GLA 3/02
4581      */
4582     if (cx == 0) cx = 24;
4583     if (cy == 0) cx = 22;
4584     
4585     cx = max(cx, infoPtr->szPadding.cx + infoPtr->nBitmapWidth);
4586     cy = max(cy, infoPtr->szPadding.cy + infoPtr->nBitmapHeight);
4587
4588     infoPtr->nButtonWidth = cx;
4589     infoPtr->nButtonHeight = cy;
4590     
4591     infoPtr->iTopMargin = default_top_margin(infoPtr);
4592     TOOLBAR_LayoutToolbar(hwnd);
4593     return TRUE;
4594 }
4595
4596
4597 static LRESULT
4598 TOOLBAR_SetButtonWidth (HWND hwnd, WPARAM wParam, LPARAM lParam)
4599 {
4600     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4601
4602     /* if setting to current values, ignore */
4603     if ((infoPtr->cxMin == (short)LOWORD(lParam)) &&
4604         (infoPtr->cxMax == (short)HIWORD(lParam))) {
4605         TRACE("matches current width, min=%d, max=%d, no recalc\n",
4606               infoPtr->cxMin, infoPtr->cxMax);
4607         return TRUE;
4608     }
4609
4610     /* save new values */
4611     infoPtr->cxMin = (short)LOWORD(lParam);
4612     infoPtr->cxMax = (short)HIWORD(lParam);
4613
4614     /* otherwise we need to recalc the toolbar and in some cases
4615        recalc the bounding rectangle (does DrawText w/ DT_CALCRECT
4616        which doesn't actually draw - GA). */
4617     TRACE("number of buttons %d, cx=%d, cy=%d, recalcing\n",
4618         infoPtr->nNumButtons, infoPtr->cxMin, infoPtr->cxMax);
4619
4620     TOOLBAR_CalcToolbar (hwnd);
4621
4622     InvalidateRect (hwnd, NULL, TRUE);
4623
4624     return TRUE;
4625 }
4626
4627
4628 static LRESULT
4629 TOOLBAR_SetCmdId (HWND hwnd, WPARAM wParam, LPARAM lParam)
4630 {
4631     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4632     INT nIndex = (INT)wParam;
4633
4634     if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
4635         return FALSE;
4636
4637     infoPtr->buttons[nIndex].idCommand = (INT)lParam;
4638
4639     if (infoPtr->hwndToolTip) {
4640
4641         FIXME("change tool tip!\n");
4642
4643     }
4644
4645     return TRUE;
4646 }
4647
4648
4649 static LRESULT
4650 TOOLBAR_SetDisabledImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
4651 {
4652     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4653     HIMAGELIST himl = (HIMAGELIST)lParam;
4654     HIMAGELIST himlTemp;
4655     INT id = 0;
4656
4657     if (infoPtr->iVersion >= 5)
4658         id = wParam;
4659
4660     himlTemp = TOOLBAR_InsertImageList(&infoPtr->himlDis, 
4661         &infoPtr->cimlDis, himl, id);
4662
4663     /* FIXME: redraw ? */
4664
4665     return (LRESULT)himlTemp;
4666 }
4667
4668
4669 static LRESULT
4670 TOOLBAR_SetDrawTextFlags (HWND hwnd, WPARAM wParam, LPARAM lParam)
4671 {
4672     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4673     DWORD dwTemp;
4674
4675     TRACE("hwnd = %p, dwMask = 0x%08x, dwDTFlags = 0x%08x\n", hwnd, (DWORD)wParam, (DWORD)lParam);
4676
4677     dwTemp = infoPtr->dwDTFlags;
4678     infoPtr->dwDTFlags =
4679         (infoPtr->dwDTFlags & (DWORD)wParam) | (DWORD)lParam;
4680
4681     return (LRESULT)dwTemp;
4682 }
4683
4684 /* This function differs a bit from what MSDN says it does:
4685  * 1. lParam contains extended style flags to OR with current style
4686  *  (MSDN isn't clear on the OR bit)
4687  * 2. wParam appears to contain extended style flags to be reset
4688  *  (MSDN says that this parameter is reserved)
4689  */
4690 static LRESULT
4691 TOOLBAR_SetExtendedStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
4692 {
4693     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4694     DWORD dwTemp;
4695
4696     dwTemp = infoPtr->dwExStyle;
4697     infoPtr->dwExStyle &= ~wParam;
4698     infoPtr->dwExStyle |= (DWORD)lParam;
4699
4700     TRACE("new style 0x%08x\n", infoPtr->dwExStyle);
4701
4702     if (infoPtr->dwExStyle & ~TBSTYLE_EX_ALL)
4703         FIXME("Unknown Toolbar Extended Style 0x%08x. Please report.\n",
4704               (infoPtr->dwExStyle & ~TBSTYLE_EX_ALL));
4705
4706     TOOLBAR_CalcToolbar (hwnd);
4707
4708     TOOLBAR_AutoSize(hwnd);
4709
4710     InvalidateRect(hwnd, NULL, TRUE);
4711
4712     return (LRESULT)dwTemp;
4713 }
4714
4715
4716 static LRESULT
4717 TOOLBAR_SetHotImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
4718 {
4719     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
4720     HIMAGELIST himlTemp;
4721     HIMAGELIST himl = (HIMAGELIST)lParam;
4722     INT id = 0;
4723
4724     if (infoPtr->iVersion >= 5)
4725         id = wParam;
4726
4727     TRACE("hwnd = %p, himl = %p, id = %d\n", hwnd, himl, id);
4728
4729     himlTemp = TOOLBAR_InsertImageList(&infoPtr->himlHot, 
4730         &infoPtr->cimlHot, himl, id);
4731
4732     /* FIXME: redraw ? */
4733
4734     return (LRESULT)himlTemp;
4735 }
4736
4737
4738 /* Makes previous hot button no longer hot, makes the specified
4739  * button hot and sends appropriate notifications. dwReason is one or
4740  * more HICF_ flags. Specify nHit < 0 to make no buttons hot.
4741  * NOTE 1: this function does not validate nHit
4742  * NOTE 2: the name of this function is completely made up and
4743  * not based on any documentation from Microsoft. */
4744 static void
4745 TOOLBAR_SetHotItemEx (TOOLBAR_INFO *infoPtr, INT nHit, DWORD dwReason)
4746 {
4747     if (infoPtr->nHotItem != nHit)
4748     {
4749         NMTBHOTITEM nmhotitem;
4750         TBUTTON_INFO *btnPtr = NULL, *oldBtnPtr = NULL;
4751
4752         nmhotitem.dwFlags = dwReason;
4753         if(infoPtr->nHotItem >= 0)
4754         {
4755             oldBtnPtr = &infoPtr->buttons[infoPtr->nHotItem];
4756             nmhotitem.idOld = oldBtnPtr->idCommand;
4757         }
4758         else
4759         {
4760             nmhotitem.dwFlags |= HICF_ENTERING;
4761             nmhotitem.idOld = 0;
4762         }
4763
4764         if (nHit >= 0)
4765         {
4766             btnPtr = &infoPtr->buttons[nHit];
4767             nmhotitem.idNew = btnPtr->idCommand;
4768         }
4769         else
4770         {
4771             nmhotitem.dwFlags |= HICF_LEAVING;
4772             nmhotitem.idNew = 0;
4773         }
4774
4775         /* now change the hot and invalidate the old and new buttons - if the
4776          * parent agrees */
4777         if (!TOOLBAR_SendNotify(&nmhotitem.hdr, infoPtr, TBN_HOTITEMCHANGE))
4778         {
4779             if (oldBtnPtr) {
4780                 oldBtnPtr->bHot = FALSE;
4781                 InvalidateRect(infoPtr->hwndSelf, &oldBtnPtr->rect, TRUE);
4782             }
4783             /* setting disabled buttons as hot fails even if the notify contains the button id */
4784             if (btnPtr && (btnPtr->fsState & TBSTATE_ENABLED)) {
4785                 btnPtr->bHot = TRUE;
4786                 InvalidateRect(infoPtr->hwndSelf, &btnPtr->rect, TRUE);
4787                 infoPtr->nHotItem = nHit;
4788             }
4789             else
4790                 infoPtr->nHotItem = -1;            
4791         }
4792     }
4793 }
4794
4795 static LRESULT
4796 TOOLBAR_SetHotItem (HWND hwnd, WPARAM wParam)
4797 {
4798     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
4799     INT nOldHotItem = infoPtr->nHotItem;
4800
4801     TRACE("hwnd = %p, nHit = %d\n", hwnd, (INT)wParam);
4802
4803     if ((INT)wParam > infoPtr->nNumButtons)
4804         return infoPtr->nHotItem;
4805     
4806     if ((INT)wParam < 0)
4807         wParam = -1;
4808
4809     /* NOTE: an application can still remove the hot item even if anchor
4810      * highlighting is enabled */
4811
4812     TOOLBAR_SetHotItemEx(infoPtr, wParam, HICF_OTHER);
4813
4814     if (nOldHotItem < 0)
4815         return -1;
4816
4817     return (LRESULT)nOldHotItem;
4818 }
4819
4820
4821 static LRESULT
4822 TOOLBAR_SetImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
4823 {
4824     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4825     HIMAGELIST himlTemp;
4826     HIMAGELIST himl = (HIMAGELIST)lParam;
4827     INT i, id = 0;
4828
4829     if (infoPtr->iVersion >= 5)
4830         id = wParam;
4831
4832     himlTemp = TOOLBAR_InsertImageList(&infoPtr->himlDef, 
4833         &infoPtr->cimlDef, himl, id);
4834
4835     infoPtr->nNumBitmaps = 0;
4836     for (i = 0; i < infoPtr->cimlDef; i++)
4837         infoPtr->nNumBitmaps += ImageList_GetImageCount(infoPtr->himlDef[i]->himl);
4838
4839     if (!ImageList_GetIconSize(himl, &infoPtr->nBitmapWidth,
4840             &infoPtr->nBitmapHeight))
4841     {
4842         infoPtr->nBitmapWidth = 1;
4843         infoPtr->nBitmapHeight = 1;
4844     }
4845     TOOLBAR_CalcToolbar(hwnd);
4846
4847     TRACE("hwnd %p, new himl=%p, id = %d, count=%d, bitmap w=%d, h=%d\n",
4848           hwnd, infoPtr->himlDef, id, infoPtr->nNumBitmaps,
4849           infoPtr->nBitmapWidth, infoPtr->nBitmapHeight);
4850
4851     InvalidateRect(hwnd, NULL, TRUE);
4852
4853     return (LRESULT)himlTemp;
4854 }
4855
4856
4857 static LRESULT
4858 TOOLBAR_SetIndent (HWND hwnd, WPARAM wParam, LPARAM lParam)
4859 {
4860     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4861
4862     infoPtr->nIndent = (INT)wParam;
4863
4864     TRACE("\n");
4865
4866     /* process only on indent changing */
4867     if(infoPtr->nIndent != (INT)wParam)
4868     {
4869         infoPtr->nIndent = (INT)wParam;
4870         TOOLBAR_CalcToolbar (hwnd);
4871         InvalidateRect(hwnd, NULL, FALSE);
4872     }
4873
4874     return TRUE;
4875 }
4876
4877
4878 static LRESULT
4879 TOOLBAR_SetInsertMark (HWND hwnd, WPARAM wParam, LPARAM lParam)
4880 {
4881     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4882     TBINSERTMARK *lptbim = (TBINSERTMARK*)lParam;
4883
4884     TRACE("hwnd = %p, lptbim = { %d, 0x%08x}\n", hwnd, lptbim->iButton, lptbim->dwFlags);
4885
4886     if ((lptbim->dwFlags & ~TBIMHT_AFTER) != 0)
4887     {
4888         FIXME("Unrecognized flag(s): 0x%08x\n", (lptbim->dwFlags & ~TBIMHT_AFTER));
4889         return 0;
4890     }
4891
4892     if ((lptbim->iButton == -1) || 
4893         ((lptbim->iButton < infoPtr->nNumButtons) &&
4894          (lptbim->iButton >= 0)))
4895     {
4896         infoPtr->tbim = *lptbim;
4897         /* FIXME: don't need to update entire toolbar */
4898         InvalidateRect(hwnd, NULL, TRUE);
4899     }
4900     else
4901         ERR("Invalid button index %d\n", lptbim->iButton);
4902
4903     return 0;
4904 }
4905
4906
4907 static LRESULT
4908 TOOLBAR_SetInsertMarkColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
4909 {
4910     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4911
4912     infoPtr->clrInsertMark = (COLORREF)lParam;
4913
4914     /* FIXME: don't need to update entire toolbar */
4915     InvalidateRect(hwnd, NULL, TRUE);
4916
4917     return 0;
4918 }
4919
4920
4921 static LRESULT
4922 TOOLBAR_SetMaxTextRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
4923 {
4924     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4925
4926     infoPtr->nMaxTextRows = (INT)wParam;
4927
4928     TOOLBAR_CalcToolbar(hwnd);
4929     return TRUE;
4930 }
4931
4932
4933 /* MSDN gives slightly wrong info on padding.
4934  * 1. It is not only used on buttons with the BTNS_AUTOSIZE style
4935  * 2. It is not used to create a blank area between the edge of the button
4936  *    and the text or image if TBSTYLE_LIST is set. It is used to control
4937  *    the gap between the image and text. 
4938  * 3. It is not applied to both sides. If TBSTYLE_LIST is set it is used 
4939  *    to control the bottom and right borders [with the border being
4940  *    szPadding.cx - (GetSystemMetrics(SM_CXEDGE)+1)], otherwise the padding
4941  *    is shared evenly on both sides of the button.
4942  * See blueprints in comments above TOOLBAR_MeasureButton for more info.
4943  */
4944 static LRESULT
4945 TOOLBAR_SetPadding (HWND hwnd, WPARAM wParam, LPARAM lParam)
4946 {
4947     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4948     DWORD  oldPad;
4949
4950     oldPad = MAKELONG(infoPtr->szPadding.cx, infoPtr->szPadding.cy);
4951     infoPtr->szPadding.cx = min(LOWORD((DWORD)lParam), GetSystemMetrics(SM_CXEDGE));
4952     infoPtr->szPadding.cy = min(HIWORD((DWORD)lParam), GetSystemMetrics(SM_CYEDGE));
4953     TRACE("cx=%d, cy=%d\n",
4954           infoPtr->szPadding.cx, infoPtr->szPadding.cy);
4955     return (LRESULT) oldPad;
4956 }
4957
4958
4959 static LRESULT
4960 TOOLBAR_SetParent (HWND hwnd, WPARAM wParam, LPARAM lParam)
4961 {
4962     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4963     HWND hwndOldNotify;
4964
4965     TRACE("\n");
4966
4967     hwndOldNotify = infoPtr->hwndNotify;
4968     infoPtr->hwndNotify = (HWND)wParam;
4969
4970     return (LRESULT)hwndOldNotify;
4971 }
4972
4973
4974 static LRESULT
4975 TOOLBAR_SetRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
4976 {
4977     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4978     LPRECT lprc = (LPRECT)lParam;
4979
4980     TRACE("\n");
4981
4982     if (LOWORD(wParam) > 1) {
4983         FIXME("multiple rows not supported!\n");
4984     }
4985
4986     if(infoPtr->nRows != LOWORD(wParam))
4987     {
4988         infoPtr->nRows = LOWORD(wParam);
4989
4990         /* recalculate toolbar */
4991         TOOLBAR_CalcToolbar (hwnd);
4992
4993         /* repaint toolbar */
4994         InvalidateRect(hwnd, NULL, TRUE);
4995     }
4996
4997     /* return bounding rectangle */
4998     if (lprc) {
4999         lprc->left   = infoPtr->rcBound.left;
5000         lprc->right  = infoPtr->rcBound.right;
5001         lprc->top    = infoPtr->rcBound.top;
5002         lprc->bottom = infoPtr->rcBound.bottom;
5003     }
5004
5005     return 0;
5006 }
5007
5008
5009 static LRESULT
5010 TOOLBAR_SetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
5011 {
5012     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5013     TBUTTON_INFO *btnPtr;
5014     INT nIndex;
5015
5016     nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
5017     if (nIndex == -1)
5018         return FALSE;
5019
5020     btnPtr = &infoPtr->buttons[nIndex];
5021
5022     /* if hidden state has changed the invalidate entire window and recalc */
5023     if ((btnPtr->fsState & TBSTATE_HIDDEN) != (LOWORD(lParam) & TBSTATE_HIDDEN)) {
5024         btnPtr->fsState = LOWORD(lParam);
5025         TOOLBAR_CalcToolbar (hwnd);
5026         InvalidateRect(hwnd, 0, TRUE);
5027         return TRUE;
5028     }
5029
5030     /* process state changing if current state doesn't match new state */
5031     if(btnPtr->fsState != LOWORD(lParam))
5032     {
5033         btnPtr->fsState = LOWORD(lParam);
5034         InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5035     }
5036
5037     return TRUE;
5038 }
5039
5040
5041 static LRESULT
5042 TOOLBAR_SetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
5043 {
5044     SetWindowLongW(hwnd, GWL_STYLE, lParam);
5045
5046     return TRUE;
5047 }
5048
5049
5050 static inline LRESULT
5051 TOOLBAR_SetToolTips (HWND hwnd, WPARAM wParam, LPARAM lParam)
5052 {
5053     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5054
5055     TRACE("hwnd=%p, hwndTooltip=%p, lParam=0x%lx\n", hwnd, (HWND)wParam, lParam);
5056
5057     infoPtr->hwndToolTip = (HWND)wParam;
5058     return 0;
5059 }
5060
5061
5062 static LRESULT
5063 TOOLBAR_SetUnicodeFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
5064 {
5065     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5066     BOOL bTemp;
5067
5068     TRACE("%s hwnd=%p\n",
5069            ((BOOL)wParam) ? "TRUE" : "FALSE", hwnd);
5070
5071     bTemp = infoPtr->bUnicode;
5072     infoPtr->bUnicode = (BOOL)wParam;
5073
5074     return bTemp;
5075 }
5076
5077
5078 static LRESULT
5079 TOOLBAR_GetColorScheme (HWND hwnd, LPCOLORSCHEME lParam)
5080 {
5081     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5082
5083     lParam->clrBtnHighlight = (infoPtr->clrBtnHighlight == CLR_DEFAULT) ?
5084                                comctl32_color.clrBtnHighlight :
5085                                infoPtr->clrBtnHighlight;
5086     lParam->clrBtnShadow = (infoPtr->clrBtnShadow == CLR_DEFAULT) ?
5087                            comctl32_color.clrBtnShadow : infoPtr->clrBtnShadow;
5088     return 1;
5089 }
5090
5091
5092 static LRESULT
5093 TOOLBAR_SetColorScheme (HWND hwnd, LPCOLORSCHEME lParam)
5094 {
5095     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5096
5097     TRACE("new colors Hl=%x Shd=%x, old colors Hl=%x Shd=%x\n",
5098           lParam->clrBtnHighlight, lParam->clrBtnShadow,
5099           infoPtr->clrBtnHighlight, infoPtr->clrBtnShadow);
5100
5101     infoPtr->clrBtnHighlight = lParam->clrBtnHighlight;
5102     infoPtr->clrBtnShadow = lParam->clrBtnShadow;
5103     InvalidateRect(hwnd, NULL, TRUE);
5104     return 0;
5105 }
5106
5107
5108 static LRESULT
5109 TOOLBAR_SetVersion (HWND hwnd, INT iVersion)
5110 {
5111     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5112     INT iOldVersion = infoPtr->iVersion;
5113
5114     infoPtr->iVersion = iVersion;
5115
5116     if (infoPtr->iVersion >= 5)
5117         TOOLBAR_SetUnicodeFormat(hwnd, (WPARAM)TRUE, (LPARAM)0);
5118
5119     return iOldVersion;
5120 }
5121
5122
5123 static LRESULT
5124 TOOLBAR_GetStringA (HWND hwnd, WPARAM wParam, LPARAM lParam)
5125 {
5126     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5127     WORD iString = HIWORD(wParam);
5128     WORD buffersize = LOWORD(wParam);
5129     LPSTR str = (LPSTR)lParam;
5130     LRESULT ret = -1;
5131
5132     TRACE("hwnd=%p, iString=%d, buffersize=%d, string=%p\n", hwnd, iString, buffersize, str);
5133
5134     if (iString < infoPtr->nNumStrings)
5135     {
5136         ret = WideCharToMultiByte(CP_ACP, 0, infoPtr->strings[iString], -1, str, buffersize, NULL, NULL);
5137
5138         TRACE("returning %s\n", debugstr_a(str));
5139     }
5140     else
5141         WARN("String index %d out of range (largest is %d)\n", iString, infoPtr->nNumStrings - 1);
5142
5143     return ret;
5144 }
5145
5146
5147 static LRESULT
5148 TOOLBAR_GetStringW (HWND hwnd, WPARAM wParam, LPARAM lParam)
5149 {
5150     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5151     WORD iString = HIWORD(wParam);
5152     WORD len = LOWORD(wParam)/sizeof(WCHAR) - 1;
5153     LPWSTR str = (LPWSTR)lParam;
5154     LRESULT ret = -1;
5155
5156     TRACE("hwnd=%p, iString=%d, buffersize=%d, string=%p\n", hwnd, iString, LOWORD(wParam), str);
5157
5158     if (iString < infoPtr->nNumStrings)
5159     {
5160         len = min(len, strlenW(infoPtr->strings[iString]));
5161         ret = (len+1)*sizeof(WCHAR);
5162         memcpy(str, infoPtr->strings[iString], ret);
5163         str[len] = '\0';
5164
5165         TRACE("returning %s\n", debugstr_w(str));
5166     }
5167     else
5168         ERR("String index %d out of range (largest is %d)\n", iString, infoPtr->nNumStrings - 1);
5169
5170     return ret;
5171 }
5172
5173 /* UNDOCUMENTED MESSAGE: This appears to set some kind of size. Perhaps it
5174  * is the maximum size of the toolbar? */
5175 static LRESULT TOOLBAR_Unkwn45D(HWND hwnd, WPARAM wParam, LPARAM lParam)
5176 {
5177     SIZE * pSize = (SIZE*)lParam;
5178     FIXME("hwnd=%p, wParam=0x%08x, size.cx=%d, size.cy=%d stub!\n", hwnd, wParam, pSize->cx, pSize->cy);
5179     return 0;
5180 }
5181
5182
5183 /* UNDOCUMENTED MESSAGE: This is an extended version of the
5184  * TB_SETHOTITEM message. It allows the caller to specify a reason why the
5185  * hot item changed (rather than just the HICF_OTHER that TB_SETHOTITEM
5186  * sends). */
5187 static LRESULT
5188 TOOLBAR_Unkwn45E (HWND hwnd, WPARAM wParam, LPARAM lParam)
5189 {
5190     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5191     INT nOldHotItem = infoPtr->nHotItem;
5192
5193     TRACE("old item=%d, new item=%d, flags=%08x\n",
5194           nOldHotItem, infoPtr->nHotItem, (DWORD)lParam);
5195
5196     if ((INT) wParam < 0 || (INT)wParam > infoPtr->nNumButtons)
5197         wParam = -1;
5198
5199     /* NOTE: an application can still remove the hot item even if anchor
5200      * highlighting is enabled */
5201
5202     TOOLBAR_SetHotItemEx(infoPtr, wParam, lParam);
5203
5204     GetFocus();
5205
5206     return (nOldHotItem < 0) ? -1 : (LRESULT)nOldHotItem;
5207 }
5208
5209 /* UNDOCUMENTED MESSAGE: This sets the toolbar global iListGap parameter
5210  * which controls the amount of spacing between the image and the text
5211  * of buttons for TBSTYLE_LIST toolbars. */
5212 static LRESULT TOOLBAR_Unkwn460(HWND hwnd, WPARAM wParam, LPARAM lParam)
5213 {
5214     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5215
5216     TRACE("hwnd=%p iListGap=%d\n", hwnd, wParam);
5217     
5218     if (lParam != 0)
5219         FIXME("lParam = 0x%08lx. Please report\n", lParam);
5220     
5221     infoPtr->iListGap = (INT)wParam;
5222
5223     InvalidateRect(hwnd, NULL, TRUE);
5224
5225     return 0;
5226 }
5227
5228 /* UNDOCUMENTED MESSAGE: This returns the number of maximum number
5229  * of image lists associated with the various states. */
5230 static LRESULT TOOLBAR_Unkwn462(HWND hwnd, WPARAM wParam, LPARAM lParam)
5231 {
5232     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5233
5234     TRACE("hwnd=%p wParam %08x lParam %08lx\n", hwnd, wParam, lParam);
5235
5236     return max(infoPtr->cimlDef, max(infoPtr->cimlHot, infoPtr->cimlDis));
5237 }
5238
5239 static LRESULT
5240 TOOLBAR_Unkwn463 (HWND hwnd, WPARAM wParam, LPARAM lParam)
5241 {
5242     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5243     LPSIZE lpsize = (LPSIZE)lParam;
5244
5245     if (lpsize == NULL)
5246         return FALSE;
5247
5248     /*
5249      * Testing shows the following:
5250      *   wParam    = 0 adjust cx value
5251      *             = 1 set cy value to max size.
5252      *   lParam    pointer to SIZE structure
5253      *
5254      */
5255     TRACE("[0463] wParam %d, lParam 0x%08lx -> 0x%08x 0x%08x\n",
5256           wParam, lParam, lpsize->cx, lpsize->cy);
5257
5258     switch(wParam) {
5259     case 0:
5260         if (lpsize->cx == -1) {
5261             /* **** this is wrong, native measures each button and sets it */
5262             lpsize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
5263         }
5264         else if(HIWORD(lpsize->cx)) {
5265             RECT rc;
5266             HWND hwndParent = GetParent(hwnd);
5267
5268             GetWindowRect(hwnd, &rc);
5269             MapWindowPoints(0, hwndParent, (LPPOINT)&rc, 2);
5270             TRACE("mapped to (%d,%d)-(%d,%d)\n",
5271                 rc.left, rc.top, rc.right, rc.bottom);
5272             lpsize->cx = max(rc.right-rc.left,
5273                              infoPtr->rcBound.right - infoPtr->rcBound.left);
5274         }
5275         else {
5276             lpsize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
5277         }
5278         break;
5279     case 1:
5280         lpsize->cy = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
5281         break;
5282     default:
5283         ERR("Unknown wParam %d for Toolbar message [0463]. Please report\n",
5284             wParam);
5285         return 0;
5286     }
5287     TRACE("[0463] set to -> 0x%08x 0x%08x\n",
5288           lpsize->cx, lpsize->cy);
5289     return 1;
5290 }
5291
5292 static LRESULT TOOLBAR_Unkwn464(HWND hwnd, WPARAM wParam, LPARAM lParam)
5293 {
5294     FIXME("hwnd=%p wParam %08x lParam %08lx\n", hwnd, wParam, lParam);
5295
5296     InvalidateRect(hwnd, NULL, TRUE);
5297     return 1;
5298 }
5299
5300
5301 static LRESULT
5302 TOOLBAR_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
5303 {
5304     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5305     DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
5306     LOGFONTW logFont;
5307
5308     TRACE("hwnd = %p\n", hwnd);
5309
5310     /* initialize info structure */
5311     infoPtr->nButtonWidth = 23;
5312     infoPtr->nButtonHeight = 22;
5313     infoPtr->nBitmapHeight = 16;
5314     infoPtr->nBitmapWidth = 16;
5315
5316     infoPtr->nMaxTextRows = 1;
5317     infoPtr->cxMin = -1;
5318     infoPtr->cxMax = -1;
5319     infoPtr->nNumBitmaps = 0;
5320     infoPtr->nNumStrings = 0;
5321
5322     infoPtr->bCaptured = FALSE;
5323     infoPtr->nButtonDown = -1;
5324     infoPtr->nButtonDrag = -1;
5325     infoPtr->nOldHit = -1;
5326     infoPtr->nHotItem = -1;
5327     infoPtr->hwndNotify = ((LPCREATESTRUCTW)lParam)->hwndParent;
5328     infoPtr->dwDTFlags = (dwStyle & TBSTYLE_LIST) ? DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS: DT_CENTER | DT_END_ELLIPSIS;
5329     infoPtr->bAnchor = FALSE; /* no anchor highlighting */
5330     infoPtr->bDragOutSent = FALSE;
5331     infoPtr->iVersion = 0;
5332     infoPtr->hwndSelf = hwnd;
5333     infoPtr->bDoRedraw = TRUE;
5334     infoPtr->clrBtnHighlight = CLR_DEFAULT;
5335     infoPtr->clrBtnShadow = CLR_DEFAULT;
5336     infoPtr->szPadding.cx = DEFPAD_CX;
5337     infoPtr->szPadding.cy = DEFPAD_CY;
5338     infoPtr->iListGap = DEFLISTGAP;
5339     infoPtr->iTopMargin = default_top_margin(infoPtr);
5340     infoPtr->dwStyle = dwStyle;
5341     infoPtr->tbim.iButton = -1;
5342     GetClientRect(hwnd, &infoPtr->client_rect);
5343     infoPtr->bUnicode = infoPtr->hwndNotify && 
5344         (NFR_UNICODE == SendMessageW(hwnd, WM_NOTIFYFORMAT, (WPARAM)hwnd, (LPARAM)NF_REQUERY));
5345     infoPtr->hwndToolTip = NULL; /* if needed the tooltip control will be created after a WM_MOUSEMOVE */
5346
5347     SystemParametersInfoW (SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
5348     infoPtr->hFont = infoPtr->hDefaultFont = CreateFontIndirectW (&logFont);
5349     
5350     OpenThemeData (hwnd, themeClass);
5351
5352     TOOLBAR_CheckStyle (hwnd, dwStyle);
5353
5354     return 0;
5355 }
5356
5357
5358 static LRESULT
5359 TOOLBAR_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
5360 {
5361     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5362
5363     /* delete tooltip control */
5364     if (infoPtr->hwndToolTip)
5365         DestroyWindow (infoPtr->hwndToolTip);
5366
5367     /* delete temporary buffer for tooltip text */
5368     Free (infoPtr->pszTooltipText);
5369     Free (infoPtr->bitmaps);            /* bitmaps list */
5370
5371     /* delete button data */
5372     Free (infoPtr->buttons);
5373
5374     /* delete strings */
5375     if (infoPtr->strings) {
5376         INT i;
5377         for (i = 0; i < infoPtr->nNumStrings; i++)
5378             if (infoPtr->strings[i])
5379                 Free (infoPtr->strings[i]);
5380
5381         Free (infoPtr->strings);
5382     }
5383
5384     /* destroy internal image list */
5385     if (infoPtr->himlInt)
5386         ImageList_Destroy (infoPtr->himlInt);
5387
5388         TOOLBAR_DeleteImageList(&infoPtr->himlDef, &infoPtr->cimlDef);
5389         TOOLBAR_DeleteImageList(&infoPtr->himlDis, &infoPtr->cimlDis);
5390         TOOLBAR_DeleteImageList(&infoPtr->himlHot, &infoPtr->cimlHot);
5391
5392     /* delete default font */
5393     DeleteObject (infoPtr->hDefaultFont);
5394         
5395     CloseThemeData (GetWindowTheme (hwnd));
5396
5397     /* free toolbar info data */
5398     Free (infoPtr);
5399     SetWindowLongPtrW (hwnd, 0, 0);
5400
5401     return 0;
5402 }
5403
5404
5405 static LRESULT
5406 TOOLBAR_EraseBackground (HWND hwnd, WPARAM wParam, LPARAM lParam)
5407 {
5408     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5409     NMTBCUSTOMDRAW tbcd;
5410     INT ret = FALSE;
5411     DWORD ntfret;
5412     HTHEME theme = GetWindowTheme (hwnd);
5413     DWORD dwEraseCustDraw = 0;
5414
5415     /* the app has told us not to redraw the toolbar */
5416     if (!infoPtr->bDoRedraw)
5417         return FALSE;
5418
5419     if (infoPtr->dwStyle & TBSTYLE_CUSTOMERASE) {
5420         ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
5421         tbcd.nmcd.dwDrawStage = CDDS_PREERASE;
5422         tbcd.nmcd.hdc = (HDC)wParam;
5423         ntfret = TOOLBAR_SendNotify (&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
5424         dwEraseCustDraw = ntfret & 0xffff;
5425
5426         /* FIXME: in general the return flags *can* be or'ed together */
5427         switch (dwEraseCustDraw)
5428             {
5429             case CDRF_DODEFAULT:
5430                 break;
5431             case CDRF_SKIPDEFAULT:
5432                 return TRUE;
5433             default:
5434                 FIXME("[%p] response %d not handled to NM_CUSTOMDRAW (CDDS_PREERASE)\n",
5435                       hwnd, ntfret);
5436             }
5437     }
5438
5439     /* If the toolbar is "transparent" then pass the WM_ERASEBKGND up
5440      * to my parent for processing.
5441      */
5442     if (theme || (infoPtr->dwStyle & TBSTYLE_TRANSPARENT)) {
5443         POINT pt, ptorig;
5444         HDC hdc = (HDC)wParam;
5445         HWND parent;
5446
5447         pt.x = 0;
5448         pt.y = 0;
5449         parent = GetParent(hwnd);
5450         MapWindowPoints(hwnd, parent, &pt, 1);
5451         OffsetWindowOrgEx (hdc, pt.x, pt.y, &ptorig);
5452         ret = SendMessageW (parent, WM_ERASEBKGND, wParam, lParam);
5453         SetWindowOrgEx (hdc, ptorig.x, ptorig.y, 0);
5454     }
5455     if (!ret)
5456         ret = DefWindowProcW (hwnd, WM_ERASEBKGND, wParam, lParam);
5457
5458     if (dwEraseCustDraw & CDRF_NOTIFYPOSTERASE) {
5459         ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
5460         tbcd.nmcd.dwDrawStage = CDDS_POSTERASE;
5461         tbcd.nmcd.hdc = (HDC)wParam;
5462         ntfret = TOOLBAR_SendNotify (&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
5463         dwEraseCustDraw = ntfret & 0xffff;
5464         switch (dwEraseCustDraw)
5465             {
5466             case CDRF_DODEFAULT:
5467                 break;
5468             case CDRF_SKIPDEFAULT:
5469                 return TRUE;
5470             default:
5471                 FIXME("[%p] response %d not handled to NM_CUSTOMDRAW (CDDS_POSTERASE)\n",
5472                       hwnd, ntfret);
5473             }
5474     }
5475     return ret;
5476 }
5477
5478
5479 static LRESULT
5480 TOOLBAR_GetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
5481 {
5482     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5483
5484     return (LRESULT)infoPtr->hFont;
5485 }
5486
5487
5488 static void
5489 TOOLBAR_SetRelativeHotItem(TOOLBAR_INFO *infoPtr, INT iDirection, DWORD dwReason)
5490 {
5491     INT i;
5492     INT nNewHotItem = infoPtr->nHotItem;
5493
5494     for (i = 0; i < infoPtr->nNumButtons; i++)
5495     {
5496         /* did we wrap? */
5497         if ((nNewHotItem + iDirection < 0) ||
5498             (nNewHotItem + iDirection >= infoPtr->nNumButtons))
5499         {
5500             NMTBWRAPHOTITEM nmtbwhi;
5501             nmtbwhi.idNew = infoPtr->buttons[nNewHotItem].idCommand;
5502             nmtbwhi.iDirection = iDirection;
5503             nmtbwhi.dwReason = dwReason;
5504     
5505             if (TOOLBAR_SendNotify(&nmtbwhi.hdr, infoPtr, TBN_WRAPHOTITEM))
5506                 return;
5507         }
5508
5509         nNewHotItem += iDirection;
5510         nNewHotItem = (nNewHotItem + infoPtr->nNumButtons) % infoPtr->nNumButtons;
5511
5512         if ((infoPtr->buttons[nNewHotItem].fsState & TBSTATE_ENABLED) &&
5513             !(infoPtr->buttons[nNewHotItem].fsStyle & BTNS_SEP))
5514         {
5515             TOOLBAR_SetHotItemEx(infoPtr, nNewHotItem, dwReason);
5516             break;
5517         }
5518     }
5519 }
5520
5521 static LRESULT
5522 TOOLBAR_KeyDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
5523 {
5524     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5525     NMKEY nmkey;
5526
5527     nmkey.nVKey = (UINT)wParam;
5528     nmkey.uFlags = HIWORD(lParam);
5529
5530     if (TOOLBAR_SendNotify(&nmkey.hdr, infoPtr, NM_KEYDOWN))
5531         return DefWindowProcW(hwnd, WM_KEYDOWN, wParam, lParam);
5532
5533     switch ((UINT)wParam)
5534     {
5535     case VK_LEFT:
5536     case VK_UP:
5537         TOOLBAR_SetRelativeHotItem(infoPtr, -1, HICF_ARROWKEYS);
5538         break;
5539     case VK_RIGHT:
5540     case VK_DOWN:
5541         TOOLBAR_SetRelativeHotItem(infoPtr, 1, HICF_ARROWKEYS);
5542         break;
5543     case VK_SPACE:
5544     case VK_RETURN:
5545         if ((infoPtr->nHotItem >= 0) &&
5546             (infoPtr->buttons[infoPtr->nHotItem].fsState & TBSTATE_ENABLED))
5547         {
5548             SendMessageW (infoPtr->hwndNotify, WM_COMMAND,
5549                 MAKEWPARAM(infoPtr->buttons[infoPtr->nHotItem].idCommand, BN_CLICKED),
5550                 (LPARAM)hwnd);
5551         }
5552         break;
5553     }
5554
5555     return 0;
5556 }
5557
5558
5559 static LRESULT
5560 TOOLBAR_LButtonDblClk (HWND hwnd, WPARAM wParam, LPARAM lParam)
5561 {
5562     POINT pt;
5563     INT   nHit;
5564
5565     pt.x = (short)LOWORD(lParam);
5566     pt.y = (short)HIWORD(lParam);
5567     nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
5568
5569     if (nHit >= 0)
5570         TOOLBAR_LButtonDown (hwnd, wParam, lParam);
5571     else if (GetWindowLongW (hwnd, GWL_STYLE) & CCS_ADJUSTABLE)
5572         TOOLBAR_Customize (hwnd);
5573
5574     return 0;
5575 }
5576
5577
5578 static LRESULT
5579 TOOLBAR_LButtonDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
5580 {
5581     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5582     TBUTTON_INFO *btnPtr;
5583     POINT pt;
5584     INT   nHit;
5585     NMTOOLBARA nmtb;
5586     NMMOUSE nmmouse;
5587     BOOL bDragKeyPressed;
5588
5589     TRACE("\n");
5590
5591     if (infoPtr->dwStyle & TBSTYLE_ALTDRAG)
5592         bDragKeyPressed = (GetKeyState(VK_MENU) < 0);
5593     else
5594         bDragKeyPressed = (wParam & MK_SHIFT);
5595
5596     if (infoPtr->hwndToolTip)
5597         TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
5598                             WM_LBUTTONDOWN, wParam, lParam);
5599
5600     pt.x = (short)LOWORD(lParam);
5601     pt.y = (short)HIWORD(lParam);
5602     nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
5603
5604     btnPtr = &infoPtr->buttons[nHit];
5605
5606     if ((nHit >= 0) && bDragKeyPressed && (infoPtr->dwStyle & CCS_ADJUSTABLE))
5607     {
5608         infoPtr->nButtonDrag = nHit;
5609         SetCapture (hwnd);
5610         
5611         /* If drag cursor has not been loaded, load it.
5612          * Note: it doesn't need to be freed */
5613         if (!hCursorDrag)
5614             hCursorDrag = LoadCursorW(COMCTL32_hModule, (LPCWSTR)IDC_MOVEBUTTON);
5615         SetCursor(hCursorDrag);
5616     }
5617     else if (nHit >= 0)
5618     {
5619         RECT arrowRect;
5620         infoPtr->nOldHit = nHit;
5621
5622         CopyRect(&arrowRect, &btnPtr->rect);
5623         arrowRect.left = max(btnPtr->rect.left, btnPtr->rect.right - DDARROW_WIDTH);
5624
5625         /* for EX_DRAWDDARROWS style,  click must be in the drop-down arrow rect */
5626         if ((btnPtr->fsState & TBSTATE_ENABLED) && 
5627              ((btnPtr->fsStyle & BTNS_WHOLEDROPDOWN) ||
5628               ((btnPtr->fsStyle & BTNS_DROPDOWN) &&
5629                ((TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle) && PtInRect(&arrowRect, pt)) ||
5630                (!TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle))))))
5631         {
5632             LRESULT res;
5633
5634             /* draw in pressed state */
5635             if (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN)
5636                 btnPtr->fsState |= TBSTATE_PRESSED;
5637             else
5638                 btnPtr->bDropDownPressed = TRUE;
5639             RedrawWindow(hwnd,&btnPtr->rect,0,
5640                         RDW_ERASE|RDW_INVALIDATE|RDW_UPDATENOW);
5641
5642             memset(&nmtb, 0, sizeof(nmtb));
5643             nmtb.iItem = btnPtr->idCommand;
5644             nmtb.rcButton = btnPtr->rect;
5645             res = TOOLBAR_SendNotify ((NMHDR *) &nmtb, infoPtr,
5646                                   TBN_DROPDOWN);
5647             TRACE("TBN_DROPDOWN responded with %ld\n", res);
5648
5649             if (res != TBDDRET_TREATPRESSED)
5650             {
5651                 MSG msg;
5652
5653                 /* redraw button in unpressed state */
5654                 if (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN)
5655                     btnPtr->fsState &= ~TBSTATE_PRESSED;
5656                 else
5657                     btnPtr->bDropDownPressed = FALSE;
5658                 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5659
5660                 /* find and set hot item
5661                  * NOTE: native doesn't do this, but that is a bug */
5662                 GetCursorPos(&pt);
5663                 ScreenToClient(hwnd, &pt);
5664                 nHit = TOOLBAR_InternalHitTest(hwnd, &pt);
5665                 if (!infoPtr->bAnchor || (nHit >= 0))
5666                     TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5667                 
5668                 /* remove any left mouse button down or double-click messages
5669                  * so that we can get a toggle effect on the button */
5670                 while (PeekMessageW(&msg, hwnd, WM_LBUTTONDOWN, WM_LBUTTONDOWN, PM_REMOVE) ||
5671                        PeekMessageW(&msg, hwnd, WM_LBUTTONDBLCLK, WM_LBUTTONDBLCLK, PM_REMOVE))
5672                     ;
5673
5674                 return 0;
5675             }
5676             /* otherwise drop through and process as pushed */
5677         }
5678         infoPtr->bCaptured = TRUE;
5679         infoPtr->nButtonDown = nHit;
5680         infoPtr->bDragOutSent = FALSE;
5681
5682         btnPtr->fsState |= TBSTATE_PRESSED;
5683
5684         TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5685
5686         if (btnPtr->fsState & TBSTATE_ENABLED)
5687             InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5688         UpdateWindow(hwnd);
5689         SetCapture (hwnd);
5690     }
5691
5692     if (nHit >=0)
5693     {
5694         memset(&nmtb, 0, sizeof(nmtb));
5695         nmtb.iItem = btnPtr->idCommand;
5696         TOOLBAR_SendNotify((NMHDR *)&nmtb, infoPtr, TBN_BEGINDRAG);
5697     }
5698
5699     nmmouse.dwHitInfo = nHit;
5700
5701     /* !!! Undocumented - sends NM_LDOWN with the NMMOUSE structure. */
5702     if (nHit < 0)
5703         nmmouse.dwItemSpec = -1;
5704     else
5705     {
5706         nmmouse.dwItemSpec = infoPtr->buttons[nmmouse.dwHitInfo].idCommand;
5707         nmmouse.dwItemData = infoPtr->buttons[nmmouse.dwHitInfo].dwData;
5708     }
5709
5710     ClientToScreen(hwnd, &pt); 
5711     nmmouse.pt = pt;
5712
5713     if (!TOOLBAR_SendNotify(&nmmouse.hdr, infoPtr, NM_LDOWN))
5714         return DefWindowProcW(hwnd, WM_LBUTTONDOWN, wParam, lParam);
5715
5716     return 0;
5717 }
5718
5719 static LRESULT
5720 TOOLBAR_LButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
5721 {
5722     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5723     TBUTTON_INFO *btnPtr;
5724     POINT pt;
5725     INT   nHit;
5726     INT   nOldIndex = -1;
5727     BOOL  bSendMessage = TRUE;
5728     NMHDR hdr;
5729     NMMOUSE nmmouse;
5730     NMTOOLBARA nmtb;
5731
5732     if (infoPtr->hwndToolTip)
5733         TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
5734                             WM_LBUTTONUP, wParam, lParam);
5735
5736     pt.x = (short)LOWORD(lParam);
5737     pt.y = (short)HIWORD(lParam);
5738     nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
5739
5740     if (!infoPtr->bAnchor || (nHit >= 0))
5741         TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5742
5743     if (infoPtr->nButtonDrag >= 0) {
5744         RECT rcClient;
5745         NMHDR hdr;
5746
5747         btnPtr = &infoPtr->buttons[infoPtr->nButtonDrag];
5748         ReleaseCapture();
5749         /* reset cursor */
5750         SetCursor(LoadCursorW(NULL, (LPCWSTR)IDC_ARROW));
5751
5752         GetClientRect(hwnd, &rcClient);
5753         if (PtInRect(&rcClient, pt))
5754         {
5755             INT nButton = -1;
5756             if (nHit >= 0)
5757                 nButton = nHit;
5758             else if (nHit < -1)
5759                 nButton = -nHit;
5760             else if ((nHit == -1) && PtInRect(&infoPtr->buttons[-nHit].rect, pt))
5761                 nButton = -nHit;
5762
5763             if (nButton == infoPtr->nButtonDrag)
5764             {
5765                 /* if the button is moved sightly left and we have a
5766                  * separator there then remove it */
5767                 if (pt.x < (btnPtr->rect.left + (btnPtr->rect.right - btnPtr->rect.left)/2))
5768                 {
5769                     if ((nButton > 0) && (infoPtr->buttons[nButton-1].fsStyle & BTNS_SEP))
5770                         TOOLBAR_DeleteButton(hwnd, nButton - 1, 0);
5771                 }
5772                 else /* else insert a separator before the dragged button */
5773                 {
5774                     TBBUTTON tbb;
5775                     memset(&tbb, 0, sizeof(tbb));
5776                     tbb.fsStyle = BTNS_SEP;
5777                     tbb.iString = -1;
5778                     TOOLBAR_InsertButtonT(hwnd, nButton, (LPARAM)&tbb, TRUE);
5779                 }
5780             }
5781             else
5782             {
5783                 if (nButton == -1)
5784                 {
5785                     if ((infoPtr->nNumButtons > 0) && (pt.x < infoPtr->buttons[0].rect.left))
5786                         TOOLBAR_MoveButton(hwnd, infoPtr->nButtonDrag, 0);
5787                     else
5788                         TOOLBAR_MoveButton(hwnd, infoPtr->nButtonDrag, infoPtr->nNumButtons);
5789                 }
5790                 else
5791                     TOOLBAR_MoveButton(hwnd, infoPtr->nButtonDrag, nButton);
5792             }
5793         }
5794         else
5795         {
5796             TRACE("button %d dragged out of toolbar\n", infoPtr->nButtonDrag);
5797             TOOLBAR_DeleteButton(hwnd, (WPARAM)infoPtr->nButtonDrag, 0);
5798         }
5799
5800         /* button under cursor changed so need to re-set hot item */
5801         TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5802         infoPtr->nButtonDrag = -1;
5803
5804         TOOLBAR_SendNotify(&hdr, infoPtr, TBN_TOOLBARCHANGE);
5805     }
5806     else if (infoPtr->nButtonDown >= 0) {
5807         btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
5808         btnPtr->fsState &= ~TBSTATE_PRESSED;
5809
5810         if (btnPtr->fsStyle & BTNS_CHECK) {
5811                 if (btnPtr->fsStyle & BTNS_GROUP) {
5812                     nOldIndex = TOOLBAR_GetCheckedGroupButtonIndex (infoPtr,
5813                         nHit);
5814                     if (nOldIndex == nHit)
5815                         bSendMessage = FALSE;
5816                     if ((nOldIndex != nHit) &&
5817                         (nOldIndex != -1))
5818                         infoPtr->buttons[nOldIndex].fsState &= ~TBSTATE_CHECKED;
5819                     btnPtr->fsState |= TBSTATE_CHECKED;
5820                 }
5821                 else {
5822                     if (btnPtr->fsState & TBSTATE_CHECKED)
5823                         btnPtr->fsState &= ~TBSTATE_CHECKED;
5824                     else
5825                         btnPtr->fsState |= TBSTATE_CHECKED;
5826                 }
5827         }
5828
5829         if (nOldIndex != -1)
5830             InvalidateRect(hwnd, &infoPtr->buttons[nOldIndex].rect, TRUE);
5831
5832         /*
5833          * now we can ReleaseCapture, which triggers CAPTURECHANGED msg,
5834          * that resets bCaptured and btn TBSTATE_PRESSED flags,
5835          * and obliterates nButtonDown and nOldHit (see TOOLBAR_CaptureChanged)
5836          */
5837         if ((infoPtr->bCaptured) && (infoPtr->nButtonDown >= 0))
5838             ReleaseCapture ();
5839         infoPtr->nButtonDown = -1;
5840
5841         /* Issue NM_RELEASEDCAPTURE to parent to let him know it is released */
5842         TOOLBAR_SendNotify ((NMHDR *) &hdr, infoPtr,
5843                         NM_RELEASEDCAPTURE);
5844
5845         /* native issues TBN_ENDDRAG here, if _LBUTTONDOWN issued the
5846          * TBN_BEGINDRAG
5847          */
5848         memset(&nmtb, 0, sizeof(nmtb));
5849         nmtb.iItem = btnPtr->idCommand;
5850         TOOLBAR_SendNotify ((NMHDR *) &nmtb, infoPtr,
5851                         TBN_ENDDRAG);
5852
5853         if (btnPtr->fsState & TBSTATE_ENABLED)
5854         {
5855             SendMessageW (infoPtr->hwndNotify, WM_COMMAND,
5856               MAKEWPARAM(infoPtr->buttons[nHit].idCommand, BN_CLICKED), (LPARAM)hwnd);
5857         }
5858     }
5859
5860     /* !!! Undocumented - toolbar at 4.71 level and above sends
5861     * NM_CLICK with the NMMOUSE structure. */
5862     nmmouse.dwHitInfo = nHit;
5863
5864     if (nHit < 0)
5865         nmmouse.dwItemSpec = -1;
5866     else
5867     {
5868         nmmouse.dwItemSpec = infoPtr->buttons[nmmouse.dwHitInfo].idCommand;
5869         nmmouse.dwItemData = infoPtr->buttons[nmmouse.dwHitInfo].dwData;
5870     }
5871
5872     ClientToScreen(hwnd, &pt); 
5873     nmmouse.pt = pt;
5874
5875     if (!TOOLBAR_SendNotify((LPNMHDR)&nmmouse, infoPtr, NM_CLICK))
5876         return DefWindowProcW(hwnd, WM_LBUTTONUP, wParam, lParam);
5877
5878     return 0;
5879 }
5880
5881 static LRESULT
5882 TOOLBAR_RButtonUp( HWND hwnd, WPARAM wParam, LPARAM lParam)
5883 {
5884     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5885     INT nHit;
5886     NMMOUSE nmmouse;
5887     POINT pt;
5888
5889     pt.x = (short)LOWORD(lParam);
5890     pt.y = (short)HIWORD(lParam);
5891
5892     nHit = TOOLBAR_InternalHitTest(hwnd, &pt);
5893     nmmouse.dwHitInfo = nHit;
5894
5895     if (nHit < 0) {
5896         nmmouse.dwItemSpec = -1;
5897     } else {
5898         nmmouse.dwItemSpec = infoPtr->buttons[nmmouse.dwHitInfo].idCommand;
5899         nmmouse.dwItemData = infoPtr->buttons[nmmouse.dwHitInfo].dwData;
5900     }
5901
5902     ClientToScreen(hwnd, &pt); 
5903     nmmouse.pt = pt;
5904
5905     if (!TOOLBAR_SendNotify((LPNMHDR)&nmmouse, infoPtr, NM_RCLICK))
5906         return DefWindowProcW(hwnd, WM_RBUTTONUP, wParam, lParam);
5907
5908     return 0;
5909 }
5910
5911 static LRESULT
5912 TOOLBAR_RButtonDblClk( HWND hwnd, WPARAM wParam, LPARAM lParam)
5913 {
5914     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5915     NMHDR nmhdr;
5916
5917     if (!TOOLBAR_SendNotify(&nmhdr, infoPtr, NM_RDBLCLK))
5918         return DefWindowProcW(hwnd, WM_RBUTTONDBLCLK, wParam, lParam);
5919
5920     return 0;
5921 }
5922
5923 static LRESULT
5924 TOOLBAR_CaptureChanged(HWND hwnd)
5925 {
5926     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5927     TBUTTON_INFO *btnPtr;
5928
5929     infoPtr->bCaptured = FALSE;
5930
5931     if (infoPtr->nButtonDown >= 0)
5932     {
5933         btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
5934         btnPtr->fsState &= ~TBSTATE_PRESSED;
5935
5936         infoPtr->nOldHit = -1;
5937
5938         if (btnPtr->fsState & TBSTATE_ENABLED)
5939             InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5940     }
5941     return 0;
5942 }
5943
5944 static LRESULT
5945 TOOLBAR_MouseLeave (HWND hwnd, WPARAM wParam, LPARAM lParam)
5946 {
5947     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5948
5949     /* don't remove hot effects when in anchor highlighting mode or when a
5950      * drop-down button is pressed */
5951     if (infoPtr->nHotItem >= 0 && !infoPtr->bAnchor)
5952     {
5953         TBUTTON_INFO *hotBtnPtr = &infoPtr->buttons[infoPtr->nHotItem];
5954         if (!hotBtnPtr->bDropDownPressed)
5955             TOOLBAR_SetHotItemEx(infoPtr, TOOLBAR_NOWHERE, HICF_MOUSE);
5956     }
5957
5958     if (infoPtr->nOldHit < 0)
5959       return TRUE;
5960
5961     /* If the last button we were over is depressed then make it not */
5962     /* depressed and redraw it */
5963     if(infoPtr->nOldHit == infoPtr->nButtonDown)
5964     {
5965       TBUTTON_INFO *btnPtr;
5966       RECT rc1;
5967
5968       btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
5969
5970       btnPtr->fsState &= ~TBSTATE_PRESSED;
5971
5972       rc1 = btnPtr->rect;
5973       InflateRect (&rc1, 1, 1);
5974       InvalidateRect (hwnd, &rc1, TRUE);
5975     }
5976
5977     if (infoPtr->bCaptured && !infoPtr->bDragOutSent)
5978     {
5979         NMTOOLBARW nmt;
5980         ZeroMemory(&nmt, sizeof(nmt));
5981         nmt.iItem = infoPtr->buttons[infoPtr->nButtonDown].idCommand;
5982         TOOLBAR_SendNotify(&nmt.hdr, infoPtr, TBN_DRAGOUT);
5983         infoPtr->bDragOutSent = TRUE;
5984     }
5985
5986     infoPtr->nOldHit = -1; /* reset the old hit index as we've left the toolbar */
5987
5988     return TRUE;
5989 }
5990
5991 static LRESULT
5992 TOOLBAR_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
5993 {
5994     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5995     POINT pt;
5996     TRACKMOUSEEVENT trackinfo;
5997     INT   nHit;
5998     TBUTTON_INFO *btnPtr;
5999     
6000     if ((infoPtr->dwStyle & TBSTYLE_TOOLTIPS) && (infoPtr->hwndToolTip == NULL))
6001         TOOLBAR_TooltipCreateControl(infoPtr);
6002     
6003     if ((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)) {
6004         /* fill in the TRACKMOUSEEVENT struct */
6005         trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
6006         trackinfo.dwFlags = TME_QUERY;
6007
6008         /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
6009         _TrackMouseEvent(&trackinfo);
6010
6011         /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
6012         if(trackinfo.hwndTrack != hwnd || !(trackinfo.dwFlags & TME_LEAVE)) {
6013             trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
6014             trackinfo.hwndTrack = hwnd;
6015
6016             /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
6017             /* and can properly deactivate the hot toolbar button */
6018             _TrackMouseEvent(&trackinfo);
6019        }
6020     }
6021
6022     if (infoPtr->hwndToolTip)
6023         TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
6024                             WM_MOUSEMOVE, wParam, lParam);
6025
6026     pt.x = (short)LOWORD(lParam);
6027     pt.y = (short)HIWORD(lParam);
6028
6029     nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
6030
6031     if (((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)) 
6032         && (!infoPtr->bAnchor || (nHit >= 0)))
6033         TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE);
6034
6035     if (infoPtr->nOldHit != nHit)
6036     {
6037         if (infoPtr->bCaptured)
6038         {
6039             if (!infoPtr->bDragOutSent)
6040             {
6041                 NMTOOLBARW nmt;
6042                 ZeroMemory(&nmt, sizeof(nmt));
6043                 nmt.iItem = infoPtr->buttons[infoPtr->nButtonDown].idCommand;
6044                 TOOLBAR_SendNotify(&nmt.hdr, infoPtr, TBN_DRAGOUT);
6045                 infoPtr->bDragOutSent = TRUE;
6046             }
6047
6048             btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
6049             if (infoPtr->nOldHit == infoPtr->nButtonDown) {
6050                 btnPtr->fsState &= ~TBSTATE_PRESSED;
6051                 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6052             }
6053             else if (nHit == infoPtr->nButtonDown) {
6054                 btnPtr->fsState |= TBSTATE_PRESSED;
6055                 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6056             }
6057             infoPtr->nOldHit = nHit;
6058         }
6059     }
6060
6061     return 0;
6062 }
6063
6064
6065 static inline LRESULT
6066 TOOLBAR_NCActivate (HWND hwnd, WPARAM wParam, LPARAM lParam)
6067 {
6068 /*    if (wndPtr->dwStyle & CCS_NODIVIDER) */
6069         return DefWindowProcW (hwnd, WM_NCACTIVATE, wParam, lParam);
6070 /*    else */
6071 /*      return TOOLBAR_NCPaint (wndPtr, wParam, lParam); */
6072 }
6073
6074
6075 static inline LRESULT
6076 TOOLBAR_NCCalcSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
6077 {
6078     if (!(GetWindowLongW(hwnd, GWL_STYLE) & CCS_NODIVIDER))
6079         ((LPRECT)lParam)->top += GetSystemMetrics(SM_CYEDGE);
6080
6081     return DefWindowProcW (hwnd, WM_NCCALCSIZE, wParam, lParam);
6082 }
6083
6084
6085 static LRESULT
6086 TOOLBAR_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
6087 {
6088     TOOLBAR_INFO *infoPtr;
6089     LPCREATESTRUCTA cs = (LPCREATESTRUCTA)lParam;
6090     DWORD styleadd = 0;
6091
6092     /* allocate memory for info structure */
6093     infoPtr = (TOOLBAR_INFO *)Alloc (sizeof(TOOLBAR_INFO));
6094     SetWindowLongPtrW (hwnd, 0, (LONG_PTR)infoPtr);
6095
6096     /* paranoid!! */
6097     infoPtr->dwStructSize = sizeof(TBBUTTON);
6098     infoPtr->nRows = 1;
6099     infoPtr->nWidth = 0;
6100
6101     /* fix instance handle, if the toolbar was created by CreateToolbarEx() */
6102     if (!GetWindowLongPtrW (hwnd, GWLP_HINSTANCE)) {
6103         HINSTANCE hInst = (HINSTANCE)GetWindowLongPtrW (GetParent (hwnd), GWLP_HINSTANCE);
6104         SetWindowLongPtrW (hwnd, GWLP_HINSTANCE, (LONG_PTR)hInst);
6105     }
6106
6107     /* native control does:
6108      *    Get a lot of colors and brushes
6109      *    WM_NOTIFYFORMAT
6110      *    SystemParametersInfoW(0x1f, 0x3c, adr1, 0)
6111      *    CreateFontIndirectW(adr1)
6112      *    CreateBitmap(0x27, 0x24, 1, 1, 0)
6113      *    hdc = GetDC(toolbar)
6114      *    GetSystemMetrics(0x48)
6115      *    fnt2=CreateFontW(0xe, 0, 0, 0, 0x190, 0, 0, 0, 0, 2,
6116      *                     0, 0, 0, 0, "MARLETT")
6117      *    oldfnt = SelectObject(hdc, fnt2)
6118      *    GetCharWidthW(hdc, 0x36, 0x36, adr2)
6119      *    GetTextMetricsW(hdc, adr3)
6120      *    SelectObject(hdc, oldfnt)
6121      *    DeleteObject(fnt2)
6122      *    ReleaseDC(hdc)
6123      *    InvalidateRect(toolbar, 0, 1)
6124      *    SetWindowLongW(toolbar, 0, addr)
6125      *    SetWindowLongW(toolbar, -16, xxx)  **sometimes**
6126      *                                          WM_STYLECHANGING
6127      *                             CallWinEx   old         new
6128      *                       ie 1  0x56000a4c  0x46000a4c  0x56008a4d
6129      *                       ie 2  0x4600094c  0x4600094c  0x4600894d
6130      *                       ie 3  0x56000b4c  0x46000b4c  0x56008b4d
6131      *                      rebar  0x50008844  0x40008844  0x50008845
6132      *                      pager  0x50000844  0x40000844  0x50008845
6133      *                    IC35mgr  0x5400084e  **nochange**
6134      *           on entry to _NCCREATE         0x5400084e
6135      *                    rowlist  0x5400004e  **nochange**
6136      *           on entry to _NCCREATE         0x5400004e
6137      *
6138      */
6139
6140     /* I think the code below is a bug, but it is the way that the native
6141      * controls seem to work. The effect is that if the user of TBSTYLE_FLAT
6142      * forgets to specify TBSTYLE_TRANSPARENT but does specify either
6143      * CCS_TOP or CCS_BOTTOM (_NOMOVEY and _TOP), then the control
6144      * does *not* set TBSTYLE_TRANSPARENT even though it should!!!!
6145      * Somehow, the only cases of this seem to be MFC programs.
6146      *
6147      * Note also that the addition of _TRANSPARENT occurs *only* here. It
6148      * does not occur in the WM_STYLECHANGING routine.
6149      *    (Guy Albertelli   9/2001)
6150      *
6151      */
6152     if (((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)) 
6153         && !(cs->style & TBSTYLE_TRANSPARENT))
6154         styleadd |= TBSTYLE_TRANSPARENT;
6155     if (!(cs->style & (CCS_TOP | CCS_NOMOVEY))) {
6156         styleadd |= CCS_TOP;   /* default to top */
6157         SetWindowLongW (hwnd, GWL_STYLE, cs->style | styleadd);
6158     }
6159
6160     return DefWindowProcW (hwnd, WM_NCCREATE, wParam, lParam);
6161 }
6162
6163
6164 static LRESULT
6165 TOOLBAR_NCPaint (HWND hwnd, WPARAM wParam, LPARAM lParam)
6166 {
6167     DWORD dwStyle = GetWindowLongW(hwnd, GWL_STYLE);
6168     RECT rcWindow;
6169     HDC hdc;
6170
6171     if (dwStyle & WS_MINIMIZE)
6172         return 0; /* Nothing to do */
6173
6174     DefWindowProcW (hwnd, WM_NCPAINT, wParam, lParam);
6175
6176     if (!(hdc = GetDCEx (hwnd, 0, DCX_USESTYLE | DCX_WINDOW)))
6177         return 0;
6178
6179     if (!(dwStyle & CCS_NODIVIDER))
6180     {
6181         GetWindowRect (hwnd, &rcWindow);
6182         OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
6183         if( dwStyle & WS_BORDER )
6184             OffsetRect (&rcWindow, 1, 1);
6185         DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_TOP);
6186     }
6187
6188     ReleaseDC( hwnd, hdc );
6189
6190     return 0;
6191 }
6192
6193
6194 /* handles requests from the tooltip control on what text to display */
6195 static LRESULT TOOLBAR_TTGetDispInfo (TOOLBAR_INFO *infoPtr, NMTTDISPINFOW *lpnmtdi)
6196 {
6197     int index = TOOLBAR_GetButtonIndex(infoPtr, lpnmtdi->hdr.idFrom, FALSE);
6198
6199     TRACE("button index = %d\n", index);
6200
6201     Free (infoPtr->pszTooltipText);
6202     infoPtr->pszTooltipText = NULL;
6203
6204     if (index < 0)
6205         return 0;
6206
6207     if (infoPtr->bUnicode)
6208     {
6209         WCHAR wszBuffer[INFOTIPSIZE+1];
6210         NMTBGETINFOTIPW tbgit;
6211         unsigned int len; /* in chars */
6212
6213         wszBuffer[0] = '\0';
6214         wszBuffer[INFOTIPSIZE] = '\0';
6215
6216         tbgit.pszText = wszBuffer;
6217         tbgit.cchTextMax = INFOTIPSIZE;
6218         tbgit.iItem = lpnmtdi->hdr.idFrom;
6219         tbgit.lParam = infoPtr->buttons[index].dwData;
6220
6221         TOOLBAR_SendNotify(&tbgit.hdr, infoPtr, TBN_GETINFOTIPW);
6222
6223         TRACE("TBN_GETINFOTIPW - got string %s\n", debugstr_w(tbgit.pszText));
6224
6225         len = strlenW(tbgit.pszText);
6226         if (len > sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0])-1)
6227         {
6228             /* need to allocate temporary buffer in infoPtr as there
6229              * isn't enough space in buffer passed to us by the
6230              * tooltip control */
6231             infoPtr->pszTooltipText = Alloc((len+1)*sizeof(WCHAR));
6232             if (infoPtr->pszTooltipText)
6233             {
6234                 memcpy(infoPtr->pszTooltipText, tbgit.pszText, (len+1)*sizeof(WCHAR));
6235                 lpnmtdi->lpszText = infoPtr->pszTooltipText;
6236                 return 0;
6237             }
6238         }
6239         else if (len > 0)
6240         {
6241             memcpy(lpnmtdi->lpszText, tbgit.pszText, (len+1)*sizeof(WCHAR));
6242             return 0;
6243         }
6244     }
6245     else
6246     {
6247         CHAR szBuffer[INFOTIPSIZE+1];
6248         NMTBGETINFOTIPA tbgit;
6249         unsigned int len; /* in chars */
6250
6251         szBuffer[0] = '\0';
6252         szBuffer[INFOTIPSIZE] = '\0';
6253
6254         tbgit.pszText = szBuffer;
6255         tbgit.cchTextMax = INFOTIPSIZE;
6256         tbgit.iItem = lpnmtdi->hdr.idFrom;
6257         tbgit.lParam = infoPtr->buttons[index].dwData;
6258
6259         TOOLBAR_SendNotify(&tbgit.hdr, infoPtr, TBN_GETINFOTIPA);
6260
6261         TRACE("TBN_GETINFOTIPA - got string %s\n", debugstr_a(tbgit.pszText));
6262
6263         len = MultiByteToWideChar(CP_ACP, 0, tbgit.pszText, -1, NULL, 0);
6264         if (len > sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0]))
6265         {
6266             /* need to allocate temporary buffer in infoPtr as there
6267              * isn't enough space in buffer passed to us by the
6268              * tooltip control */
6269             infoPtr->pszTooltipText = Alloc(len*sizeof(WCHAR));
6270             if (infoPtr->pszTooltipText)
6271             {
6272                 MultiByteToWideChar(CP_ACP, 0, tbgit.pszText, -1, infoPtr->pszTooltipText, len);
6273                 lpnmtdi->lpszText = infoPtr->pszTooltipText;
6274                 return 0;
6275             }
6276         }
6277         else if (len > 0)
6278         {
6279             MultiByteToWideChar(CP_ACP, 0, tbgit.pszText, -1,
6280                                 lpnmtdi->lpszText, sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0]));
6281             return 0;
6282         }
6283     }
6284
6285     /* if button has text, but it is not shown then automatically
6286      * use that text as tooltip */
6287     if ((infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) &&
6288         !(infoPtr->buttons[index].fsStyle & BTNS_SHOWTEXT))
6289     {
6290         LPWSTR pszText = TOOLBAR_GetText(infoPtr, &infoPtr->buttons[index]);
6291         unsigned int len = pszText ? strlenW(pszText) : 0;
6292
6293         TRACE("using button hidden text %s\n", debugstr_w(pszText));
6294
6295         if (len > sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0])-1)
6296         {
6297             /* need to allocate temporary buffer in infoPtr as there
6298              * isn't enough space in buffer passed to us by the
6299              * tooltip control */
6300             infoPtr->pszTooltipText = Alloc((len+1)*sizeof(WCHAR));
6301             if (infoPtr->pszTooltipText)
6302             {
6303                 memcpy(infoPtr->pszTooltipText, pszText, (len+1)*sizeof(WCHAR));
6304                 lpnmtdi->lpszText = infoPtr->pszTooltipText;
6305                 return 0;
6306             }
6307         }
6308         else if (len > 0)
6309         {
6310             memcpy(lpnmtdi->lpszText, pszText, (len+1)*sizeof(WCHAR));
6311             return 0;
6312         }
6313     }
6314
6315     TRACE("Sending tooltip notification to %p\n", infoPtr->hwndNotify);
6316
6317     /* last resort: send notification on to app */
6318     /* FIXME: find out what is really used here */
6319     return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, 0, (LPARAM)lpnmtdi);
6320 }
6321
6322
6323 static inline LRESULT
6324 TOOLBAR_Notify (HWND hwnd, WPARAM wParam, LPARAM lParam)
6325 {
6326     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6327     LPNMHDR lpnmh = (LPNMHDR)lParam;
6328
6329     switch (lpnmh->code)
6330     {
6331     case PGN_CALCSIZE:
6332     {
6333         LPNMPGCALCSIZE lppgc = (LPNMPGCALCSIZE)lParam;
6334
6335         if (lppgc->dwFlag == PGF_CALCWIDTH) {
6336             lppgc->iWidth = infoPtr->rcBound.right - infoPtr->rcBound.left;
6337             TRACE("processed PGN_CALCSIZE, returning horz size = %d\n",
6338                   lppgc->iWidth);
6339         }
6340         else {
6341             lppgc->iHeight = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
6342             TRACE("processed PGN_CALCSIZE, returning vert size = %d\n",
6343                   lppgc->iHeight);
6344         }
6345         return 0;
6346     }
6347
6348     case PGN_SCROLL:
6349     {
6350         LPNMPGSCROLL lppgs = (LPNMPGSCROLL)lParam;
6351
6352         lppgs->iScroll = (lppgs->iDir & (PGF_SCROLLLEFT | PGF_SCROLLRIGHT)) ?
6353                           infoPtr->nButtonWidth : infoPtr->nButtonHeight;
6354         TRACE("processed PGN_SCROLL, returning scroll=%d, dir=%d\n",
6355               lppgs->iScroll, lppgs->iDir);
6356         return 0;
6357     }
6358
6359     case TTN_GETDISPINFOW:
6360         return TOOLBAR_TTGetDispInfo(infoPtr, (LPNMTTDISPINFOW)lParam);
6361
6362     case TTN_GETDISPINFOA:
6363         FIXME("TTN_GETDISPINFOA - should not be received; please report\n");
6364         return 0;
6365
6366     default:
6367         return 0;
6368     }
6369 }
6370
6371
6372 static LRESULT
6373 TOOLBAR_NotifyFormat(TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
6374 {
6375     LRESULT format;
6376
6377     TRACE("wParam = 0x%x, lParam = 0x%08lx\n", wParam, lParam);
6378
6379     if (lParam == NF_QUERY)
6380         return NFR_UNICODE;
6381
6382     if (lParam == NF_REQUERY) {
6383         format = SendMessageW(infoPtr->hwndNotify,
6384                          WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
6385         if ((format != NFR_ANSI) && (format != NFR_UNICODE)) {
6386             ERR("wrong response to WM_NOTIFYFORMAT (%ld), assuming ANSI\n",
6387                 format);
6388             format = NFR_ANSI;
6389         }
6390         return format;
6391     }
6392     return 0;
6393 }
6394
6395
6396 static LRESULT
6397 TOOLBAR_Paint (HWND hwnd, WPARAM wParam)
6398 {
6399     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
6400     HDC hdc;
6401     PAINTSTRUCT ps;
6402
6403     /* fill ps.rcPaint with a default rect */
6404     memcpy(&(ps.rcPaint), &(infoPtr->rcBound), sizeof(infoPtr->rcBound));
6405
6406     hdc = wParam==0 ? BeginPaint(hwnd, &ps) : (HDC)wParam;
6407
6408     TRACE("psrect=(%d,%d)-(%d,%d)\n",
6409           ps.rcPaint.left, ps.rcPaint.top,
6410           ps.rcPaint.right, ps.rcPaint.bottom);
6411
6412     TOOLBAR_Refresh (hwnd, hdc, &ps);
6413     if (!wParam) EndPaint (hwnd, &ps);
6414
6415     return 0;
6416 }
6417
6418
6419 static LRESULT
6420 TOOLBAR_SetFocus (HWND hwnd, WPARAM wParam)
6421 {
6422     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6423
6424     TRACE("nHotItem = %d\n", infoPtr->nHotItem);
6425
6426     /* make first item hot */
6427     if (infoPtr->nNumButtons > 0)
6428         TOOLBAR_SetHotItemEx(infoPtr, 0, HICF_OTHER);
6429
6430     return 0;
6431 }
6432
6433 static LRESULT
6434 TOOLBAR_SetFont(HWND hwnd, WPARAM wParam, LPARAM lParam)
6435 {
6436     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
6437     
6438     TRACE("font=%p redraw=%ld\n", (HFONT)wParam, lParam);
6439     
6440     if (wParam == 0)
6441         infoPtr->hFont = infoPtr->hDefaultFont;
6442     else
6443         infoPtr->hFont = (HFONT)wParam;
6444
6445     TOOLBAR_CalcToolbar(hwnd);
6446
6447     if (lParam)
6448         InvalidateRect(hwnd, NULL, TRUE);
6449     return 1;
6450 }
6451
6452 static LRESULT
6453 TOOLBAR_SetRedraw (HWND hwnd, WPARAM wParam, LPARAM lParam)
6454      /*****************************************************
6455       *
6456       * Function;
6457       *  Handles the WM_SETREDRAW message.
6458       *
6459       * Documentation:
6460       *  According to testing V4.71 of COMCTL32 returns the
6461       *  *previous* status of the redraw flag (either 0 or 1)
6462       *  instead of the MSDN documented value of 0 if handled.
6463       *  (For laughs see the "consistency" with same function
6464       *   in rebar.)
6465       *
6466       *****************************************************/
6467 {
6468     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6469     BOOL oldredraw = infoPtr->bDoRedraw;
6470
6471     TRACE("set to %s\n",
6472           (wParam) ? "TRUE" : "FALSE");
6473     infoPtr->bDoRedraw = (BOOL) wParam;
6474     if (wParam) {
6475         InvalidateRect (infoPtr->hwndSelf, 0, TRUE);
6476     }
6477     return (oldredraw) ? 1 : 0;
6478 }
6479
6480
6481 static LRESULT
6482 TOOLBAR_Size (HWND hwnd, WPARAM wParam, LPARAM lParam)
6483 {
6484     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6485
6486     TRACE("sizing toolbar!\n");
6487
6488     if (infoPtr->dwExStyle & TBSTYLE_EX_HIDECLIPPEDBUTTONS)
6489     {
6490         RECT delta_width, delta_height, client, dummy;
6491         DWORD min_x, max_x, min_y, max_y;
6492         TBUTTON_INFO *btnPtr;
6493         INT i;
6494
6495         GetClientRect(hwnd, &client);
6496         if(client.right > infoPtr->client_rect.right)
6497         {
6498             min_x = infoPtr->client_rect.right;
6499             max_x = client.right;
6500         }
6501         else
6502         {
6503             max_x = infoPtr->client_rect.right;
6504             min_x = client.right;
6505         }
6506         if(client.bottom > infoPtr->client_rect.bottom)
6507         {
6508             min_y = infoPtr->client_rect.bottom;
6509             max_y = client.bottom;
6510         }
6511         else
6512         {
6513             max_y = infoPtr->client_rect.bottom;
6514             min_y = client.bottom;
6515         }
6516
6517         SetRect(&delta_width, min_x, 0, max_x, min_y);
6518         SetRect(&delta_height, 0, min_y, max_x, max_y);
6519
6520         TRACE("delta_width %s delta_height %s\n", wine_dbgstr_rect(&delta_width), wine_dbgstr_rect(&delta_height));
6521         btnPtr = infoPtr->buttons;
6522         for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++)
6523             if(IntersectRect(&dummy, &delta_width, &btnPtr->rect) ||
6524                 IntersectRect(&dummy, &delta_height, &btnPtr->rect))
6525                 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6526     }
6527     GetClientRect(hwnd, &infoPtr->client_rect);
6528     TOOLBAR_AutoSize(hwnd);
6529     return 0;
6530 }
6531
6532
6533 static LRESULT
6534 TOOLBAR_StyleChanged (HWND hwnd, INT nType, LPSTYLESTRUCT lpStyle)
6535 {
6536     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6537
6538     if (nType == GWL_STYLE)
6539     {
6540         DWORD dwOldStyle = infoPtr->dwStyle;
6541
6542         if (lpStyle->styleNew & TBSTYLE_LIST)
6543             infoPtr->dwDTFlags = DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS;
6544         else
6545             infoPtr->dwDTFlags = DT_CENTER | DT_END_ELLIPSIS;
6546
6547         TOOLBAR_CheckStyle (hwnd, lpStyle->styleNew);
6548
6549         TRACE("new style 0x%08x\n", lpStyle->styleNew);
6550
6551         infoPtr->dwStyle = lpStyle->styleNew;
6552
6553         if ((dwOldStyle ^ lpStyle->styleNew) & (TBSTYLE_WRAPABLE | CCS_VERT))
6554             TOOLBAR_LayoutToolbar(hwnd);
6555
6556         /* only resize if one of the CCS_* styles was changed */
6557         if ((dwOldStyle ^ lpStyle->styleNew) & COMMON_STYLES)
6558         {
6559             TOOLBAR_AutoSize (hwnd);
6560     
6561             InvalidateRect(hwnd, NULL, TRUE);
6562         }
6563     }
6564
6565     return 0;
6566 }
6567
6568
6569 static LRESULT
6570 TOOLBAR_SysColorChange (HWND hwnd)
6571 {
6572     COMCTL32_RefreshSysColors();
6573
6574     return 0;
6575 }
6576
6577
6578 /* update theme after a WM_THEMECHANGED message */
6579 static LRESULT theme_changed (HWND hwnd)
6580 {
6581     HTHEME theme = GetWindowTheme (hwnd);
6582     CloseThemeData (theme);
6583     OpenThemeData (hwnd, themeClass);
6584     return 0;
6585 }
6586
6587
6588 static LRESULT WINAPI
6589 ToolbarWindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
6590 {
6591     TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6592
6593     TRACE("hwnd=%p msg=%x wparam=%x lparam=%lx\n",
6594           hwnd, uMsg, /* SPY_GetMsgName(uMsg), */ wParam, lParam);
6595
6596     if (!infoPtr && (uMsg != WM_NCCREATE))
6597         return DefWindowProcW( hwnd, uMsg, wParam, lParam );
6598
6599     switch (uMsg)
6600     {
6601         case TB_ADDBITMAP:
6602             return TOOLBAR_AddBitmap (hwnd, wParam, lParam);
6603
6604         case TB_ADDBUTTONSA:
6605             return TOOLBAR_AddButtonsT(hwnd, wParam, lParam, FALSE);
6606
6607         case TB_ADDBUTTONSW:
6608             return TOOLBAR_AddButtonsT(hwnd, wParam, lParam, TRUE);
6609
6610         case TB_ADDSTRINGA:
6611             return TOOLBAR_AddStringA (hwnd, wParam, lParam);
6612
6613         case TB_ADDSTRINGW:
6614             return TOOLBAR_AddStringW (hwnd, wParam, lParam);
6615
6616         case TB_AUTOSIZE:
6617             return TOOLBAR_AutoSize (hwnd);
6618
6619         case TB_BUTTONCOUNT:
6620             return TOOLBAR_ButtonCount (hwnd, wParam, lParam);
6621
6622         case TB_BUTTONSTRUCTSIZE:
6623             return TOOLBAR_ButtonStructSize (hwnd, wParam, lParam);
6624
6625         case TB_CHANGEBITMAP:
6626             return TOOLBAR_ChangeBitmap (hwnd, wParam, lParam);
6627
6628         case TB_CHECKBUTTON:
6629             return TOOLBAR_CheckButton (hwnd, wParam, lParam);
6630
6631         case TB_COMMANDTOINDEX:
6632             return TOOLBAR_CommandToIndex (hwnd, wParam, lParam);
6633
6634         case TB_CUSTOMIZE:
6635             return TOOLBAR_Customize (hwnd);
6636
6637         case TB_DELETEBUTTON:
6638             return TOOLBAR_DeleteButton (hwnd, wParam, lParam);
6639
6640         case TB_ENABLEBUTTON:
6641             return TOOLBAR_EnableButton (hwnd, wParam, lParam);
6642
6643         case TB_GETANCHORHIGHLIGHT:
6644             return TOOLBAR_GetAnchorHighlight (hwnd);
6645
6646         case TB_GETBITMAP:
6647             return TOOLBAR_GetBitmap (hwnd, wParam, lParam);
6648
6649         case TB_GETBITMAPFLAGS:
6650             return TOOLBAR_GetBitmapFlags (hwnd, wParam, lParam);
6651
6652         case TB_GETBUTTON:
6653             return TOOLBAR_GetButton (hwnd, wParam, lParam);
6654
6655         case TB_GETBUTTONINFOA:
6656             return TOOLBAR_GetButtonInfoA (hwnd, wParam, lParam);
6657
6658         case TB_GETBUTTONINFOW:
6659             return TOOLBAR_GetButtonInfoW (hwnd, wParam, lParam);
6660
6661         case TB_GETBUTTONSIZE:
6662             return TOOLBAR_GetButtonSize (hwnd);
6663
6664         case TB_GETBUTTONTEXTA:
6665             return TOOLBAR_GetButtonTextA (hwnd, wParam, lParam);
6666
6667         case TB_GETBUTTONTEXTW:
6668             return TOOLBAR_GetButtonTextW (hwnd, wParam, lParam);
6669
6670         case TB_GETDISABLEDIMAGELIST:
6671             return TOOLBAR_GetDisabledImageList (hwnd, wParam, lParam);
6672
6673         case TB_GETEXTENDEDSTYLE:
6674             return TOOLBAR_GetExtendedStyle (hwnd);
6675
6676         case TB_GETHOTIMAGELIST:
6677             return TOOLBAR_GetHotImageList (hwnd, wParam, lParam);
6678
6679         case TB_GETHOTITEM:
6680             return TOOLBAR_GetHotItem (hwnd);
6681
6682         case TB_GETIMAGELIST:
6683             return TOOLBAR_GetDefImageList (hwnd, wParam, lParam);
6684
6685         case TB_GETINSERTMARK:
6686             return TOOLBAR_GetInsertMark (hwnd, wParam, lParam);
6687
6688         case TB_GETINSERTMARKCOLOR:
6689             return TOOLBAR_GetInsertMarkColor (hwnd, wParam, lParam);
6690
6691         case TB_GETITEMRECT:
6692             return TOOLBAR_GetItemRect (hwnd, wParam, lParam);
6693
6694         case TB_GETMAXSIZE:
6695             return TOOLBAR_GetMaxSize (hwnd, wParam, lParam);
6696
6697 /*      case TB_GETOBJECT:                      */ /* 4.71 */
6698
6699         case TB_GETPADDING:
6700             return TOOLBAR_GetPadding (hwnd);
6701
6702         case TB_GETRECT:
6703             return TOOLBAR_GetRect (hwnd, wParam, lParam);
6704
6705         case TB_GETROWS:
6706             return TOOLBAR_GetRows (hwnd, wParam, lParam);
6707
6708         case TB_GETSTATE:
6709             return TOOLBAR_GetState (hwnd, wParam, lParam);
6710
6711         case TB_GETSTRINGA:
6712         return TOOLBAR_GetStringA (hwnd, wParam, lParam);
6713
6714         case TB_GETSTRINGW:
6715             return TOOLBAR_GetStringW (hwnd, wParam, lParam);
6716
6717         case TB_GETSTYLE:
6718             return TOOLBAR_GetStyle (hwnd, wParam, lParam);
6719
6720         case TB_GETTEXTROWS:
6721             return TOOLBAR_GetTextRows (hwnd, wParam, lParam);
6722
6723         case TB_GETTOOLTIPS:
6724             return TOOLBAR_GetToolTips (hwnd, wParam, lParam);
6725
6726         case TB_GETUNICODEFORMAT:
6727             return TOOLBAR_GetUnicodeFormat (hwnd, wParam, lParam);
6728
6729         case TB_HIDEBUTTON:
6730             return TOOLBAR_HideButton (hwnd, wParam, lParam);
6731
6732         case TB_HITTEST:
6733             return TOOLBAR_HitTest (hwnd, wParam, lParam);
6734
6735         case TB_INDETERMINATE:
6736             return TOOLBAR_Indeterminate (hwnd, wParam, lParam);
6737
6738         case TB_INSERTBUTTONA:
6739             return TOOLBAR_InsertButtonT(hwnd, wParam, lParam, FALSE);
6740
6741         case TB_INSERTBUTTONW:
6742             return TOOLBAR_InsertButtonT(hwnd, wParam, lParam, TRUE);
6743
6744 /*      case TB_INSERTMARKHITTEST:              */ /* 4.71 */
6745
6746         case TB_ISBUTTONCHECKED:
6747             return TOOLBAR_IsButtonChecked (hwnd, wParam, lParam);
6748
6749         case TB_ISBUTTONENABLED:
6750             return TOOLBAR_IsButtonEnabled (hwnd, wParam, lParam);
6751
6752         case TB_ISBUTTONHIDDEN:
6753             return TOOLBAR_IsButtonHidden (hwnd, wParam, lParam);
6754
6755         case TB_ISBUTTONHIGHLIGHTED:
6756             return TOOLBAR_IsButtonHighlighted (hwnd, wParam, lParam);
6757
6758         case TB_ISBUTTONINDETERMINATE:
6759             return TOOLBAR_IsButtonIndeterminate (hwnd, wParam, lParam);
6760
6761         case TB_ISBUTTONPRESSED:
6762             return TOOLBAR_IsButtonPressed (hwnd, wParam, lParam);
6763
6764         case TB_LOADIMAGES:
6765             return TOOLBAR_LoadImages (hwnd, wParam, lParam);
6766
6767         case TB_MAPACCELERATORA:
6768         case TB_MAPACCELERATORW:
6769             return TOOLBAR_MapAccelerator (hwnd, wParam, lParam);
6770
6771         case TB_MARKBUTTON:
6772             return TOOLBAR_MarkButton (hwnd, wParam, lParam);
6773
6774         case TB_MOVEBUTTON:
6775             return TOOLBAR_MoveButton (hwnd, wParam, lParam);
6776
6777         case TB_PRESSBUTTON:
6778             return TOOLBAR_PressButton (hwnd, wParam, lParam);
6779
6780         case TB_REPLACEBITMAP:
6781             return TOOLBAR_ReplaceBitmap (hwnd, wParam, lParam);
6782
6783         case TB_SAVERESTOREA:
6784             return TOOLBAR_SaveRestoreA (hwnd, wParam, (LPTBSAVEPARAMSA)lParam);
6785
6786         case TB_SAVERESTOREW:
6787             return TOOLBAR_SaveRestoreW (hwnd, wParam, (LPTBSAVEPARAMSW)lParam);
6788
6789         case TB_SETANCHORHIGHLIGHT:
6790             return TOOLBAR_SetAnchorHighlight (hwnd, wParam);
6791
6792         case TB_SETBITMAPSIZE:
6793             return TOOLBAR_SetBitmapSize (hwnd, wParam, lParam);
6794
6795         case TB_SETBUTTONINFOA:
6796             return TOOLBAR_SetButtonInfoA (hwnd, wParam, lParam);
6797
6798         case TB_SETBUTTONINFOW:
6799             return TOOLBAR_SetButtonInfoW (hwnd, wParam, lParam);
6800
6801         case TB_SETBUTTONSIZE:
6802             return TOOLBAR_SetButtonSize (hwnd, wParam, lParam);
6803
6804         case TB_SETBUTTONWIDTH:
6805             return TOOLBAR_SetButtonWidth (hwnd, wParam, lParam);
6806
6807         case TB_SETCMDID:
6808             return TOOLBAR_SetCmdId (hwnd, wParam, lParam);
6809
6810         case TB_SETDISABLEDIMAGELIST:
6811             return TOOLBAR_SetDisabledImageList (hwnd, wParam, lParam);
6812
6813         case TB_SETDRAWTEXTFLAGS:
6814             return TOOLBAR_SetDrawTextFlags (hwnd, wParam, lParam);
6815
6816         case TB_SETEXTENDEDSTYLE:
6817             return TOOLBAR_SetExtendedStyle (hwnd, wParam, lParam);
6818
6819         case TB_SETHOTIMAGELIST:
6820             return TOOLBAR_SetHotImageList (hwnd, wParam, lParam);
6821
6822         case TB_SETHOTITEM:
6823             return TOOLBAR_SetHotItem (hwnd, wParam);
6824
6825         case TB_SETIMAGELIST:
6826             return TOOLBAR_SetImageList (hwnd, wParam, lParam);
6827
6828         case TB_SETINDENT:
6829             return TOOLBAR_SetIndent (hwnd, wParam, lParam);
6830
6831         case TB_SETINSERTMARK:
6832             return TOOLBAR_SetInsertMark (hwnd, wParam, lParam);
6833
6834         case TB_SETINSERTMARKCOLOR:
6835             return TOOLBAR_SetInsertMarkColor (hwnd, wParam, lParam);
6836
6837         case TB_SETMAXTEXTROWS:
6838             return TOOLBAR_SetMaxTextRows (hwnd, wParam, lParam);
6839
6840         case TB_SETPADDING:
6841             return TOOLBAR_SetPadding (hwnd, wParam, lParam);
6842
6843         case TB_SETPARENT:
6844             return TOOLBAR_SetParent (hwnd, wParam, lParam);
6845
6846         case TB_SETROWS:
6847             return TOOLBAR_SetRows (hwnd, wParam, lParam);
6848
6849         case TB_SETSTATE:
6850             return TOOLBAR_SetState (hwnd, wParam, lParam);
6851
6852         case TB_SETSTYLE:
6853             return TOOLBAR_SetStyle (hwnd, wParam, lParam);
6854
6855         case TB_SETTOOLTIPS:
6856             return TOOLBAR_SetToolTips (hwnd, wParam, lParam);
6857
6858         case TB_SETUNICODEFORMAT:
6859             return TOOLBAR_SetUnicodeFormat (hwnd, wParam, lParam);
6860
6861         case TB_UNKWN45D:
6862             return TOOLBAR_Unkwn45D(hwnd, wParam, lParam);
6863
6864         case TB_UNKWN45E:
6865             return TOOLBAR_Unkwn45E (hwnd, wParam, lParam);
6866
6867         case TB_UNKWN460:
6868             return TOOLBAR_Unkwn460(hwnd, wParam, lParam);
6869
6870         case TB_UNKWN462:
6871             return TOOLBAR_Unkwn462(hwnd, wParam, lParam);
6872
6873         case TB_UNKWN463:
6874             return TOOLBAR_Unkwn463 (hwnd, wParam, lParam);
6875
6876         case TB_UNKWN464:
6877             return TOOLBAR_Unkwn464(hwnd, wParam, lParam);
6878
6879 /* Common Control Messages */
6880
6881 /*      case TB_GETCOLORSCHEME:                 */ /* identical to CCM_ */
6882         case CCM_GETCOLORSCHEME:
6883             return TOOLBAR_GetColorScheme (hwnd, (LPCOLORSCHEME)lParam);
6884
6885 /*      case TB_SETCOLORSCHEME:                 */ /* identical to CCM_ */
6886         case CCM_SETCOLORSCHEME:
6887             return TOOLBAR_SetColorScheme (hwnd, (LPCOLORSCHEME)lParam);
6888
6889         case CCM_GETVERSION:
6890             return TOOLBAR_GetVersion (hwnd);
6891
6892         case CCM_SETVERSION:
6893             return TOOLBAR_SetVersion (hwnd, (INT)wParam);
6894
6895
6896 /*      case WM_CHAR: */
6897
6898         case WM_CREATE:
6899             return TOOLBAR_Create (hwnd, wParam, lParam);
6900
6901         case WM_DESTROY:
6902           return TOOLBAR_Destroy (hwnd, wParam, lParam);
6903
6904         case WM_ERASEBKGND:
6905             return TOOLBAR_EraseBackground (hwnd, wParam, lParam);
6906
6907         case WM_GETFONT:
6908                 return TOOLBAR_GetFont (hwnd, wParam, lParam);
6909
6910         case WM_KEYDOWN:
6911             return TOOLBAR_KeyDown (hwnd, wParam, lParam);
6912
6913 /*      case WM_KILLFOCUS: */
6914
6915         case WM_LBUTTONDBLCLK:
6916             return TOOLBAR_LButtonDblClk (hwnd, wParam, lParam);
6917
6918         case WM_LBUTTONDOWN:
6919             return TOOLBAR_LButtonDown (hwnd, wParam, lParam);
6920
6921         case WM_LBUTTONUP:
6922             return TOOLBAR_LButtonUp (hwnd, wParam, lParam);
6923
6924         case WM_RBUTTONUP:
6925             return TOOLBAR_RButtonUp (hwnd, wParam, lParam);
6926
6927         case WM_RBUTTONDBLCLK:
6928             return TOOLBAR_RButtonDblClk (hwnd, wParam, lParam);
6929
6930         case WM_MOUSEMOVE:
6931             return TOOLBAR_MouseMove (hwnd, wParam, lParam);
6932
6933         case WM_MOUSELEAVE:
6934             return TOOLBAR_MouseLeave (hwnd, wParam, lParam);
6935
6936         case WM_CAPTURECHANGED:
6937             return TOOLBAR_CaptureChanged(hwnd);
6938
6939         case WM_NCACTIVATE:
6940             return TOOLBAR_NCActivate (hwnd, wParam, lParam);
6941
6942         case WM_NCCALCSIZE:
6943             return TOOLBAR_NCCalcSize (hwnd, wParam, lParam);
6944
6945         case WM_NCCREATE:
6946             return TOOLBAR_NCCreate (hwnd, wParam, lParam);
6947
6948         case WM_NCPAINT:
6949             return TOOLBAR_NCPaint (hwnd, wParam, lParam);
6950
6951         case WM_NOTIFY:
6952             return TOOLBAR_Notify (hwnd, wParam, lParam);
6953
6954         case WM_NOTIFYFORMAT:
6955             return TOOLBAR_NotifyFormat (infoPtr, wParam, lParam);
6956
6957         case WM_PRINTCLIENT:
6958         case WM_PAINT:
6959             return TOOLBAR_Paint (hwnd, wParam);
6960
6961         case WM_SETFOCUS:
6962             return TOOLBAR_SetFocus (hwnd, wParam);
6963
6964         case WM_SETFONT:
6965             return TOOLBAR_SetFont(hwnd, wParam, lParam);
6966
6967         case WM_SETREDRAW:
6968             return TOOLBAR_SetRedraw (hwnd, wParam, lParam);
6969
6970         case WM_SIZE:
6971             return TOOLBAR_Size (hwnd, wParam, lParam);
6972
6973         case WM_STYLECHANGED:
6974             return TOOLBAR_StyleChanged (hwnd, (INT)wParam, (LPSTYLESTRUCT)lParam);
6975
6976         case WM_SYSCOLORCHANGE:
6977             return TOOLBAR_SysColorChange (hwnd);
6978             
6979         case WM_THEMECHANGED:
6980             return theme_changed (hwnd);
6981
6982 /*      case WM_WININICHANGE: */
6983
6984         case WM_CHARTOITEM:
6985         case WM_COMMAND:
6986         case WM_DRAWITEM:
6987         case WM_MEASUREITEM:
6988         case WM_VKEYTOITEM:
6989             return SendMessageW (infoPtr->hwndNotify, uMsg, wParam, lParam);
6990
6991         /* We see this in Outlook Express 5.x and just does DefWindowProc */
6992         case PGM_FORWARDMOUSE:
6993             return DefWindowProcW (hwnd, uMsg, wParam, lParam);
6994
6995         default:
6996             if ((uMsg >= WM_USER) && (uMsg < WM_APP))
6997                 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
6998                      uMsg, wParam, lParam);
6999             return DefWindowProcW (hwnd, uMsg, wParam, lParam);
7000     }
7001 }
7002
7003
7004 VOID
7005 TOOLBAR_Register (void)
7006 {
7007     WNDCLASSW wndClass;
7008
7009     ZeroMemory (&wndClass, sizeof(WNDCLASSW));
7010     wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS;
7011     wndClass.lpfnWndProc   = ToolbarWindowProc;
7012     wndClass.cbClsExtra    = 0;
7013     wndClass.cbWndExtra    = sizeof(TOOLBAR_INFO *);
7014     wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_ARROW);
7015     wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
7016     wndClass.lpszClassName = TOOLBARCLASSNAMEW;
7017
7018     RegisterClassW (&wndClass);
7019 }
7020
7021
7022 VOID
7023 TOOLBAR_Unregister (void)
7024 {
7025     UnregisterClassW (TOOLBARCLASSNAMEW, NULL);
7026 }
7027
7028 static HIMAGELIST TOOLBAR_InsertImageList(PIMLENTRY **pies, INT *cies, HIMAGELIST himl, INT id)
7029 {
7030     HIMAGELIST himlold;
7031     PIMLENTRY c = NULL;
7032
7033     /* Check if the entry already exists */
7034     c = TOOLBAR_GetImageListEntry(*pies, *cies, id);
7035
7036     /* If this is a new entry we must create it and insert into the array */
7037     if (!c)
7038     {
7039         PIMLENTRY *pnies;
7040
7041         c = (PIMLENTRY) Alloc(sizeof(IMLENTRY));
7042         c->id = id;
7043
7044         pnies = Alloc((*cies + 1) * sizeof(PIMLENTRY));
7045         memcpy(pnies, *pies, ((*cies) * sizeof(PIMLENTRY)));
7046         pnies[*cies] = c;
7047         (*cies)++;
7048
7049         Free(*pies);
7050         *pies = pnies;
7051     }
7052
7053     himlold = c->himl;
7054     c->himl = himl;
7055
7056     return himlold;
7057 }
7058
7059
7060 static VOID TOOLBAR_DeleteImageList(PIMLENTRY **pies, INT *cies)
7061 {
7062     int i;
7063
7064     for (i = 0; i < *cies; i++)
7065         Free((*pies)[i]);
7066
7067     Free(*pies);
7068
7069     *cies = 0;
7070     *pies = NULL;
7071 }
7072
7073
7074 static PIMLENTRY TOOLBAR_GetImageListEntry(PIMLENTRY *pies, INT cies, INT id)
7075 {
7076     PIMLENTRY c = NULL;
7077
7078     if (pies != NULL)
7079     {
7080         int i;
7081
7082         for (i = 0; i < cies; i++)
7083         {
7084             if (pies[i]->id == id)
7085             {
7086                 c = pies[i];
7087                 break;
7088             }
7089         }
7090     }
7091
7092     return c;
7093 }
7094
7095
7096 static HIMAGELIST TOOLBAR_GetImageList(PIMLENTRY *pies, INT cies, INT id)
7097 {
7098     HIMAGELIST himlDef = 0;
7099     PIMLENTRY pie = TOOLBAR_GetImageListEntry(pies, cies, id);
7100
7101     if (pie)
7102         himlDef = pie->himl;
7103
7104     return himlDef;
7105 }
7106
7107
7108 static BOOL TOOLBAR_GetButtonInfo(TOOLBAR_INFO *infoPtr, NMTOOLBARW *nmtb)
7109 {
7110     if (infoPtr->bUnicode)
7111         return TOOLBAR_SendNotify(&nmtb->hdr, infoPtr, TBN_GETBUTTONINFOW);
7112     else
7113     {
7114         CHAR Buffer[256];
7115         NMTOOLBARA nmtba;
7116         BOOL bRet = FALSE;
7117
7118         nmtba.iItem = nmtb->iItem;
7119         nmtba.pszText = Buffer;
7120         nmtba.cchText = 256;
7121         ZeroMemory(nmtba.pszText, nmtba.cchText);
7122
7123         if (TOOLBAR_SendNotify(&nmtba.hdr, infoPtr, TBN_GETBUTTONINFOA))
7124         {
7125             int ccht = strlen(nmtba.pszText);
7126             if (ccht)
7127                MultiByteToWideChar(CP_ACP, 0, (LPCSTR)nmtba.pszText, -1, 
7128                   nmtb->pszText, nmtb->cchText);
7129
7130             memcpy(&nmtb->tbButton, &nmtba.tbButton, sizeof(TBBUTTON));
7131             bRet = TRUE;
7132         }
7133
7134         return bRet;
7135     }
7136 }
7137
7138
7139 static BOOL TOOLBAR_IsButtonRemovable(TOOLBAR_INFO *infoPtr,
7140         int iItem, PCUSTOMBUTTON btnInfo)
7141 {
7142     NMTOOLBARW nmtb;
7143
7144     /* MSDN states that iItem is the index of the button, rather than the
7145      * command ID as used by every other NMTOOLBAR notification */
7146     nmtb.iItem = iItem;
7147     memcpy(&nmtb.tbButton, &btnInfo->btn, sizeof(TBBUTTON));
7148
7149     return TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_QUERYDELETE);
7150 }