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