4 * Copyright 1998,1999 Eric Kohl
5 * Copyright 2000 Eric Kohl for CodeWeavers
6 * Copyright 2004 Robert Shearman
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.
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.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
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.
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.
33 * - TBSTYLE_REGISTERDROP
34 * - TBSTYLE_EX_DOUBLEBUFFER
38 * - TB_INSERTMARKHITTEST
46 * - Button wrapping (under construction).
47 * - Fix TB_SETROWS and Separators.
48 * - iListGap custom draw support.
51 * - Run tests using Waite Group Windows95 API Bible Volume 2.
52 * The second cdrom contains executables addstr.exe, btncount.exe,
53 * btnstate.exe, butstrsz.exe, chkbtn.exe, chngbmp.exe, customiz.exe,
54 * enablebtn.exe, getbmp.exe, getbtn.exe, getflags.exe, hidebtn.exe,
55 * indetbtn.exe, insbtn.exe, pressbtn.exe, setbtnsz.exe, setcmdid.exe,
56 * setparnt.exe, setrows.exe, toolwnd.exe.
57 * - Microsoft's controlspy examples.
58 * - Charles Petzold's 'Programming Windows': gadgets.exe
60 * Differences between MSDN and actual native control operation:
61 * 1. MSDN says: "TBSTYLE_LIST: Creates a flat toolbar with button text
62 * to the right of the bitmap. Otherwise, this style is
63 * identical to TBSTYLE_FLAT."
64 * As implemented by both v4.71 and v5.80 of the native COMCTL32.DLL
65 * you can create a TBSTYLE_LIST without TBSTYLE_FLAT and the result
66 * is non-flat non-transparent buttons. Therefore TBSTYLE_LIST does
67 * *not* imply TBSTYLE_FLAT as documented. (GA 8/2001)
79 #include "wine/unicode.h"
85 #include "wine/debug.h"
87 WINE_DEFAULT_DEBUG_CHANNEL(toolbar);
89 static HCURSOR hCursorDrag = NULL;
98 BYTE bDropDownPressed;
103 INT cx; /* manually set size */
117 } IMLENTRY, *PIMLENTRY;
121 DWORD dwStructSize; /* size of TBBUTTON struct */
122 INT nWidth; /* width of the toolbar */
124 RECT rcBound; /* bounding rectangle */
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 */
138 INT nButtonDown; /* toolbar button being pressed or -1 if none */
139 INT nButtonDrag; /* toolbar button being dragged or -1 if none */
141 INT nHotItem; /* index of the "hot" item */
142 SIZE szPadding; /* padding values around button */
143 INT iTopMargin; /* the top margin */
144 INT iListGap; /* default gap between text and image for toolbar with list style */
146 HFONT hFont; /* text font */
147 HIMAGELIST himlInt; /* image list created internally */
148 PIMLENTRY *himlDef; /* default image list array */
149 INT cimlDef; /* default image list array count */
150 PIMLENTRY *himlHot; /* hot image list array */
151 INT cimlHot; /* hot image list array count */
152 PIMLENTRY *himlDis; /* disabled image list array */
153 INT cimlDis; /* disabled image list array count */
154 HWND hwndToolTip; /* handle to tool tip control */
155 HWND hwndNotify; /* handle to the window that gets notifications */
156 HWND hwndSelf; /* my own handle */
157 BOOL bAnchor; /* anchor highlight enabled */
158 BOOL bDoRedraw; /* Redraw status */
159 BOOL bDragOutSent; /* has TBN_DRAGOUT notification been sent for this drag? */
160 BOOL bUnicode; /* Notifications are ASCII (FALSE) or Unicode (TRUE)? */
161 BOOL bCaptured; /* mouse captured? */
162 DWORD dwStyle; /* regular toolbar style */
163 DWORD dwExStyle; /* extended toolbar style */
164 DWORD dwDTFlags; /* DrawText flags */
166 COLORREF clrInsertMark; /* insert mark color */
167 COLORREF clrBtnHighlight; /* color for Flat Separator */
168 COLORREF clrBtnShadow; /* color for Flag Separator */
170 LPWSTR pszTooltipText; /* temporary store for a string > 80 characters
171 * for TTN_GETDISPINFOW notification */
172 TBINSERTMARK tbim; /* info on insertion mark */
173 TBUTTON_INFO *buttons; /* pointer to button array */
174 LPWSTR *strings; /* pointer to string array */
175 TBITMAP_INFO *bitmaps;
176 } TOOLBAR_INFO, *PTOOLBAR_INFO;
179 /* used by customization dialog */
182 PTOOLBAR_INFO tbInfo;
184 } CUSTDLG_INFO, *PCUSTDLG_INFO;
192 } CUSTOMBUTTON, *PCUSTOMBUTTON;
201 #define SEPARATOR_WIDTH 8
203 #define BOTTOM_BORDER 2
204 #define DDARROW_WIDTH 11
205 #define ARROW_HEIGHT 3
206 #define INSERTMARK_WIDTH 2
212 /* vertical padding used in list mode when image is present */
215 /* how wide to treat the bitmap if it isn't present */
216 #define NONLIST_NOTEXT_OFFSET 2
218 #define TOOLBAR_NOWHERE (-1)
220 #define TOOLBAR_GetInfoPtr(hwnd) ((TOOLBAR_INFO *)GetWindowLongPtrW(hwnd,0))
221 #define TOOLBAR_HasText(x, y) (TOOLBAR_GetText(x, y) ? TRUE : FALSE)
222 #define TOOLBAR_HasDropDownArrows(exStyle) ((exStyle & TBSTYLE_EX_DRAWDDARROWS) ? TRUE : FALSE)
224 /* Used to find undocumented extended styles */
225 #define TBSTYLE_EX_ALL (TBSTYLE_EX_DRAWDDARROWS | \
226 TBSTYLE_EX_UNDOC1 | \
227 TBSTYLE_EX_MIXEDBUTTONS | \
228 TBSTYLE_EX_DOUBLEBUFFER | \
229 TBSTYLE_EX_HIDECLIPPEDBUTTONS)
231 /* all of the CCS_ styles */
232 #define COMMON_STYLES (CCS_TOP|CCS_NOMOVEY|CCS_BOTTOM|CCS_NORESIZE| \
233 CCS_NOPARENTALIGN|CCS_ADJUSTABLE|CCS_NODIVIDER|CCS_VERT)
235 #define GETIBITMAP(infoPtr, i) (infoPtr->iVersion >= 5 ? LOWORD(i) : i)
236 #define GETHIMLID(infoPtr, i) (infoPtr->iVersion >= 5 ? HIWORD(i) : 0)
237 #define GETDEFIMAGELIST(infoPtr, id) TOOLBAR_GetImageList(infoPtr->himlDef, infoPtr->cimlDef, id)
238 #define GETHOTIMAGELIST(infoPtr, id) TOOLBAR_GetImageList(infoPtr->himlHot, infoPtr->cimlHot, id)
239 #define GETDISIMAGELIST(infoPtr, id) TOOLBAR_GetImageList(infoPtr->himlDis, infoPtr->cimlDis, id)
241 static const WCHAR themeClass[] = { 'T','o','o','l','b','a','r',0 };
243 static BOOL TOOLBAR_GetButtonInfo(const TOOLBAR_INFO *infoPtr, NMTOOLBARW *nmtb);
244 static BOOL TOOLBAR_IsButtonRemovable(const TOOLBAR_INFO *infoPtr, int iItem, PCUSTOMBUTTON btnInfo);
245 static HIMAGELIST TOOLBAR_GetImageList(const PIMLENTRY *pies, INT cies, INT id);
246 static PIMLENTRY TOOLBAR_GetImageListEntry(const PIMLENTRY *pies, INT cies, INT id);
247 static VOID TOOLBAR_DeleteImageList(PIMLENTRY **pies, INT *cies);
248 static HIMAGELIST TOOLBAR_InsertImageList(PIMLENTRY **pies, INT *cies, HIMAGELIST himl, INT id);
249 static LRESULT TOOLBAR_LButtonDown(HWND hwnd, WPARAM wParam, LPARAM lParam);
250 static void TOOLBAR_SetHotItemEx (TOOLBAR_INFO *infoPtr, INT nHit, DWORD dwReason);
251 static void TOOLBAR_LayoutToolbar(HWND hwnd);
252 static LRESULT TOOLBAR_AutoSize(HWND hwnd);
253 static void TOOLBAR_CheckImageListIconSize(TOOLBAR_INFO *infoPtr);
254 static void TOOLBAR_TooltipSetRect(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *button);
257 TOOLBAR_NotifyFormat(const TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam);
259 static inline int default_top_margin(const TOOLBAR_INFO *infoPtr)
261 return (infoPtr->dwStyle & TBSTYLE_FLAT ? 0 : TOP_BORDER);
265 TOOLBAR_GetText(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *btnPtr)
267 LPWSTR lpText = NULL;
269 /* NOTE: iString == -1 is undocumented */
270 if ((HIWORD(btnPtr->iString) != 0) && (btnPtr->iString != -1))
271 lpText = (LPWSTR)btnPtr->iString;
272 else if ((btnPtr->iString >= 0) && (btnPtr->iString < infoPtr->nNumStrings))
273 lpText = infoPtr->strings[btnPtr->iString];
279 TOOLBAR_DumpButton(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *bP, INT btn_num, BOOL internal)
281 if (TRACE_ON(toolbar)){
282 TRACE("button %d id %d, bitmap=%d, state=%02x, style=%02x, data=%08lx, stringid=0x%08lx\n",
283 btn_num, bP->idCommand, GETIBITMAP(infoPtr, bP->iBitmap),
284 bP->fsState, bP->fsStyle, bP->dwData, bP->iString);
285 TRACE("string %s\n", debugstr_w(TOOLBAR_GetText(infoPtr,bP)));
287 TRACE("button %d id %d, hot=%s, row=%d, rect=(%s)\n",
288 btn_num, bP->idCommand,
289 (bP->bHot) ? "TRUE":"FALSE", bP->nRow,
290 wine_dbgstr_rect(&bP->rect));
296 TOOLBAR_DumpToolbar(const TOOLBAR_INFO *iP, INT line)
298 if (TRACE_ON(toolbar)) {
301 TRACE("toolbar %p at line %d, exStyle=%08x, buttons=%d, bitmaps=%d, strings=%d, style=%08x\n",
303 iP->dwExStyle, iP->nNumButtons, iP->nNumBitmaps,
304 iP->nNumStrings, iP->dwStyle);
305 TRACE("toolbar %p at line %d, himlInt=%p, himlDef=%p, himlHot=%p, himlDis=%p, redrawable=%s\n",
307 iP->himlInt, iP->himlDef, iP->himlHot, iP->himlDis,
308 (iP->bDoRedraw) ? "TRUE" : "FALSE");
309 for(i=0; i<iP->nNumButtons; i++) {
310 TOOLBAR_DumpButton(iP, &iP->buttons[i], i, TRUE);
316 /***********************************************************************
319 * This function validates that the styles set are implemented and
320 * issues FIXME's warning of possible problems. In a perfect world this
321 * function should be null.
324 TOOLBAR_CheckStyle (HWND hwnd, DWORD dwStyle)
326 if (dwStyle & TBSTYLE_REGISTERDROP)
327 FIXME("[%p] TBSTYLE_REGISTERDROP not implemented\n", hwnd);
332 TOOLBAR_SendNotify (NMHDR *nmhdr, const TOOLBAR_INFO *infoPtr, UINT code)
334 if(!IsWindow(infoPtr->hwndSelf))
335 return 0; /* we have just been destroyed */
337 nmhdr->idFrom = GetDlgCtrlID (infoPtr->hwndSelf);
338 nmhdr->hwndFrom = infoPtr->hwndSelf;
341 TRACE("to window %p, code=%08x, %s\n", infoPtr->hwndNotify, code,
342 (infoPtr->bUnicode) ? "via Unicode" : "via ANSI");
344 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, nmhdr->idFrom, (LPARAM)nmhdr);
347 /***********************************************************************
348 * TOOLBAR_GetBitmapIndex
350 * This function returns the bitmap index associated with a button.
351 * If the button specifies I_IMAGECALLBACK, then the TBN_GETDISPINFO
352 * is issued to retrieve the index.
355 TOOLBAR_GetBitmapIndex(const TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr)
357 INT ret = btnPtr->iBitmap;
359 if (ret == I_IMAGECALLBACK)
361 /* issue TBN_GETDISPINFO */
364 memset(&nmgd, 0, sizeof(nmgd));
365 nmgd.idCommand = btnPtr->idCommand;
366 nmgd.lParam = btnPtr->dwData;
367 nmgd.dwMask = TBNF_IMAGE;
369 /* Windows also send TBN_GETDISPINFOW even if the control is ANSI */
370 TOOLBAR_SendNotify(&nmgd.hdr, infoPtr, TBN_GETDISPINFOW);
371 if (nmgd.dwMask & TBNF_DI_SETITEM)
372 btnPtr->iBitmap = nmgd.iImage;
374 TRACE("TBN_GETDISPINFO returned bitmap id %d, mask=%08x, nNumBitmaps=%d\n",
375 ret, nmgd.dwMask, infoPtr->nNumBitmaps);
378 if (ret != I_IMAGENONE)
379 ret = GETIBITMAP(infoPtr, ret);
386 TOOLBAR_IsValidBitmapIndex(const TOOLBAR_INFO *infoPtr, INT index)
389 INT id = GETHIMLID(infoPtr, index);
390 INT iBitmap = GETIBITMAP(infoPtr, index);
392 if (((himl = GETDEFIMAGELIST(infoPtr, id)) &&
393 iBitmap >= 0 && iBitmap < ImageList_GetImageCount(himl)) ||
394 (index == I_IMAGECALLBACK))
402 TOOLBAR_IsValidImageList(const TOOLBAR_INFO *infoPtr, INT index)
404 HIMAGELIST himl = GETDEFIMAGELIST(infoPtr, GETHIMLID(infoPtr, index));
405 return (himl != NULL) && (ImageList_GetImageCount(himl) > 0);
409 /***********************************************************************
410 * TOOLBAR_GetImageListForDrawing
412 * This function validates the bitmap index (including I_IMAGECALLBACK
413 * functionality) and returns the corresponding image list.
416 TOOLBAR_GetImageListForDrawing (const TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr,
417 IMAGE_LIST_TYPE imagelist, INT * index)
421 if (!TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap)) {
422 if (btnPtr->iBitmap == I_IMAGENONE) return NULL;
423 ERR("bitmap for ID %d, index %d is not valid, number of bitmaps in imagelist: %d\n",
424 HIWORD(btnPtr->iBitmap), LOWORD(btnPtr->iBitmap), infoPtr->nNumBitmaps);
428 if ((*index = TOOLBAR_GetBitmapIndex(infoPtr, btnPtr)) < 0) {
429 if ((*index == I_IMAGECALLBACK) ||
430 (*index == I_IMAGENONE)) return NULL;
431 ERR("TBN_GETDISPINFO returned invalid index %d\n",
438 case IMAGE_LIST_DEFAULT:
439 himl = GETDEFIMAGELIST(infoPtr, GETHIMLID(infoPtr, btnPtr->iBitmap));
442 himl = GETHOTIMAGELIST(infoPtr, GETHIMLID(infoPtr, btnPtr->iBitmap));
444 case IMAGE_LIST_DISABLED:
445 himl = GETDISIMAGELIST(infoPtr, GETHIMLID(infoPtr, btnPtr->iBitmap));
449 FIXME("Shouldn't reach here\n");
453 TRACE("no image list\n");
460 TOOLBAR_DrawFlatSeparator (const RECT *lpRect, HDC hdc, const TOOLBAR_INFO *infoPtr)
463 COLORREF oldcolor, newcolor;
465 myrect.left = (lpRect->left + lpRect->right) / 2 - 1;
466 myrect.right = myrect.left + 1;
467 myrect.top = lpRect->top + 2;
468 myrect.bottom = lpRect->bottom - 2;
470 newcolor = (infoPtr->clrBtnShadow == CLR_DEFAULT) ?
471 comctl32_color.clrBtnShadow : infoPtr->clrBtnShadow;
472 oldcolor = SetBkColor (hdc, newcolor);
473 ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
475 myrect.left = myrect.right;
476 myrect.right = myrect.left + 1;
478 newcolor = (infoPtr->clrBtnHighlight == CLR_DEFAULT) ?
479 comctl32_color.clrBtnHighlight : infoPtr->clrBtnHighlight;
480 SetBkColor (hdc, newcolor);
481 ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
483 SetBkColor (hdc, oldcolor);
487 /***********************************************************************
488 * TOOLBAR_DrawDDFlatSeparator
490 * This function draws the separator that was flagged as BTNS_DROPDOWN.
491 * In this case, the separator is a pixel high line of COLOR_BTNSHADOW,
492 * followed by a pixel high line of COLOR_BTNHIGHLIGHT. These separators
493 * are horizontal as opposed to the vertical separators for not dropdown
496 * FIXME: It is possible that the height of each line is really SM_CYBORDER.
499 TOOLBAR_DrawDDFlatSeparator (const RECT *lpRect, HDC hdc,
500 const TOOLBAR_INFO *infoPtr)
503 COLORREF oldcolor, newcolor;
505 myrect.left = lpRect->left;
506 myrect.right = lpRect->right;
507 myrect.top = lpRect->top + (lpRect->bottom - lpRect->top - 2)/2;
508 myrect.bottom = myrect.top + 1;
510 InflateRect (&myrect, -2, 0);
512 TRACE("rect=(%s)\n", wine_dbgstr_rect(&myrect));
514 newcolor = (infoPtr->clrBtnShadow == CLR_DEFAULT) ?
515 comctl32_color.clrBtnShadow : infoPtr->clrBtnShadow;
516 oldcolor = SetBkColor (hdc, newcolor);
517 ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
519 myrect.top = myrect.bottom;
520 myrect.bottom = myrect.top + 1;
522 newcolor = (infoPtr->clrBtnHighlight == CLR_DEFAULT) ?
523 comctl32_color.clrBtnHighlight : infoPtr->clrBtnHighlight;
524 SetBkColor (hdc, newcolor);
525 ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &myrect, 0, 0, 0);
527 SetBkColor (hdc, oldcolor);
532 TOOLBAR_DrawArrow (HDC hdc, INT left, INT top, COLORREF clr)
537 if (!(hPen = CreatePen( PS_SOLID, 1, clr))) return;
538 hOldPen = SelectObject ( hdc, hPen );
541 MoveToEx (hdc, x, y, NULL);
542 LineTo (hdc, x+5, y++); x++;
543 MoveToEx (hdc, x, y, NULL);
544 LineTo (hdc, x+3, y++); x++;
545 MoveToEx (hdc, x, y, NULL);
546 LineTo (hdc, x+1, y);
547 SelectObject( hdc, hOldPen );
548 DeleteObject( hPen );
552 * Draw the text string for this button.
553 * note: infoPtr->himlDis *SHOULD* be non-zero when infoPtr->himlDef
554 * is non-zero, so we can simply check himlDef to see if we have
558 TOOLBAR_DrawString (const TOOLBAR_INFO *infoPtr, RECT *rcText, LPCWSTR lpText,
559 const NMTBCUSTOMDRAW *tbcd, DWORD dwItemCDFlag)
561 HDC hdc = tbcd->nmcd.hdc;
564 COLORREF clrOldBk = 0;
566 UINT state = tbcd->nmcd.uItemState;
570 TRACE("string=%s rect=(%s)\n", debugstr_w(lpText),
571 wine_dbgstr_rect(rcText));
573 hOldFont = SelectObject (hdc, infoPtr->hFont);
574 if ((state & CDIS_HOT) && (dwItemCDFlag & TBCDRF_HILITEHOTTRACK )) {
575 clrOld = SetTextColor (hdc, tbcd->clrTextHighlight);
577 else if (state & CDIS_DISABLED) {
578 clrOld = SetTextColor (hdc, tbcd->clrBtnHighlight);
579 OffsetRect (rcText, 1, 1);
580 DrawTextW (hdc, lpText, -1, rcText, infoPtr->dwDTFlags);
581 SetTextColor (hdc, comctl32_color.clr3dShadow);
582 OffsetRect (rcText, -1, -1);
584 else if (state & CDIS_INDETERMINATE) {
585 clrOld = SetTextColor (hdc, comctl32_color.clr3dShadow);
587 else if ((state & CDIS_MARKED) && !(dwItemCDFlag & TBCDRF_NOMARK)) {
588 clrOld = SetTextColor (hdc, tbcd->clrTextHighlight);
589 clrOldBk = SetBkColor (hdc, tbcd->clrMark);
590 oldBkMode = SetBkMode (hdc, tbcd->nHLStringBkMode);
593 clrOld = SetTextColor (hdc, tbcd->clrText);
596 DrawTextW (hdc, lpText, -1, rcText, infoPtr->dwDTFlags);
597 SetTextColor (hdc, clrOld);
598 if ((state & CDIS_MARKED) && !(dwItemCDFlag & TBCDRF_NOMARK))
600 SetBkColor (hdc, clrOldBk);
601 SetBkMode (hdc, oldBkMode);
603 SelectObject (hdc, hOldFont);
609 TOOLBAR_DrawPattern (const RECT *lpRect, const NMTBCUSTOMDRAW *tbcd)
611 HDC hdc = tbcd->nmcd.hdc;
612 HBRUSH hbr = SelectObject (hdc, tbcd->hbrMonoDither);
615 INT cx = lpRect->right - lpRect->left;
616 INT cy = lpRect->bottom - lpRect->top;
617 INT cxEdge = GetSystemMetrics(SM_CXEDGE);
618 INT cyEdge = GetSystemMetrics(SM_CYEDGE);
619 clrTextOld = SetTextColor(hdc, tbcd->clrBtnHighlight);
620 clrBkOld = SetBkColor(hdc, tbcd->clrBtnFace);
621 PatBlt (hdc, lpRect->left + cxEdge, lpRect->top + cyEdge,
622 cx - (2 * cxEdge), cy - (2 * cyEdge), PATCOPY);
623 SetBkColor(hdc, clrBkOld);
624 SetTextColor(hdc, clrTextOld);
625 SelectObject (hdc, hbr);
629 static void TOOLBAR_DrawMasked(HIMAGELIST himl, int index, HDC hdc, INT x, INT y, UINT draw_flags)
632 HBITMAP hbmMask, hbmImage;
633 HDC hdcMask, hdcImage;
635 ImageList_GetIconSize(himl, &cx, &cy);
637 /* Create src image */
638 hdcImage = CreateCompatibleDC(hdc);
639 hbmImage = CreateCompatibleBitmap(hdc, cx, cy);
640 SelectObject(hdcImage, hbmImage);
641 ImageList_DrawEx(himl, index, hdcImage, 0, 0, cx, cy,
642 RGB(0xff, 0xff, 0xff), RGB(0,0,0), draw_flags);
645 hdcMask = CreateCompatibleDC(0);
646 hbmMask = CreateBitmap(cx, cy, 1, 1, NULL);
647 SelectObject(hdcMask, hbmMask);
649 /* Remove the background and all white pixels */
650 ImageList_DrawEx(himl, index, hdcMask, 0, 0, cx, cy,
651 RGB(0xff, 0xff, 0xff), RGB(0,0,0), ILD_MASK);
652 SetBkColor(hdcImage, RGB(0xff, 0xff, 0xff));
653 BitBlt(hdcMask, 0, 0, cx, cy, hdcImage, 0, 0, NOTSRCERASE);
655 /* draw the new mask 'etched' to hdc */
656 SetBkColor(hdc, RGB(255, 255, 255));
657 SelectObject(hdc, GetSysColorBrush(COLOR_3DHILIGHT));
658 /* E20746 op code is (Dst ^ (Src & (Pat ^ Dst))) */
659 BitBlt(hdc, x + 1, y + 1, cx, cy, hdcMask, 0, 0, 0xE20746);
660 SelectObject(hdc, GetSysColorBrush(COLOR_3DSHADOW));
661 BitBlt(hdc, x, y, cx, cy, hdcMask, 0, 0, 0xE20746);
664 DeleteObject(hbmImage);
666 DeleteObject (hbmMask);
672 TOOLBAR_TranslateState(const TBUTTON_INFO *btnPtr)
676 retstate |= (btnPtr->fsState & TBSTATE_CHECKED) ? CDIS_CHECKED : 0;
677 retstate |= (btnPtr->fsState & TBSTATE_PRESSED) ? CDIS_SELECTED : 0;
678 retstate |= (btnPtr->fsState & TBSTATE_ENABLED) ? 0 : CDIS_DISABLED;
679 retstate |= (btnPtr->fsState & TBSTATE_MARKED ) ? CDIS_MARKED : 0;
680 retstate |= (btnPtr->bHot ) ? CDIS_HOT : 0;
681 retstate |= ((btnPtr->fsState & (TBSTATE_ENABLED|TBSTATE_INDETERMINATE)) == (TBSTATE_ENABLED|TBSTATE_INDETERMINATE)) ? CDIS_INDETERMINATE : 0;
682 /* NOTE: we don't set CDIS_GRAYED, CDIS_FOCUS, CDIS_DEFAULT */
686 /* draws the image on a toolbar button */
688 TOOLBAR_DrawImage(const TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr, INT left, INT top,
689 const NMTBCUSTOMDRAW *tbcd, DWORD dwItemCDFlag)
691 HIMAGELIST himl = NULL;
692 BOOL draw_masked = FALSE;
695 UINT draw_flags = ILD_TRANSPARENT;
697 if (tbcd->nmcd.uItemState & (CDIS_DISABLED | CDIS_INDETERMINATE))
699 himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DISABLED, &index);
702 himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DEFAULT, &index);
706 else if (tbcd->nmcd.uItemState & CDIS_CHECKED ||
707 ((tbcd->nmcd.uItemState & CDIS_HOT)
708 && ((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf))))
710 /* if hot, attempt to draw with hot image list, if fails,
711 use default image list */
712 himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_HOT, &index);
714 himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DEFAULT, &index);
717 himl = TOOLBAR_GetImageListForDrawing(infoPtr, btnPtr, IMAGE_LIST_DEFAULT, &index);
722 if (!(dwItemCDFlag & TBCDRF_NOOFFSET) &&
723 (tbcd->nmcd.uItemState & (CDIS_SELECTED | CDIS_CHECKED)))
726 if (!(dwItemCDFlag & TBCDRF_NOMARK) &&
727 (tbcd->nmcd.uItemState & CDIS_MARKED))
728 draw_flags |= ILD_BLEND50;
730 TRACE("drawing index=%d, himl=%p, left=%d, top=%d, offset=%d\n",
731 index, himl, left, top, offset);
734 TOOLBAR_DrawMasked (himl, index, tbcd->nmcd.hdc, left + offset, top + offset, draw_flags);
736 ImageList_Draw (himl, index, tbcd->nmcd.hdc, left + offset, top + offset, draw_flags);
739 /* draws a blank frame for a toolbar button */
741 TOOLBAR_DrawFrame(const TOOLBAR_INFO *infoPtr, const NMTBCUSTOMDRAW *tbcd, DWORD dwItemCDFlag)
743 HDC hdc = tbcd->nmcd.hdc;
744 RECT rc = tbcd->nmcd.rc;
745 /* if the state is disabled or indeterminate then the button
746 * cannot have an interactive look like pressed or hot */
747 BOOL non_interactive_state = (tbcd->nmcd.uItemState & CDIS_DISABLED) ||
748 (tbcd->nmcd.uItemState & CDIS_INDETERMINATE);
749 BOOL pressed_look = !non_interactive_state &&
750 ((tbcd->nmcd.uItemState & CDIS_SELECTED) ||
751 (tbcd->nmcd.uItemState & CDIS_CHECKED));
753 /* app don't want us to draw any edges */
754 if (dwItemCDFlag & TBCDRF_NOEDGES)
757 if (infoPtr->dwStyle & TBSTYLE_FLAT)
760 DrawEdge (hdc, &rc, BDR_SUNKENOUTER, BF_RECT);
761 else if ((tbcd->nmcd.uItemState & CDIS_HOT) && !non_interactive_state)
762 DrawEdge (hdc, &rc, BDR_RAISEDINNER, BF_RECT);
767 DrawEdge (hdc, &rc, EDGE_SUNKEN, BF_RECT | BF_MIDDLE);
769 DrawEdge (hdc, &rc, EDGE_RAISED,
770 BF_SOFT | BF_RECT | BF_MIDDLE);
775 TOOLBAR_DrawSepDDArrow(const TOOLBAR_INFO *infoPtr, const NMTBCUSTOMDRAW *tbcd, RECT *rcArrow, BOOL bDropDownPressed, DWORD dwItemCDFlag)
777 HDC hdc = tbcd->nmcd.hdc;
779 BOOL pressed = bDropDownPressed ||
780 (tbcd->nmcd.uItemState & (CDIS_SELECTED | CDIS_CHECKED));
782 if (infoPtr->dwStyle & TBSTYLE_FLAT)
785 DrawEdge (hdc, rcArrow, BDR_SUNKENOUTER, BF_RECT);
786 else if ( (tbcd->nmcd.uItemState & CDIS_HOT) &&
787 !(tbcd->nmcd.uItemState & CDIS_DISABLED) &&
788 !(tbcd->nmcd.uItemState & CDIS_INDETERMINATE))
789 DrawEdge (hdc, rcArrow, BDR_RAISEDINNER, BF_RECT);
794 DrawEdge (hdc, rcArrow, EDGE_SUNKEN, BF_RECT | BF_MIDDLE);
796 DrawEdge (hdc, rcArrow, EDGE_RAISED,
797 BF_SOFT | BF_RECT | BF_MIDDLE);
801 offset = (dwItemCDFlag & TBCDRF_NOOFFSET) ? 0 : 1;
803 if (tbcd->nmcd.uItemState & (CDIS_DISABLED | CDIS_INDETERMINATE))
805 TOOLBAR_DrawArrow(hdc, rcArrow->left+1, rcArrow->top+1 + (rcArrow->bottom - rcArrow->top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnHighlight);
806 TOOLBAR_DrawArrow(hdc, rcArrow->left, rcArrow->top + (rcArrow->bottom - rcArrow->top - ARROW_HEIGHT) / 2, comctl32_color.clr3dShadow);
809 TOOLBAR_DrawArrow(hdc, rcArrow->left + offset, rcArrow->top + offset + (rcArrow->bottom - rcArrow->top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnText);
812 /* draws a complete toolbar button */
814 TOOLBAR_DrawButton (HWND hwnd, TBUTTON_INFO *btnPtr, HDC hdc, DWORD dwBaseCustDraw)
816 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
817 DWORD dwStyle = infoPtr->dwStyle;
818 BOOL hasDropDownArrow = (TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle) &&
819 (btnPtr->fsStyle & BTNS_DROPDOWN)) ||
820 (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN);
821 BOOL drawSepDropDownArrow = hasDropDownArrow &&
822 (~btnPtr->fsStyle & BTNS_WHOLEDROPDOWN);
823 RECT rc, rcArrow, rcBitmap, rcText;
824 LPWSTR lpText = NULL;
829 DWORD dwItemCustDraw;
831 HTHEME theme = GetWindowTheme (hwnd);
834 CopyRect (&rcArrow, &rc);
836 /* separator - doesn't send NM_CUSTOMDRAW */
837 if (btnPtr->fsStyle & BTNS_SEP) {
840 DrawThemeBackground (theme, hdc,
841 (dwStyle & CCS_VERT) ? TP_SEPARATORVERT : TP_SEPARATOR, 0,
845 /* with the FLAT style, iBitmap is the width and has already */
846 /* been taken into consideration in calculating the width */
847 /* so now we need to draw the vertical separator */
848 /* empirical tests show that iBitmap can/will be non-zero */
849 /* when drawing the vertical bar... */
850 if ((dwStyle & TBSTYLE_FLAT) /* && (btnPtr->iBitmap == 0) */) {
851 if (btnPtr->fsStyle & BTNS_DROPDOWN)
852 TOOLBAR_DrawDDFlatSeparator (&rc, hdc, infoPtr);
854 TOOLBAR_DrawFlatSeparator (&rc, hdc, infoPtr);
856 else if (btnPtr->fsStyle != BTNS_SEP) {
857 FIXME("Draw some kind of separator: fsStyle=%x\n",
863 /* get a pointer to the text */
864 lpText = TOOLBAR_GetText(infoPtr, btnPtr);
866 if (hasDropDownArrow)
870 if (dwStyle & TBSTYLE_FLAT)
871 right = max(rc.left, rc.right - DDARROW_WIDTH);
873 right = max(rc.left, rc.right - DDARROW_WIDTH - 2);
875 if (drawSepDropDownArrow)
878 rcArrow.left = right;
881 /* copy text & bitmap rects after adjusting for drop-down arrow
882 * so that text & bitmap is centered in the rectangle not containing
884 CopyRect(&rcText, &rc);
885 CopyRect(&rcBitmap, &rc);
887 /* Center the bitmap horizontally and vertically */
888 if (dwStyle & TBSTYLE_LIST)
891 infoPtr->nMaxTextRows > 0 &&
892 (!(infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) ||
893 (btnPtr->fsStyle & BTNS_SHOWTEXT)) )
894 rcBitmap.left += GetSystemMetrics(SM_CXEDGE) + infoPtr->szPadding.cx / 2;
896 rcBitmap.left += GetSystemMetrics(SM_CXEDGE) + infoPtr->iListGap / 2;
899 rcBitmap.left += ((rc.right - rc.left) - infoPtr->nBitmapWidth) / 2;
901 rcBitmap.top += infoPtr->szPadding.cy / 2;
903 TRACE("iBitmap=%d, start=(%d,%d) w=%d, h=%d\n",
904 btnPtr->iBitmap, rcBitmap.left, rcBitmap.top,
905 infoPtr->nBitmapWidth, infoPtr->nBitmapHeight);
906 TRACE("Text=%s\n", debugstr_w(lpText));
907 TRACE("iListGap=%d, padding = { %d, %d }\n", infoPtr->iListGap, infoPtr->szPadding.cx, infoPtr->szPadding.cy);
909 /* calculate text position */
912 rcText.left += GetSystemMetrics(SM_CXEDGE);
913 rcText.right -= GetSystemMetrics(SM_CXEDGE);
914 if (dwStyle & TBSTYLE_LIST)
916 rcText.left += infoPtr->nBitmapWidth + infoPtr->iListGap + 2;
920 if (ImageList_GetImageCount(GETDEFIMAGELIST(infoPtr, 0)) > 0)
921 rcText.top += infoPtr->szPadding.cy/2 + infoPtr->nBitmapHeight + 1;
923 rcText.top += infoPtr->szPadding.cy/2 + 2;
927 /* Initialize fields in all cases, because we use these later
928 * NOTE: applications can and do alter these to customize their
930 ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
931 tbcd.clrText = comctl32_color.clrBtnText;
932 tbcd.clrTextHighlight = comctl32_color.clrHighlightText;
933 tbcd.clrBtnFace = comctl32_color.clrBtnFace;
934 tbcd.clrBtnHighlight = comctl32_color.clrBtnHighlight;
935 tbcd.clrMark = comctl32_color.clrHighlight;
936 tbcd.clrHighlightHotTrack = 0;
937 tbcd.nStringBkMode = TRANSPARENT;
938 tbcd.nHLStringBkMode = OPAQUE;
939 /* MSDN says that this is the text rectangle.
940 * But (why always a but) tracing of v5.7 of native shows
941 * that this is really a *relative* rectangle based on the
942 * the nmcd.rc. Also the left and top are always 0 ignoring
943 * any bitmap that might be present. */
944 tbcd.rcText.left = 0;
946 tbcd.rcText.right = rcText.right - rc.left;
947 tbcd.rcText.bottom = rcText.bottom - rc.top;
948 tbcd.nmcd.uItemState = TOOLBAR_TranslateState(btnPtr);
951 tbcd.hbrMonoDither = COMCTL32_hPattern55AABrush;
953 /* FIXME: what are these used for? */
957 /* Issue Item Prepaint notify */
960 if (dwBaseCustDraw & CDRF_NOTIFYITEMDRAW)
962 tbcd.nmcd.dwDrawStage = CDDS_ITEMPREPAINT;
963 tbcd.nmcd.dwItemSpec = btnPtr->idCommand;
964 tbcd.nmcd.lItemlParam = btnPtr->dwData;
965 ntfret = TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
966 /* reset these fields so the user can't alter the behaviour like native */
970 dwItemCustDraw = ntfret & 0xffff;
971 dwItemCDFlag = ntfret & 0xffff0000;
972 if (dwItemCustDraw & CDRF_SKIPDEFAULT)
974 /* save the only part of the rect that the user can change */
975 rcText.right = tbcd.rcText.right + rc.left;
976 rcText.bottom = tbcd.rcText.bottom + rc.top;
979 if (!(dwItemCDFlag & TBCDRF_NOOFFSET) &&
980 (btnPtr->fsState & (TBSTATE_PRESSED | TBSTATE_CHECKED)))
981 OffsetRect(&rcText, 1, 1);
983 if (!(tbcd.nmcd.uItemState & CDIS_HOT) &&
984 ((tbcd.nmcd.uItemState & CDIS_CHECKED) || (tbcd.nmcd.uItemState & CDIS_INDETERMINATE)))
985 TOOLBAR_DrawPattern (&rc, &tbcd);
987 if (((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf))
988 && (tbcd.nmcd.uItemState & CDIS_HOT))
990 if ( dwItemCDFlag & TBCDRF_HILITEHOTTRACK )
994 oldclr = SetBkColor(hdc, tbcd.clrHighlightHotTrack);
995 ExtTextOutW(hdc, 0, 0, ETO_OPAQUE, &rc, NULL, 0, 0);
996 if (hasDropDownArrow)
997 ExtTextOutW(hdc, 0, 0, ETO_OPAQUE, &rcArrow, NULL, 0, 0);
998 SetBkColor(hdc, oldclr);
1004 int partId = drawSepDropDownArrow ? TP_SPLITBUTTON : TP_BUTTON;
1005 int stateId = TS_NORMAL;
1007 if (tbcd.nmcd.uItemState & CDIS_DISABLED)
1008 stateId = TS_DISABLED;
1009 else if (tbcd.nmcd.uItemState & CDIS_SELECTED)
1010 stateId = TS_PRESSED;
1011 else if (tbcd.nmcd.uItemState & CDIS_CHECKED)
1012 stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_HOT;
1013 else if ((tbcd.nmcd.uItemState & CDIS_HOT)
1014 || (drawSepDropDownArrow && btnPtr->bDropDownPressed))
1017 DrawThemeBackground (theme, hdc, partId, stateId, &tbcd.nmcd.rc, NULL);
1020 TOOLBAR_DrawFrame(infoPtr, &tbcd, dwItemCDFlag);
1022 if (drawSepDropDownArrow)
1026 int stateId = TS_NORMAL;
1028 if (tbcd.nmcd.uItemState & CDIS_DISABLED)
1029 stateId = TS_DISABLED;
1030 else if (btnPtr->bDropDownPressed || (tbcd.nmcd.uItemState & CDIS_SELECTED))
1031 stateId = TS_PRESSED;
1032 else if (tbcd.nmcd.uItemState & CDIS_CHECKED)
1033 stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_HOT;
1034 else if (tbcd.nmcd.uItemState & CDIS_HOT)
1037 DrawThemeBackground (theme, hdc, TP_DROPDOWNBUTTON, stateId, &rcArrow, NULL);
1038 DrawThemeBackground (theme, hdc, TP_SPLITBUTTONDROPDOWN, stateId, &rcArrow, NULL);
1041 TOOLBAR_DrawSepDDArrow(infoPtr, &tbcd, &rcArrow, btnPtr->bDropDownPressed, dwItemCDFlag);
1044 oldBkMode = SetBkMode (hdc, tbcd.nStringBkMode);
1045 if (!(infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) || (btnPtr->fsStyle & BTNS_SHOWTEXT))
1046 TOOLBAR_DrawString (infoPtr, &rcText, lpText, &tbcd, dwItemCDFlag);
1047 SetBkMode (hdc, oldBkMode);
1049 TOOLBAR_DrawImage(infoPtr, btnPtr, rcBitmap.left, rcBitmap.top, &tbcd, dwItemCDFlag);
1051 if (hasDropDownArrow && !drawSepDropDownArrow)
1053 if (tbcd.nmcd.uItemState & (CDIS_DISABLED | CDIS_INDETERMINATE))
1055 TOOLBAR_DrawArrow(hdc, rcArrow.left+1, rcArrow.top+1 + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnHighlight);
1056 TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clr3dShadow);
1058 else if (tbcd.nmcd.uItemState & (CDIS_SELECTED | CDIS_CHECKED))
1060 offset = (dwItemCDFlag & TBCDRF_NOOFFSET) ? 0 : 1;
1061 TOOLBAR_DrawArrow(hdc, rcArrow.left + offset, rcArrow.top + offset + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnText);
1064 TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top + (rcArrow.bottom - rcArrow.top - ARROW_HEIGHT) / 2, comctl32_color.clrBtnText);
1067 if (dwItemCustDraw & CDRF_NOTIFYPOSTPAINT)
1069 tbcd.nmcd.dwDrawStage = CDDS_ITEMPOSTPAINT;
1070 TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
1077 TOOLBAR_Refresh (HWND hwnd, HDC hdc, const PAINTSTRUCT *ps)
1079 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1080 TBUTTON_INFO *btnPtr;
1082 RECT rcTemp, rcClient;
1083 NMTBCUSTOMDRAW tbcd;
1085 DWORD dwBaseCustDraw;
1087 /* the app has told us not to redraw the toolbar */
1088 if (!infoPtr->bDoRedraw)
1091 /* if imagelist belongs to the app, it can be changed
1092 by the app after setting it */
1093 if (GETDEFIMAGELIST(infoPtr, 0) != infoPtr->himlInt)
1095 infoPtr->nNumBitmaps = 0;
1096 for (i = 0; i < infoPtr->cimlDef; i++)
1097 infoPtr->nNumBitmaps += ImageList_GetImageCount(infoPtr->himlDef[i]->himl);
1100 TOOLBAR_DumpToolbar (infoPtr, __LINE__);
1102 /* change the imagelist icon size if we manage the list and it is necessary */
1103 TOOLBAR_CheckImageListIconSize(infoPtr);
1105 /* Send initial notify */
1106 ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
1107 tbcd.nmcd.dwDrawStage = CDDS_PREPAINT;
1108 tbcd.nmcd.hdc = hdc;
1109 tbcd.nmcd.rc = ps->rcPaint;
1110 ntfret = TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
1111 dwBaseCustDraw = ntfret & 0xffff;
1113 GetClientRect(hwnd, &rcClient);
1115 /* redraw necessary buttons */
1116 btnPtr = infoPtr->buttons;
1117 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++)
1120 if (!RectVisible(hdc, &btnPtr->rect))
1122 if (infoPtr->dwExStyle & TBSTYLE_EX_HIDECLIPPEDBUTTONS)
1124 IntersectRect(&rcTemp, &rcClient, &btnPtr->rect);
1125 bDraw = EqualRect(&rcTemp, &btnPtr->rect);
1129 bDraw &= IntersectRect(&rcTemp, &(ps->rcPaint), &(btnPtr->rect));
1130 bDraw = (btnPtr->fsState & TBSTATE_HIDDEN) ? FALSE : bDraw;
1132 TOOLBAR_DrawButton(hwnd, btnPtr, hdc, dwBaseCustDraw);
1135 /* draw insert mark if required */
1136 if (infoPtr->tbim.iButton != -1)
1138 RECT rcButton = infoPtr->buttons[infoPtr->tbim.iButton].rect;
1140 rcInsertMark.top = rcButton.top;
1141 rcInsertMark.bottom = rcButton.bottom;
1142 if (infoPtr->tbim.dwFlags & TBIMHT_AFTER)
1143 rcInsertMark.left = rcInsertMark.right = rcButton.right;
1145 rcInsertMark.left = rcInsertMark.right = rcButton.left - INSERTMARK_WIDTH;
1146 COMCTL32_DrawInsertMark(hdc, &rcInsertMark, infoPtr->clrInsertMark, FALSE);
1149 if (dwBaseCustDraw & CDRF_NOTIFYPOSTPAINT)
1151 ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
1152 tbcd.nmcd.dwDrawStage = CDDS_POSTPAINT;
1153 tbcd.nmcd.hdc = hdc;
1154 tbcd.nmcd.rc = ps->rcPaint;
1155 TOOLBAR_SendNotify(&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
1159 /***********************************************************************
1160 * TOOLBAR_MeasureString
1162 * This function gets the width and height of a string in pixels. This
1163 * is done first by using GetTextExtentPoint to get the basic width
1164 * and height. The DrawText is called with DT_CALCRECT to get the exact
1165 * width. The reason is because the text may have more than one "&" (or
1166 * prefix characters as M$ likes to call them). The prefix character
1167 * indicates where the underline goes, except for the string "&&" which
1168 * is reduced to a single "&". GetTextExtentPoint does not process these
1169 * only DrawText does. Note that the BTNS_NOPREFIX is handled here.
1172 TOOLBAR_MeasureString(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *btnPtr,
1173 HDC hdc, LPSIZE lpSize)
1180 if (infoPtr->nMaxTextRows > 0 &&
1181 !(btnPtr->fsState & TBSTATE_HIDDEN) &&
1182 (!(infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) ||
1183 (btnPtr->fsStyle & BTNS_SHOWTEXT)) )
1185 LPWSTR lpText = TOOLBAR_GetText(infoPtr, btnPtr);
1187 if(lpText != NULL) {
1188 /* first get size of all the text */
1189 GetTextExtentPoint32W (hdc, lpText, strlenW (lpText), lpSize);
1191 /* feed above size into the rectangle for DrawText */
1192 myrect.left = myrect.top = 0;
1193 myrect.right = lpSize->cx;
1194 myrect.bottom = lpSize->cy;
1196 /* Use DrawText to get true size as drawn (less pesky "&") */
1197 DrawTextW (hdc, lpText, -1, &myrect, DT_VCENTER | DT_SINGLELINE |
1198 DT_CALCRECT | ((btnPtr->fsStyle & BTNS_NOPREFIX) ?
1201 /* feed back to caller */
1202 lpSize->cx = myrect.right;
1203 lpSize->cy = myrect.bottom;
1207 TRACE("string size %d x %d!\n", lpSize->cx, lpSize->cy);
1210 /***********************************************************************
1211 * TOOLBAR_CalcStrings
1213 * This function walks through each string and measures it and returns
1214 * the largest height and width to caller.
1217 TOOLBAR_CalcStrings (HWND hwnd, LPSIZE lpSize)
1219 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1220 TBUTTON_INFO *btnPtr;
1229 if (infoPtr->nMaxTextRows == 0)
1233 hOldFont = SelectObject (hdc, infoPtr->hFont);
1235 if (infoPtr->nNumButtons == 0 && infoPtr->nNumStrings > 0)
1239 GetTextMetricsW(hdc, &tm);
1240 lpSize->cy = tm.tmHeight;
1243 btnPtr = infoPtr->buttons;
1244 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
1245 if(TOOLBAR_HasText(infoPtr, btnPtr))
1247 TOOLBAR_MeasureString(infoPtr, btnPtr, hdc, &sz);
1248 if (sz.cx > lpSize->cx)
1250 if (sz.cy > lpSize->cy)
1255 SelectObject (hdc, hOldFont);
1256 ReleaseDC (hwnd, hdc);
1258 TRACE("max string size %d x %d!\n", lpSize->cx, lpSize->cy);
1261 /***********************************************************************
1262 * TOOLBAR_WrapToolbar
1264 * This function walks through the buttons and separators in the
1265 * toolbar, and sets the TBSTATE_WRAP flag only on those items where
1266 * wrapping should occur based on the width of the toolbar window.
1267 * It does *not* calculate button placement itself. That task
1268 * takes place in TOOLBAR_CalcToolbar. If the program wants to manage
1269 * the toolbar wrapping on its own, it can use the TBSTYLE_WRAPABLE
1270 * flag, and set the TBSTATE_WRAP flags manually on the appropriate items.
1272 * Note: TBSTYLE_WRAPABLE or TBSTYLE_EX_UNDOC1 can be used also to allow
1273 * vertical toolbar lists.
1277 TOOLBAR_WrapToolbar( HWND hwnd, DWORD dwStyle )
1279 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1280 TBUTTON_INFO *btnPtr;
1285 /* When the toolbar window style is not TBSTYLE_WRAPABLE, */
1286 /* no layout is necessary. Applications may use this style */
1287 /* to perform their own layout on the toolbar. */
1288 if( !(dwStyle & TBSTYLE_WRAPABLE) &&
1289 !(infoPtr->dwExStyle & TBSTYLE_EX_UNDOC1) ) return;
1291 btnPtr = infoPtr->buttons;
1292 x = infoPtr->nIndent;
1294 if (GetParent(hwnd))
1296 /* this can get the parents width, to know how far we can extend
1297 * this toolbar. We cannot use its height, as there may be multiple
1298 * toolbars in a rebar control
1300 GetClientRect( GetParent(hwnd), &rc );
1301 infoPtr->nWidth = rc.right - rc.left;
1305 GetWindowRect( hwnd, &rc );
1306 infoPtr->nWidth = rc.right - rc.left;
1309 bButtonWrap = FALSE;
1311 TRACE("start ButtonWidth=%d, BitmapWidth=%d, nWidth=%d, nIndent=%d\n",
1312 infoPtr->nButtonWidth, infoPtr->nBitmapWidth, infoPtr->nWidth,
1315 for (i = 0; i < infoPtr->nNumButtons; i++ )
1317 btnPtr[i].fsState &= ~TBSTATE_WRAP;
1319 if (btnPtr[i].fsState & TBSTATE_HIDDEN)
1322 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
1323 /* it is the actual width of the separator. This is used for */
1324 /* custom controls in toolbars. */
1326 /* BTNS_DROPDOWN separators are treated as buttons for */
1327 /* width. - GA 8/01 */
1328 if ((btnPtr[i].fsStyle & BTNS_SEP) &&
1329 !(btnPtr[i].fsStyle & BTNS_DROPDOWN))
1330 cx = (btnPtr[i].iBitmap > 0) ?
1331 btnPtr[i].iBitmap : SEPARATOR_WIDTH;
1333 cx = (btnPtr[i].cx) ? btnPtr[i].cx : infoPtr->nButtonWidth;
1335 /* Two or more adjacent separators form a separator group. */
1336 /* The first separator in a group should be wrapped to the */
1337 /* next row if the previous wrapping is on a button. */
1339 (btnPtr[i].fsStyle & BTNS_SEP) &&
1340 (i + 1 < infoPtr->nNumButtons ) &&
1341 (btnPtr[i + 1].fsStyle & BTNS_SEP) )
1343 TRACE("wrap point 1 btn %d style %02x\n", i, btnPtr[i].fsStyle);
1344 btnPtr[i].fsState |= TBSTATE_WRAP;
1345 x = infoPtr->nIndent;
1347 bButtonWrap = FALSE;
1351 /* The layout makes sure the bitmap is visible, but not the button. */
1352 /* Test added to also wrap after a button that starts a row but */
1353 /* is bigger than the area. - GA 8/01 */
1354 if (( x + cx - (infoPtr->nButtonWidth - infoPtr->nBitmapWidth) / 2
1355 > infoPtr->nWidth ) ||
1356 ((x == infoPtr->nIndent) && (cx > infoPtr->nWidth)))
1358 BOOL bFound = FALSE;
1360 /* If the current button is a separator and not hidden, */
1361 /* go to the next until it reaches a non separator. */
1362 /* Wrap the last separator if it is before a button. */
1363 while( ( ((btnPtr[i].fsStyle & BTNS_SEP) &&
1364 !(btnPtr[i].fsStyle & BTNS_DROPDOWN)) ||
1365 (btnPtr[i].fsState & TBSTATE_HIDDEN) ) &&
1366 i < infoPtr->nNumButtons )
1372 if( bFound && i < infoPtr->nNumButtons )
1375 TRACE("wrap point 2 btn %d style %02x, x=%d, cx=%d\n",
1376 i, btnPtr[i].fsStyle, x, cx);
1377 btnPtr[i].fsState |= TBSTATE_WRAP;
1378 x = infoPtr->nIndent;
1379 bButtonWrap = FALSE;
1382 else if ( i >= infoPtr->nNumButtons)
1385 /* If the current button is not a separator, find the last */
1386 /* separator and wrap it. */
1387 for ( j = i - 1; j >= 0 && !(btnPtr[j].fsState & TBSTATE_WRAP); j--)
1389 if ((btnPtr[j].fsStyle & BTNS_SEP) &&
1390 !(btnPtr[j].fsState & TBSTATE_HIDDEN))
1394 TRACE("wrap point 3 btn %d style %02x, x=%d, cx=%d\n",
1395 i, btnPtr[i].fsStyle, x, cx);
1396 x = infoPtr->nIndent;
1397 btnPtr[j].fsState |= TBSTATE_WRAP;
1398 bButtonWrap = FALSE;
1403 /* If no separator available for wrapping, wrap one of */
1404 /* non-hidden previous button. */
1408 j >= 0 && !(btnPtr[j].fsState & TBSTATE_WRAP); j--)
1410 if (btnPtr[j].fsState & TBSTATE_HIDDEN)
1415 TRACE("wrap point 4 btn %d style %02x, x=%d, cx=%d\n",
1416 i, btnPtr[i].fsStyle, x, cx);
1417 x = infoPtr->nIndent;
1418 btnPtr[j].fsState |= TBSTATE_WRAP;
1424 /* If all above failed, wrap the current button. */
1427 TRACE("wrap point 5 btn %d style %02x, x=%d, cx=%d\n",
1428 i, btnPtr[i].fsStyle, x, cx);
1429 btnPtr[i].fsState |= TBSTATE_WRAP;
1430 x = infoPtr->nIndent;
1431 if (btnPtr[i].fsStyle & BTNS_SEP )
1432 bButtonWrap = FALSE;
1438 TRACE("wrap point 6 btn %d style %02x, x=%d, cx=%d\n",
1439 i, btnPtr[i].fsStyle, x, cx);
1446 /***********************************************************************
1447 * TOOLBAR_MeasureButton
1449 * Calculates the width and height required for a button. Used in
1450 * TOOLBAR_CalcToolbar to set the all-button width and height and also for
1451 * the width of buttons that are autosized.
1453 * Note that it would have been rather elegant to use one piece of code for
1454 * both the laying out of the toolbar and for controlling where button parts
1455 * are drawn, but the native control has inconsistencies between the two that
1456 * prevent this from being effectively. These inconsistencies can be seen as
1457 * artefacts where parts of the button appear outside of the bounding button
1460 * There are several cases for the calculation of the button dimensions and
1461 * button part positioning:
1468 * +--------------------------------------------------------+ ^
1470 * | | pad.cy / 2 | centred | |
1471 * | pad.cx/2 + cxedge +--------------+ +------------+ | | DEFPAD_CY +
1472 * |<----------------->| nBitmapWidth | | Text | | | max(nBitmapHeight, szText.cy)
1473 * | |<------------>| | | | |
1474 * | +--------------+ +------------+ | |
1475 * |<-------------------------------------->| | |
1476 * | cxedge + iListGap + nBitmapWidth + 2 |<-----------> | |
1478 * +--------------------------------------------------------+ -
1479 * <-------------------------------------------------------->
1480 * 2*cxedge + nBitmapWidth + iListGap + szText.cx + pad.cx
1482 * Without Bitmap (I_IMAGENONE):
1484 * +-----------------------------------+ ^
1486 * | | centred | | LISTPAD_CY +
1487 * | +------------+ | | szText.cy
1490 * | +------------+ | |
1491 * |<----------------->| | |
1492 * | cxedge |<-----------> | |
1494 * +-----------------------------------+ -
1495 * <----------------------------------->
1496 * szText.cx + pad.cx
1500 * +--------------------------------------+ ^
1502 * | | padding.cy/2 | | DEFPAD_CY +
1503 * | +------------+ | | nBitmapHeight
1506 * | +------------+ | |
1507 * |<------------------->| | |
1508 * | cxedge + iListGap/2 |<-----------> | |
1509 * | nBitmapWidth | |
1510 * +--------------------------------------+ -
1511 * <-------------------------------------->
1512 * 2*cxedge + nBitmapWidth + iListGap
1519 * +-----------------------------------+ ^
1521 * | | pad.cy / 2 | | nBitmapHeight +
1522 * | - | | szText.cy +
1523 * | +------------+ | | DEFPAD_CY + 1
1524 * | centred | Bitmap | | |
1525 * |<----------------->| | | |
1526 * | +------------+ | |
1530 * | centred +---------------+ | |
1531 * |<--------------->| Text | | |
1532 * | +---------------+ | |
1533 * +-----------------------------------+ -
1534 * <----------------------------------->
1535 * pad.cx + max(nBitmapWidth, szText.cx)
1537 * Without bitmaps (NULL imagelist or ImageList_GetImageCount() = 0):
1539 * +---------------------------------------+ ^
1541 * | | 2 + pad.cy / 2 | |
1542 * | - | | szText.cy +
1543 * | centred +-----------------+ | | pad.cy + 2
1544 * |<--------------->| Text | | |
1545 * | +-----------------+ | |
1547 * +---------------------------------------+ -
1548 * <--------------------------------------->
1549 * 2*cxedge + pad.cx + szText.cx
1552 * As for with bitmaps, but with szText.cx zero.
1554 static inline SIZE TOOLBAR_MeasureButton(const TOOLBAR_INFO *infoPtr, SIZE sizeString,
1555 BOOL bHasBitmap, BOOL bValidImageList)
1558 if (infoPtr->dwStyle & TBSTYLE_LIST)
1560 /* set button height from bitmap / text height... */
1561 sizeButton.cy = max((bHasBitmap ? infoPtr->nBitmapHeight : 0),
1564 /* ... add on the necessary padding */
1565 if (bValidImageList)
1568 sizeButton.cy += DEFPAD_CY;
1570 sizeButton.cy += LISTPAD_CY;
1573 sizeButton.cy += infoPtr->szPadding.cy;
1575 /* calculate button width */
1576 sizeButton.cx = 2*GetSystemMetrics(SM_CXEDGE) +
1577 infoPtr->nBitmapWidth + infoPtr->iListGap;
1578 if (sizeString.cx > 0)
1579 sizeButton.cx += sizeString.cx + infoPtr->szPadding.cx;
1586 sizeButton.cy = infoPtr->nBitmapHeight + DEFPAD_CY;
1587 if (sizeString.cy > 0)
1588 sizeButton.cy += 1 + sizeString.cy;
1589 sizeButton.cx = infoPtr->szPadding.cx +
1590 max(sizeString.cx, infoPtr->nBitmapWidth);
1594 sizeButton.cy = sizeString.cy + infoPtr->szPadding.cy +
1595 NONLIST_NOTEXT_OFFSET;
1596 sizeButton.cx = infoPtr->szPadding.cx +
1597 max(2*GetSystemMetrics(SM_CXEDGE) + sizeString.cx, infoPtr->nBitmapWidth);
1604 /***********************************************************************
1605 * TOOLBAR_CalcToolbar
1607 * This function calculates button and separator placement. It first
1608 * calculates the button sizes, gets the toolbar window width and then
1609 * calls TOOLBAR_WrapToolbar to determine which buttons we need to wrap
1610 * on. It assigns a new location to each item and sends this location to
1611 * the tooltip window if appropriate. Finally, it updates the rcBound
1612 * rect and calculates the new required toolbar window height.
1615 TOOLBAR_CalcToolbar (HWND hwnd)
1617 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
1618 SIZE sizeString, sizeButton;
1619 BOOL validImageList = FALSE;
1621 TOOLBAR_CalcStrings (hwnd, &sizeString);
1623 TOOLBAR_DumpToolbar (infoPtr, __LINE__);
1625 if (TOOLBAR_IsValidImageList(infoPtr, 0))
1626 validImageList = TRUE;
1627 sizeButton = TOOLBAR_MeasureButton(infoPtr, sizeString, TRUE, validImageList);
1628 infoPtr->nButtonWidth = sizeButton.cx;
1629 infoPtr->nButtonHeight = sizeButton.cy;
1630 infoPtr->iTopMargin = default_top_margin(infoPtr);
1632 if ( infoPtr->cxMin >= 0 && infoPtr->nButtonWidth < infoPtr->cxMin )
1633 infoPtr->nButtonWidth = infoPtr->cxMin;
1634 if ( infoPtr->cxMax > 0 && infoPtr->nButtonWidth > infoPtr->cxMax )
1635 infoPtr->nButtonWidth = infoPtr->cxMax;
1637 TOOLBAR_LayoutToolbar(hwnd);
1641 TOOLBAR_LayoutToolbar(HWND hwnd)
1643 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
1644 TBUTTON_INFO *btnPtr;
1646 INT i, nRows, nSepRows;
1649 BOOL validImageList = TOOLBAR_IsValidImageList(infoPtr, 0);
1650 BOOL hasDropDownArrows = TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle);
1652 TOOLBAR_WrapToolbar(hwnd, infoPtr->dwStyle);
1654 x = infoPtr->nIndent;
1655 y = infoPtr->iTopMargin;
1656 cx = infoPtr->nButtonWidth;
1657 cy = infoPtr->nButtonHeight;
1659 nRows = nSepRows = 0;
1661 infoPtr->rcBound.top = y;
1662 infoPtr->rcBound.left = x;
1663 infoPtr->rcBound.bottom = y + cy;
1664 infoPtr->rcBound.right = x;
1666 btnPtr = infoPtr->buttons;
1668 TRACE("cy=%d\n", cy);
1670 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++ )
1673 if (btnPtr->fsState & TBSTATE_HIDDEN)
1675 SetRectEmpty (&btnPtr->rect);
1679 cy = infoPtr->nButtonHeight;
1681 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
1682 /* it is the actual width of the separator. This is used for */
1683 /* custom controls in toolbars. */
1684 if (btnPtr->fsStyle & BTNS_SEP) {
1685 if (btnPtr->fsStyle & BTNS_DROPDOWN) {
1686 cy = (btnPtr->iBitmap > 0) ?
1687 btnPtr->iBitmap : SEPARATOR_WIDTH;
1688 cx = infoPtr->nButtonWidth;
1691 cx = (btnPtr->iBitmap > 0) ?
1692 btnPtr->iBitmap : SEPARATOR_WIDTH;
1698 else if ((infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) ||
1699 (btnPtr->fsStyle & BTNS_AUTOSIZE))
1706 hOldFont = SelectObject (hdc, infoPtr->hFont);
1708 TOOLBAR_MeasureString(infoPtr, btnPtr, hdc, &sz);
1710 SelectObject (hdc, hOldFont);
1711 ReleaseDC (hwnd, hdc);
1713 sizeButton = TOOLBAR_MeasureButton(infoPtr, sz,
1714 TOOLBAR_IsValidBitmapIndex(infoPtr, infoPtr->buttons[i].iBitmap),
1719 cx = infoPtr->nButtonWidth;
1721 /* if size has been set manually then don't add on extra space
1722 * for the drop down arrow */
1723 if (!btnPtr->cx && hasDropDownArrows &&
1724 ((btnPtr->fsStyle & BTNS_DROPDOWN) || (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN)))
1725 cx += DDARROW_WIDTH;
1727 if (btnPtr->fsState & TBSTATE_WRAP )
1730 SetRect (&btnPtr->rect, x, y, x + cx, y + cy);
1732 if (infoPtr->rcBound.left > x)
1733 infoPtr->rcBound.left = x;
1734 if (infoPtr->rcBound.right < x + cx)
1735 infoPtr->rcBound.right = x + cx;
1736 if (infoPtr->rcBound.bottom < y + cy)
1737 infoPtr->rcBound.bottom = y + cy;
1739 TOOLBAR_TooltipSetRect(infoPtr, btnPtr);
1741 /* btnPtr->nRow is zero based. The space between the rows is */
1742 /* also considered as a row. */
1743 btnPtr->nRow = nRows + nSepRows;
1745 TRACE("button %d style=%x, bWrap=%d, nRows=%d, nSepRows=%d, btnrow=%d, (%d,%d)-(%d,%d)\n",
1746 i, btnPtr->fsStyle, bWrap, nRows, nSepRows, btnPtr->nRow,
1751 if ( !(btnPtr->fsStyle & BTNS_SEP) )
1755 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
1756 /* it is the actual width of the separator. This is used for */
1757 /* custom controls in toolbars. */
1758 if ( !(btnPtr->fsStyle & BTNS_DROPDOWN))
1759 y += cy + ( (btnPtr->iBitmap > 0 ) ?
1760 btnPtr->iBitmap : SEPARATOR_WIDTH) * 2 /3;
1764 /* nSepRows is used to calculate the extra height following */
1768 x = infoPtr->nIndent;
1770 /* Increment row number unless this is the last button */
1771 /* and it has Wrap set. */
1772 if (i != infoPtr->nNumButtons-1)
1779 /* infoPtr->nRows is the number of rows on the toolbar */
1780 infoPtr->nRows = nRows + nSepRows + 1;
1782 TRACE("toolbar button width %d\n", infoPtr->nButtonWidth);
1787 TOOLBAR_InternalHitTest (HWND hwnd, const POINT *lpPt)
1789 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1790 TBUTTON_INFO *btnPtr;
1793 btnPtr = infoPtr->buttons;
1794 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
1795 if (btnPtr->fsState & TBSTATE_HIDDEN)
1798 if (btnPtr->fsStyle & BTNS_SEP) {
1799 if (PtInRect (&btnPtr->rect, *lpPt)) {
1800 TRACE(" ON SEPARATOR %d!\n", i);
1805 if (PtInRect (&btnPtr->rect, *lpPt)) {
1806 TRACE(" ON BUTTON %d!\n", i);
1812 TRACE(" NOWHERE!\n");
1813 return TOOLBAR_NOWHERE;
1818 TOOLBAR_GetButtonIndex (const TOOLBAR_INFO *infoPtr, INT idCommand, BOOL CommandIsIndex)
1820 TBUTTON_INFO *btnPtr;
1823 if (CommandIsIndex) {
1824 TRACE("command is really index command=%d\n", idCommand);
1825 if (idCommand >= infoPtr->nNumButtons) return -1;
1828 btnPtr = infoPtr->buttons;
1829 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
1830 if (btnPtr->idCommand == idCommand) {
1831 TRACE("command=%d index=%d\n", idCommand, i);
1835 TRACE("no index found for command=%d\n", idCommand);
1841 TOOLBAR_GetCheckedGroupButtonIndex (const TOOLBAR_INFO *infoPtr, INT nIndex)
1843 TBUTTON_INFO *btnPtr;
1846 if ((nIndex < 0) || (nIndex > infoPtr->nNumButtons))
1849 /* check index button */
1850 btnPtr = &infoPtr->buttons[nIndex];
1851 if ((btnPtr->fsStyle & BTNS_CHECKGROUP) == BTNS_CHECKGROUP) {
1852 if (btnPtr->fsState & TBSTATE_CHECKED)
1856 /* check previous buttons */
1857 nRunIndex = nIndex - 1;
1858 while (nRunIndex >= 0) {
1859 btnPtr = &infoPtr->buttons[nRunIndex];
1860 if ((btnPtr->fsStyle & BTNS_GROUP) == BTNS_GROUP) {
1861 if (btnPtr->fsState & TBSTATE_CHECKED)
1869 /* check next buttons */
1870 nRunIndex = nIndex + 1;
1871 while (nRunIndex < infoPtr->nNumButtons) {
1872 btnPtr = &infoPtr->buttons[nRunIndex];
1873 if ((btnPtr->fsStyle & BTNS_GROUP) == BTNS_GROUP) {
1874 if (btnPtr->fsState & TBSTATE_CHECKED)
1887 TOOLBAR_RelayEvent (HWND hwndTip, HWND hwndMsg, UINT uMsg,
1888 WPARAM wParam, LPARAM lParam)
1894 msg.wParam = wParam;
1895 msg.lParam = lParam;
1896 msg.time = GetMessageTime ();
1897 msg.pt.x = (short)LOWORD(GetMessagePos ());
1898 msg.pt.y = (short)HIWORD(GetMessagePos ());
1900 SendMessageW (hwndTip, TTM_RELAYEVENT, 0, (LPARAM)&msg);
1904 TOOLBAR_TooltipAddTool(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *button)
1906 if (infoPtr->hwndToolTip && !(button->fsStyle & BTNS_SEP)) {
1909 ZeroMemory(&ti, sizeof(TTTOOLINFOW));
1910 ti.cbSize = sizeof (TTTOOLINFOW);
1911 ti.hwnd = infoPtr->hwndSelf;
1912 ti.uId = button->idCommand;
1914 ti.lpszText = LPSTR_TEXTCALLBACKW;
1915 /* ti.lParam = random value from the stack? */
1917 SendMessageW(infoPtr->hwndToolTip, TTM_ADDTOOLW,
1923 TOOLBAR_TooltipDelTool(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *button)
1925 if ((infoPtr->hwndToolTip) && !(button->fsStyle & BTNS_SEP)) {
1928 ZeroMemory(&ti, sizeof(ti));
1929 ti.cbSize = sizeof(ti);
1930 ti.hwnd = infoPtr->hwndSelf;
1931 ti.uId = button->idCommand;
1933 SendMessageW(infoPtr->hwndToolTip, TTM_DELTOOLW, 0, (LPARAM)&ti);
1937 static void TOOLBAR_TooltipSetRect(const TOOLBAR_INFO *infoPtr, const TBUTTON_INFO *button)
1939 /* Set the toolTip only for non-hidden, non-separator button */
1940 if (infoPtr->hwndToolTip && !(button->fsStyle & BTNS_SEP))
1944 ZeroMemory(&ti, sizeof(ti));
1945 ti.cbSize = sizeof(ti);
1946 ti.hwnd = infoPtr->hwndSelf;
1947 ti.uId = button->idCommand;
1948 ti.rect = button->rect;
1949 SendMessageW(infoPtr->hwndToolTip, TTM_NEWTOOLRECTW, 0, (LPARAM)&ti);
1953 /* Creates the tooltip control */
1955 TOOLBAR_TooltipCreateControl(TOOLBAR_INFO *infoPtr)
1958 NMTOOLTIPSCREATED nmttc;
1960 infoPtr->hwndToolTip = CreateWindowExW(0, TOOLTIPS_CLASSW, NULL, WS_POPUP,
1961 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
1962 infoPtr->hwndSelf, 0, 0, 0);
1964 if (!infoPtr->hwndToolTip)
1967 /* Send NM_TOOLTIPSCREATED notification */
1968 nmttc.hwndToolTips = infoPtr->hwndToolTip;
1969 TOOLBAR_SendNotify(&nmttc.hdr, infoPtr, NM_TOOLTIPSCREATED);
1971 for (i = 0; i < infoPtr->nNumButtons; i++)
1973 TOOLBAR_TooltipAddTool(infoPtr, &infoPtr->buttons[i]);
1974 TOOLBAR_TooltipSetRect(infoPtr, &infoPtr->buttons[i]);
1978 /* keeps available button list box sorted by button id */
1979 static void TOOLBAR_Cust_InsertAvailButton(HWND hwnd, PCUSTOMBUTTON btnInfoNew)
1983 PCUSTOMBUTTON btnInfo;
1984 HWND hwndAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
1986 TRACE("button %s, idCommand %d\n", debugstr_w(btnInfoNew->text), btnInfoNew->btn.idCommand);
1988 count = SendMessageW(hwndAvail, LB_GETCOUNT, 0, 0);
1990 /* position 0 is always separator */
1991 for (i = 1; i < count; i++)
1993 btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndAvail, LB_GETITEMDATA, i, 0);
1994 if (btnInfoNew->btn.idCommand < btnInfo->btn.idCommand)
1996 i = SendMessageW(hwndAvail, LB_INSERTSTRING, i, 0);
1997 SendMessageW(hwndAvail, LB_SETITEMDATA, i, (LPARAM)btnInfoNew);
2001 /* id higher than all others add to end */
2002 i = SendMessageW(hwndAvail, LB_ADDSTRING, 0, 0);
2003 SendMessageW(hwndAvail, LB_SETITEMDATA, i, (LPARAM)btnInfoNew);
2006 static void TOOLBAR_Cust_MoveButton(const CUSTDLG_INFO *custInfo, HWND hwnd, INT nIndexFrom, INT nIndexTo)
2010 TRACE("index from %d, index to %d\n", nIndexFrom, nIndexTo);
2012 if (nIndexFrom == nIndexTo)
2015 /* MSDN states that iItem is the index of the button, rather than the
2016 * command ID as used by every other NMTOOLBAR notification */
2017 nmtb.iItem = nIndexFrom;
2018 if (TOOLBAR_SendNotify(&nmtb.hdr, custInfo->tbInfo, TBN_QUERYINSERT))
2020 PCUSTOMBUTTON btnInfo;
2022 HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2023 int count = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2025 btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndList, LB_GETITEMDATA, nIndexFrom, 0);
2027 SendMessageW(hwndList, LB_DELETESTRING, nIndexFrom, 0);
2028 SendMessageW(hwndList, LB_INSERTSTRING, nIndexTo, 0);
2029 SendMessageW(hwndList, LB_SETITEMDATA, nIndexTo, (LPARAM)btnInfo);
2030 SendMessageW(hwndList, LB_SETCURSEL, nIndexTo, 0);
2033 EnableWindow(GetDlgItem(hwnd,IDC_MOVEUP_BTN), FALSE);
2035 EnableWindow(GetDlgItem(hwnd,IDC_MOVEUP_BTN), TRUE);
2037 /* last item is always separator, so -2 instead of -1 */
2038 if (nIndexTo >= (count - 2))
2039 EnableWindow(GetDlgItem(hwnd,IDC_MOVEDN_BTN), FALSE);
2041 EnableWindow(GetDlgItem(hwnd,IDC_MOVEDN_BTN), TRUE);
2043 SendMessageW(custInfo->tbHwnd, TB_DELETEBUTTON, nIndexFrom, 0);
2044 SendMessageW(custInfo->tbHwnd, TB_INSERTBUTTONW, nIndexTo, (LPARAM)&(btnInfo->btn));
2046 TOOLBAR_SendNotify(&hdr, custInfo->tbInfo, TBN_TOOLBARCHANGE);
2050 static void TOOLBAR_Cust_AddButton(const CUSTDLG_INFO *custInfo, HWND hwnd, INT nIndexAvail, INT nIndexTo)
2054 TRACE("Add: nIndexAvail %d, nIndexTo %d\n", nIndexAvail, nIndexTo);
2056 /* MSDN states that iItem is the index of the button, rather than the
2057 * command ID as used by every other NMTOOLBAR notification */
2058 nmtb.iItem = nIndexAvail;
2059 if (TOOLBAR_SendNotify(&nmtb.hdr, custInfo->tbInfo, TBN_QUERYINSERT))
2061 PCUSTOMBUTTON btnInfo;
2063 HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2064 HWND hwndAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2065 int count = SendMessageW(hwndAvail, LB_GETCOUNT, 0, 0);
2067 btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndAvail, LB_GETITEMDATA, nIndexAvail, 0);
2069 if (nIndexAvail != 0) /* index == 0 indicates separator */
2071 /* remove from 'available buttons' list */
2072 SendMessageW(hwndAvail, LB_DELETESTRING, nIndexAvail, 0);
2073 if (nIndexAvail == count-1)
2074 SendMessageW(hwndAvail, LB_SETCURSEL, nIndexAvail-1 , 0);
2076 SendMessageW(hwndAvail, LB_SETCURSEL, nIndexAvail , 0);
2080 PCUSTOMBUTTON btnNew;
2082 /* duplicate 'separator' button */
2083 btnNew = Alloc(sizeof(CUSTOMBUTTON));
2088 /* insert into 'toolbar button' list */
2089 SendMessageW(hwndList, LB_INSERTSTRING, nIndexTo, 0);
2090 SendMessageW(hwndList, LB_SETITEMDATA, nIndexTo, (LPARAM)btnInfo);
2092 SendMessageW(custInfo->tbHwnd, TB_INSERTBUTTONW, nIndexTo, (LPARAM)&(btnInfo->btn));
2094 TOOLBAR_SendNotify(&hdr, custInfo->tbInfo, TBN_TOOLBARCHANGE);
2098 static void TOOLBAR_Cust_RemoveButton(const CUSTDLG_INFO *custInfo, HWND hwnd, INT index)
2100 PCUSTOMBUTTON btnInfo;
2101 HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2103 TRACE("Remove: index %d\n", index);
2105 btnInfo = (PCUSTOMBUTTON)SendMessageW(hwndList, LB_GETITEMDATA, index, 0);
2107 /* send TBN_QUERYDELETE notification */
2108 if (TOOLBAR_IsButtonRemovable(custInfo->tbInfo, index, btnInfo))
2112 SendMessageW(hwndList, LB_DELETESTRING, index, 0);
2113 SendMessageW(hwndList, LB_SETCURSEL, index , 0);
2115 SendMessageW(custInfo->tbHwnd, TB_DELETEBUTTON, index, 0);
2117 /* insert into 'available button' list */
2118 if (!(btnInfo->btn.fsStyle & BTNS_SEP))
2119 TOOLBAR_Cust_InsertAvailButton(hwnd, btnInfo);
2123 TOOLBAR_SendNotify(&hdr, custInfo->tbInfo, TBN_TOOLBARCHANGE);
2127 /* drag list notification function for toolbar buttons list box */
2128 static LRESULT TOOLBAR_Cust_ToolbarDragListNotification(const CUSTDLG_INFO *custInfo, HWND hwnd,
2129 const DRAGLISTINFO *pDLI)
2131 HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2132 switch (pDLI->uNotification)
2136 INT nCurrentItem = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2137 INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2138 /* no dragging for last item (separator) */
2139 if (nCurrentItem >= (nCount - 1)) return FALSE;
2144 INT nCurrentItem = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2145 INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2146 /* no dragging past last item (separator) */
2147 if ((nCurrentItem >= 0) && (nCurrentItem < (nCount - 1)))
2149 DrawInsert(hwnd, hwndList, nCurrentItem);
2150 /* FIXME: native uses "move button" cursor */
2151 return DL_COPYCURSOR;
2154 /* not over toolbar buttons list */
2155 if (nCurrentItem < 0)
2157 POINT ptWindow = pDLI->ptCursor;
2158 HWND hwndListAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2159 MapWindowPoints(NULL, hwnd, &ptWindow, 1);
2160 /* over available buttons list? */
2161 if (ChildWindowFromPoint(hwnd, ptWindow) == hwndListAvail)
2162 /* FIXME: native uses "move button" cursor */
2163 return DL_COPYCURSOR;
2165 /* clear drag arrow */
2166 DrawInsert(hwnd, hwndList, -1);
2167 return DL_STOPCURSOR;
2171 INT nIndexTo = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2172 INT nIndexFrom = SendMessageW(hwndList, LB_GETCURSEL, 0, 0);
2173 INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2174 if ((nIndexTo >= 0) && (nIndexTo < (nCount - 1)))
2176 /* clear drag arrow */
2177 DrawInsert(hwnd, hwndList, -1);
2179 TOOLBAR_Cust_MoveButton(custInfo, hwnd, nIndexFrom, nIndexTo);
2181 /* not over toolbar buttons list */
2184 POINT ptWindow = pDLI->ptCursor;
2185 HWND hwndListAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2186 MapWindowPoints(NULL, hwnd, &ptWindow, 1);
2187 /* over available buttons list? */
2188 if (ChildWindowFromPoint(hwnd, ptWindow) == hwndListAvail)
2189 TOOLBAR_Cust_RemoveButton(custInfo, hwnd, nIndexFrom);
2194 /* Clear drag arrow */
2195 DrawInsert(hwnd, hwndList, -1);
2202 /* drag list notification function for available buttons list box */
2203 static LRESULT TOOLBAR_Cust_AvailDragListNotification(const CUSTDLG_INFO *custInfo, HWND hwnd,
2204 const DRAGLISTINFO *pDLI)
2206 HWND hwndList = GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX);
2207 switch (pDLI->uNotification)
2213 INT nCurrentItem = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2214 INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2215 /* no dragging past last item (separator) */
2216 if ((nCurrentItem >= 0) && (nCurrentItem < nCount))
2218 DrawInsert(hwnd, hwndList, nCurrentItem);
2219 /* FIXME: native uses "move button" cursor */
2220 return DL_COPYCURSOR;
2223 /* not over toolbar buttons list */
2224 if (nCurrentItem < 0)
2226 POINT ptWindow = pDLI->ptCursor;
2227 HWND hwndListAvail = GetDlgItem(hwnd, IDC_AVAILBTN_LBOX);
2228 MapWindowPoints(NULL, hwnd, &ptWindow, 1);
2229 /* over available buttons list? */
2230 if (ChildWindowFromPoint(hwnd, ptWindow) == hwndListAvail)
2231 /* FIXME: native uses "move button" cursor */
2232 return DL_COPYCURSOR;
2234 /* clear drag arrow */
2235 DrawInsert(hwnd, hwndList, -1);
2236 return DL_STOPCURSOR;
2240 INT nIndexTo = LBItemFromPt(hwndList, pDLI->ptCursor, TRUE);
2241 INT nCount = SendMessageW(hwndList, LB_GETCOUNT, 0, 0);
2242 INT nIndexFrom = SendDlgItemMessageW(hwnd, IDC_AVAILBTN_LBOX, LB_GETCURSEL, 0, 0);
2243 if ((nIndexTo >= 0) && (nIndexTo < nCount))
2245 /* clear drag arrow */
2246 DrawInsert(hwnd, hwndList, -1);
2248 TOOLBAR_Cust_AddButton(custInfo, hwnd, nIndexFrom, nIndexTo);
2252 /* Clear drag arrow */
2253 DrawInsert(hwnd, hwndList, -1);
2259 extern UINT uDragListMessage;
2261 /***********************************************************************
2262 * TOOLBAR_CustomizeDialogProc
2263 * This function implements the toolbar customization dialog.
2265 static INT_PTR CALLBACK
2266 TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
2268 PCUSTDLG_INFO custInfo = (PCUSTDLG_INFO)GetWindowLongPtrW (hwnd, DWLP_USER);
2269 PCUSTOMBUTTON btnInfo;
2271 TOOLBAR_INFO *infoPtr = custInfo ? custInfo->tbInfo : NULL;
2276 custInfo = (PCUSTDLG_INFO)lParam;
2277 SetWindowLongPtrW (hwnd, DWLP_USER, (LONG_PTR)custInfo);
2284 NMTBINITCUSTOMIZE nmtbic;
2286 infoPtr = custInfo->tbInfo;
2288 /* send TBN_QUERYINSERT notification */
2289 nmtb.iItem = custInfo->tbInfo->nNumButtons;
2291 if (!TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_QUERYINSERT))
2294 nmtbic.hwndDialog = hwnd;
2295 /* Send TBN_INITCUSTOMIZE notification */
2296 if (TOOLBAR_SendNotify (&nmtbic.hdr, infoPtr, TBN_INITCUSTOMIZE) ==
2299 TRACE("TBNRF_HIDEHELP requested\n");
2300 ShowWindow(GetDlgItem(hwnd, IDC_HELP_BTN), SW_HIDE);
2303 /* add items to 'toolbar buttons' list and check if removable */
2304 for (i = 0; i < custInfo->tbInfo->nNumButtons; i++)
2306 btnInfo = Alloc(sizeof(CUSTOMBUTTON));
2307 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
2308 btnInfo->btn.fsStyle = BTNS_SEP;
2309 btnInfo->bVirtual = FALSE;
2310 LoadStringW (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
2312 /* send TBN_QUERYDELETE notification */
2313 btnInfo->bRemovable = TOOLBAR_IsButtonRemovable(infoPtr, i, btnInfo);
2315 index = (int)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_ADDSTRING, 0, 0);
2316 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
2319 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMHEIGHT, 0, infoPtr->nBitmapHeight + 8);
2321 /* insert separator button into 'available buttons' list */
2322 btnInfo = Alloc(sizeof(CUSTOMBUTTON));
2323 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
2324 btnInfo->btn.fsStyle = BTNS_SEP;
2325 btnInfo->bVirtual = FALSE;
2326 btnInfo->bRemovable = TRUE;
2327 LoadStringW (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
2328 index = (int)SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_ADDSTRING, 0, (LPARAM)btnInfo);
2329 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
2331 /* insert all buttons into dsa */
2334 /* send TBN_GETBUTTONINFO notification */
2337 nmtb.pszText = Buffer;
2340 /* Clear previous button's text */
2341 ZeroMemory(nmtb.pszText, nmtb.cchText * sizeof(WCHAR));
2343 if (!TOOLBAR_GetButtonInfo(infoPtr, &nmtb))
2346 TRACE("WM_INITDIALOG style: %x iItem(%d) idCommand(%d) iString(%ld) %s\n",
2347 nmtb.tbButton.fsStyle, i,
2348 nmtb.tbButton.idCommand,
2349 nmtb.tbButton.iString,
2350 nmtb.tbButton.iString >= 0 ? debugstr_w(infoPtr->strings[nmtb.tbButton.iString])
2353 /* insert button into the apropriate list */
2354 index = TOOLBAR_GetButtonIndex (custInfo->tbInfo, nmtb.tbButton.idCommand, FALSE);
2357 btnInfo = Alloc(sizeof(CUSTOMBUTTON));
2358 btnInfo->bVirtual = FALSE;
2359 btnInfo->bRemovable = TRUE;
2363 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd,
2364 IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
2367 btnInfo->btn = nmtb.tbButton;
2368 if (!(nmtb.tbButton.fsStyle & BTNS_SEP))
2370 if (lstrlenW(nmtb.pszText))
2371 lstrcpyW(btnInfo->text, nmtb.pszText);
2372 else if (nmtb.tbButton.iString >= 0 &&
2373 nmtb.tbButton.iString < infoPtr->nNumStrings)
2375 lstrcpyW(btnInfo->text,
2376 infoPtr->strings[nmtb.tbButton.iString]);
2381 TOOLBAR_Cust_InsertAvailButton(hwnd, btnInfo);
2384 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMHEIGHT, 0, infoPtr->nBitmapHeight + 8);
2386 /* select first item in the 'available' list */
2387 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETCURSEL, 0, 0);
2389 /* append 'virtual' separator button to the 'toolbar buttons' list */
2390 btnInfo = Alloc(sizeof(CUSTOMBUTTON));
2391 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
2392 btnInfo->btn.fsStyle = BTNS_SEP;
2393 btnInfo->bVirtual = TRUE;
2394 btnInfo->bRemovable = FALSE;
2395 LoadStringW (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
2396 index = (int)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_ADDSTRING, 0, (LPARAM)btnInfo);
2397 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
2399 /* select last item in the 'toolbar' list */
2400 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETCURSEL, index, 0);
2401 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETTOPINDEX, index, 0);
2403 MakeDragList(GetDlgItem(hwnd, IDC_TOOLBARBTN_LBOX));
2404 MakeDragList(GetDlgItem(hwnd, IDC_AVAILBTN_LBOX));
2406 /* set focus and disable buttons */
2407 PostMessageW (hwnd, WM_USER, 0, 0);
2412 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
2413 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
2414 EnableWindow (GetDlgItem (hwnd,IDC_REMOVE_BTN), FALSE);
2415 SetFocus (GetDlgItem (hwnd, IDC_TOOLBARBTN_LBOX));
2419 EndDialog(hwnd, FALSE);
2423 switch (LOWORD(wParam))
2425 case IDC_TOOLBARBTN_LBOX:
2426 if (HIWORD(wParam) == LBN_SELCHANGE)
2428 PCUSTOMBUTTON btnInfo;
2433 count = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
2434 index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2436 /* send TBN_QUERYINSERT notification */
2438 TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_QUERYINSERT);
2440 /* get list box item */
2441 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
2443 if (index == (count - 1))
2445 /* last item (virtual separator) */
2446 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
2447 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
2449 else if (index == (count - 2))
2451 /* second last item (last non-virtual item) */
2452 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
2453 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
2455 else if (index == 0)
2458 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
2459 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
2463 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
2464 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
2467 EnableWindow (GetDlgItem (hwnd,IDC_REMOVE_BTN), btnInfo->bRemovable);
2471 case IDC_MOVEUP_BTN:
2473 int index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2474 TOOLBAR_Cust_MoveButton(custInfo, hwnd, index, index-1);
2478 case IDC_MOVEDN_BTN: /* move down */
2480 int index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2481 TOOLBAR_Cust_MoveButton(custInfo, hwnd, index, index+1);
2485 case IDC_REMOVE_BTN: /* remove button */
2487 int index = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2489 if (LB_ERR == index)
2492 TOOLBAR_Cust_RemoveButton(custInfo, hwnd, index);
2496 TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_CUSTHELP);
2499 TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_RESET);
2502 case IDOK: /* Add button */
2507 index = SendDlgItemMessageW(hwnd, IDC_AVAILBTN_LBOX, LB_GETCURSEL, 0, 0);
2508 indexto = SendDlgItemMessageW(hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
2510 TOOLBAR_Cust_AddButton(custInfo, hwnd, index, indexto);
2515 EndDialog(hwnd, FALSE);
2525 /* delete items from 'toolbar buttons' listbox*/
2526 count = SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
2527 for (i = 0; i < count; i++)
2529 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, i, 0);
2531 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, 0, 0);
2533 SendDlgItemMessageW (hwnd, IDC_TOOLBARBTN_LBOX, LB_RESETCONTENT, 0, 0);
2536 /* delete items from 'available buttons' listbox*/
2537 count = SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_GETCOUNT, 0, 0);
2538 for (i = 0; i < count; i++)
2540 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_GETITEMDATA, i, 0);
2542 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, i, 0);
2544 SendDlgItemMessageW (hwnd, IDC_AVAILBTN_LBOX, LB_RESETCONTENT, 0, 0);
2549 if (wParam == IDC_AVAILBTN_LBOX || wParam == IDC_TOOLBARBTN_LBOX)
2551 LPDRAWITEMSTRUCT lpdis = (LPDRAWITEMSTRUCT)lParam;
2556 COLORREF oldText = 0;
2560 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageW (hwnd, wParam, LB_GETITEMDATA, (WPARAM)lpdis->itemID, 0);
2561 if (btnInfo == NULL)
2563 FIXME("btnInfo invalid!\n");
2567 /* set colors and select objects */
2568 oldBk = SetBkColor (lpdis->hDC, (lpdis->itemState & ODS_FOCUS)?comctl32_color.clrHighlight:comctl32_color.clrWindow);
2569 if (btnInfo->bVirtual)
2570 oldText = SetTextColor (lpdis->hDC, comctl32_color.clrGrayText);
2572 oldText = SetTextColor (lpdis->hDC, (lpdis->itemState & ODS_FOCUS)?comctl32_color.clrHighlightText:comctl32_color.clrWindowText);
2573 hPen = CreatePen( PS_SOLID, 1,
2574 GetSysColor( (lpdis->itemState & ODS_SELECTED)?COLOR_HIGHLIGHT:COLOR_WINDOW));
2575 hOldPen = SelectObject (lpdis->hDC, hPen );
2576 hOldBrush = SelectObject (lpdis->hDC, GetSysColorBrush ((lpdis->itemState & ODS_FOCUS)?COLOR_HIGHLIGHT:COLOR_WINDOW));
2578 /* fill background rectangle */
2579 Rectangle (lpdis->hDC, lpdis->rcItem.left, lpdis->rcItem.top,
2580 lpdis->rcItem.right, lpdis->rcItem.bottom);
2582 /* calculate button and text rectangles */
2583 CopyRect (&rcButton, &lpdis->rcItem);
2584 InflateRect (&rcButton, -1, -1);
2585 CopyRect (&rcText, &rcButton);
2586 rcButton.right = rcButton.left + custInfo->tbInfo->nBitmapWidth + 6;
2587 rcText.left = rcButton.right + 2;
2589 /* draw focus rectangle */
2590 if (lpdis->itemState & ODS_FOCUS)
2591 DrawFocusRect (lpdis->hDC, &lpdis->rcItem);
2594 if (!(infoPtr->dwStyle & TBSTYLE_FLAT))
2595 DrawEdge (lpdis->hDC, &rcButton, EDGE_RAISED, BF_RECT|BF_MIDDLE|BF_SOFT);
2597 /* draw image and text */
2598 if ((btnInfo->btn.fsStyle & BTNS_SEP) == 0) {
2599 HIMAGELIST himl = GETDEFIMAGELIST(infoPtr, GETHIMLID(infoPtr,
2600 btnInfo->btn.iBitmap));
2601 ImageList_Draw (himl, GETIBITMAP(infoPtr, btnInfo->btn.iBitmap),
2602 lpdis->hDC, rcButton.left+3, rcButton.top+3, ILD_NORMAL);
2604 DrawTextW (lpdis->hDC, btnInfo->text, -1, &rcText,
2605 DT_LEFT | DT_VCENTER | DT_SINGLELINE);
2607 /* delete objects and reset colors */
2608 SelectObject (lpdis->hDC, hOldBrush);
2609 SelectObject (lpdis->hDC, hOldPen);
2610 SetBkColor (lpdis->hDC, oldBk);
2611 SetTextColor (lpdis->hDC, oldText);
2612 DeleteObject( hPen );
2617 case WM_MEASUREITEM:
2618 if (wParam == IDC_AVAILBTN_LBOX || wParam == IDC_TOOLBARBTN_LBOX)
2620 MEASUREITEMSTRUCT *lpmis = (MEASUREITEMSTRUCT*)lParam;
2622 lpmis->itemHeight = 15 + 8; /* default height */
2629 if (uDragListMessage && (uMsg == uDragListMessage))
2631 if (wParam == IDC_TOOLBARBTN_LBOX)
2633 LRESULT res = TOOLBAR_Cust_ToolbarDragListNotification(
2634 custInfo, hwnd, (DRAGLISTINFO *)lParam);
2635 SetWindowLongPtrW(hwnd, DWLP_MSGRESULT, res);
2638 else if (wParam == IDC_AVAILBTN_LBOX)
2640 LRESULT res = TOOLBAR_Cust_AvailDragListNotification(
2641 custInfo, hwnd, (DRAGLISTINFO *)lParam);
2642 SetWindowLongPtrW(hwnd, DWLP_MSGRESULT, res);
2651 TOOLBAR_AddBitmapToImageList(TOOLBAR_INFO *infoPtr, HIMAGELIST himlDef, const TBITMAP_INFO *bitmap)
2654 INT nCountBefore = ImageList_GetImageCount(himlDef);
2660 TRACE("adding hInst=%p nID=%d nButtons=%d\n", bitmap->hInst, bitmap->nID, bitmap->nButtons);
2661 /* Add bitmaps to the default image list */
2662 if (bitmap->hInst == NULL) /* a handle was passed */
2663 hbmLoad = CopyImage(ULongToHandle(bitmap->nID), IMAGE_BITMAP, 0, 0, 0);
2665 hbmLoad = CreateMappedBitmap(bitmap->hInst, bitmap->nID, 0, NULL, 0);
2667 /* enlarge the bitmap if needed */
2668 ImageList_GetIconSize(himlDef, &cxIcon, &cyIcon);
2669 if (bitmap->hInst != COMCTL32_hModule)
2670 COMCTL32_EnsureBitmapSize(&hbmLoad, cxIcon*(INT)bitmap->nButtons, cyIcon, comctl32_color.clrBtnFace);
2672 nIndex = ImageList_AddMasked(himlDef, hbmLoad, comctl32_color.clrBtnFace);
2673 DeleteObject(hbmLoad);
2677 nCountAfter = ImageList_GetImageCount(himlDef);
2678 nAdded = nCountAfter - nCountBefore;
2679 if (bitmap->nButtons == 0) /* wParam == 0 is special and means add only one image */
2681 ImageList_SetImageCount(himlDef, nCountBefore + 1);
2682 } else if (nAdded > (INT)bitmap->nButtons) {
2683 TRACE("Added more images than wParam: Previous image number %i added %i while wParam %i. Images in list %i\n",
2684 nCountBefore, nAdded, bitmap->nButtons, nCountAfter);
2687 infoPtr->nNumBitmaps += nAdded;
2692 TOOLBAR_CheckImageListIconSize(TOOLBAR_INFO *infoPtr)
2699 himlDef = GETDEFIMAGELIST(infoPtr, 0);
2700 if (himlDef == NULL || himlDef != infoPtr->himlInt)
2702 if (!ImageList_GetIconSize(himlDef, &cx, &cy))
2704 if (cx == infoPtr->nBitmapWidth && cy == infoPtr->nBitmapHeight)
2707 TRACE("Update icon size: %dx%d -> %dx%d\n",
2708 cx, cy, infoPtr->nBitmapWidth, infoPtr->nBitmapHeight);
2710 himlNew = ImageList_Create(infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
2711 ILC_COLORDDB|ILC_MASK, 8, 2);
2712 for (i = 0; i < infoPtr->nNumBitmapInfos; i++)
2713 TOOLBAR_AddBitmapToImageList(infoPtr, himlNew, &infoPtr->bitmaps[i]);
2714 TOOLBAR_InsertImageList(&infoPtr->himlDef, &infoPtr->cimlDef, himlNew, 0);
2715 infoPtr->himlInt = himlNew;
2717 infoPtr->nNumBitmaps -= ImageList_GetImageCount(himlDef);
2718 ImageList_Destroy(himlDef);
2721 /***********************************************************************
2722 * TOOLBAR_AddBitmap: Add the bitmaps to the default image list.
2726 TOOLBAR_AddBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
2728 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2729 LPTBADDBITMAP lpAddBmp = (LPTBADDBITMAP)lParam;
2734 TRACE("hwnd=%p wParam=%lx lParam=%lx\n", hwnd, wParam, lParam);
2738 if (lpAddBmp->hInst == HINST_COMMCTRL)
2740 info.hInst = COMCTL32_hModule;
2741 switch (lpAddBmp->nID)
2743 case IDB_STD_SMALL_COLOR:
2745 info.nID = IDB_STD_SMALL;
2747 case IDB_STD_LARGE_COLOR:
2749 info.nID = IDB_STD_LARGE;
2751 case IDB_VIEW_SMALL_COLOR:
2753 info.nID = IDB_VIEW_SMALL;
2755 case IDB_VIEW_LARGE_COLOR:
2757 info.nID = IDB_VIEW_LARGE;
2759 case IDB_HIST_SMALL_COLOR:
2761 info.nID = IDB_HIST_SMALL;
2763 case IDB_HIST_LARGE_COLOR:
2765 info.nID = IDB_HIST_LARGE;
2771 TRACE ("adding %d internal bitmaps!\n", info.nButtons);
2773 /* Windows resize all the buttons to the size of a newly added standard image */
2774 if (lpAddBmp->nID & 1)
2776 /* large icons: 24x24. Will make the button 31x30 */
2777 SendMessageW (hwnd, TB_SETBITMAPSIZE, 0, MAKELPARAM(24, 24));
2781 /* small icons: 16x16. Will make the buttons 23x22 */
2782 SendMessageW (hwnd, TB_SETBITMAPSIZE, 0, MAKELPARAM(16, 16));
2785 TOOLBAR_CalcToolbar (hwnd);
2789 info.nButtons = (INT)wParam;
2790 info.hInst = lpAddBmp->hInst;
2791 info.nID = lpAddBmp->nID;
2792 TRACE("adding %d bitmaps!\n", info.nButtons);
2795 /* check if the bitmap is already loaded and compute iSumButtons */
2797 for (i = 0; i < infoPtr->nNumBitmapInfos; i++)
2799 if (infoPtr->bitmaps[i].hInst == info.hInst &&
2800 infoPtr->bitmaps[i].nID == info.nID)
2802 iSumButtons += infoPtr->bitmaps[i].nButtons;
2805 if (!infoPtr->cimlDef) {
2806 /* create new default image list */
2807 TRACE ("creating default image list!\n");
2809 himlDef = ImageList_Create (infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
2810 ILC_COLORDDB | ILC_MASK, info.nButtons, 2);
2811 TOOLBAR_InsertImageList(&infoPtr->himlDef, &infoPtr->cimlDef, himlDef, 0);
2812 infoPtr->himlInt = himlDef;
2815 himlDef = GETDEFIMAGELIST(infoPtr, 0);
2819 WARN("No default image list available\n");
2823 if (!TOOLBAR_AddBitmapToImageList(infoPtr, himlDef, &info))
2826 TRACE("Number of bitmap infos: %d\n", infoPtr->nNumBitmapInfos);
2827 infoPtr->bitmaps = ReAlloc(infoPtr->bitmaps, (infoPtr->nNumBitmapInfos + 1) * sizeof(TBITMAP_INFO));
2828 infoPtr->bitmaps[infoPtr->nNumBitmapInfos] = info;
2829 infoPtr->nNumBitmapInfos++;
2830 TRACE("Number of bitmap infos: %d\n", infoPtr->nNumBitmapInfos);
2832 InvalidateRect(hwnd, NULL, TRUE);
2838 TOOLBAR_AddButtonsT(HWND hwnd, WPARAM wParam, LPARAM lParam, BOOL fUnicode)
2840 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2841 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
2842 INT nOldButtons, nNewButtons, nAddButtons, nCount;
2843 BOOL fHasString = FALSE;
2845 TRACE("adding %ld buttons (unicode=%d)!\n", wParam, fUnicode);
2847 nAddButtons = (UINT)wParam;
2848 nOldButtons = infoPtr->nNumButtons;
2849 nNewButtons = nOldButtons + nAddButtons;
2851 infoPtr->buttons = ReAlloc(infoPtr->buttons, sizeof(TBUTTON_INFO)*nNewButtons);
2852 infoPtr->nNumButtons = nNewButtons;
2854 /* insert new button data */
2855 for (nCount = 0; nCount < nAddButtons; nCount++) {
2856 TBUTTON_INFO *btnPtr = &infoPtr->buttons[nOldButtons+nCount];
2857 btnPtr->iBitmap = lpTbb[nCount].iBitmap;
2858 btnPtr->idCommand = lpTbb[nCount].idCommand;
2859 btnPtr->fsState = lpTbb[nCount].fsState;
2860 btnPtr->fsStyle = lpTbb[nCount].fsStyle;
2861 btnPtr->dwData = lpTbb[nCount].dwData;
2862 btnPtr->bHot = FALSE;
2863 if(HIWORD(lpTbb[nCount].iString) && lpTbb[nCount].iString != -1)
2866 Str_SetPtrW ((LPWSTR*)&btnPtr->iString, (LPWSTR)lpTbb[nCount].iString );
2868 Str_SetPtrAtoW((LPWSTR*)&btnPtr->iString, (LPSTR)lpTbb[nCount].iString);
2872 btnPtr->iString = lpTbb[nCount].iString;
2874 TOOLBAR_TooltipAddTool(infoPtr, btnPtr);
2877 if (infoPtr->nNumStrings > 0 || fHasString)
2878 TOOLBAR_CalcToolbar(hwnd);
2880 TOOLBAR_LayoutToolbar(hwnd);
2881 TOOLBAR_AutoSize (hwnd);
2883 TOOLBAR_DumpToolbar (infoPtr, __LINE__);
2885 InvalidateRect(hwnd, NULL, TRUE);
2892 TOOLBAR_AddStringW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2894 #define MAX_RESOURCE_STRING_LENGTH 512
2895 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2896 BOOL fFirstString = (infoPtr->nNumStrings == 0);
2897 INT nIndex = infoPtr->nNumStrings;
2899 if ((wParam) && (HIWORD(lParam) == 0)) {
2900 WCHAR szString[MAX_RESOURCE_STRING_LENGTH];
2905 TRACE("adding string from resource!\n");
2907 len = LoadStringW ((HINSTANCE)wParam, (UINT)lParam,
2908 szString, MAX_RESOURCE_STRING_LENGTH);
2910 TRACE("len=%d %s\n", len, debugstr_w(szString));
2911 if (len == 0 || len == 1)
2914 TRACE("Delimiter: 0x%x\n", *szString);
2915 delimiter = *szString;
2918 while ((next_delim = strchrW(p, delimiter)) != NULL) {
2920 if (next_delim + 1 >= szString + len)
2922 /* this may happen if delimiter == '\0' or if the last char is a
2923 * delimiter (then it is ignored like the native does) */
2927 infoPtr->strings = ReAlloc(infoPtr->strings, sizeof(LPWSTR)*(infoPtr->nNumStrings+1));
2928 Str_SetPtrW(&infoPtr->strings[infoPtr->nNumStrings], p);
2929 infoPtr->nNumStrings++;
2935 LPWSTR p = (LPWSTR)lParam;
2940 TRACE("adding string(s) from array!\n");
2944 TRACE("len=%d %s\n", len, debugstr_w(p));
2945 infoPtr->strings = ReAlloc(infoPtr->strings, sizeof(LPWSTR)*(infoPtr->nNumStrings+1));
2946 Str_SetPtrW (&infoPtr->strings[infoPtr->nNumStrings], p);
2947 infoPtr->nNumStrings++;
2954 TOOLBAR_CalcToolbar(hwnd);
2960 TOOLBAR_AddStringA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2962 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2963 BOOL fFirstString = (infoPtr->nNumStrings == 0);
2968 if ((wParam) && (HIWORD(lParam) == 0)) /* load from resources */
2969 return TOOLBAR_AddStringW(hwnd, wParam, lParam);
2975 TRACE("adding string(s) from array!\n");
2976 nIndex = infoPtr->nNumStrings;
2979 TRACE("len=%d \"%s\"\n", len, p);
2981 infoPtr->strings = ReAlloc(infoPtr->strings, sizeof(LPWSTR)*(infoPtr->nNumStrings+1));
2982 Str_SetPtrAtoW(&infoPtr->strings[infoPtr->nNumStrings], p);
2983 infoPtr->nNumStrings++;
2989 TOOLBAR_CalcToolbar(hwnd);
2995 TOOLBAR_AutoSize (HWND hwnd)
2997 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3003 TRACE("auto sizing, style=%x!\n", infoPtr->dwStyle);
3005 parent = GetParent (hwnd);
3007 if (!parent || !infoPtr->bDoRedraw)
3010 GetClientRect(parent, &parent_rect);
3012 x = parent_rect.left;
3013 y = parent_rect.top;
3015 TRACE("nRows: %d, infoPtr->nButtonHeight: %d\n", infoPtr->nRows, infoPtr->nButtonHeight);
3017 cy = TOP_BORDER + infoPtr->nRows * infoPtr->nButtonHeight + BOTTOM_BORDER;
3018 cx = parent_rect.right - parent_rect.left;
3020 if ((infoPtr->dwStyle & TBSTYLE_WRAPABLE) || (infoPtr->dwExStyle & TBSTYLE_EX_UNDOC1))
3022 TOOLBAR_LayoutToolbar(hwnd);
3023 InvalidateRect( hwnd, NULL, TRUE );
3026 if (!(infoPtr->dwStyle & CCS_NORESIZE))
3029 UINT uPosFlags = SWP_NOZORDER;
3031 if ((infoPtr->dwStyle & CCS_BOTTOM) == CCS_NOMOVEY)
3033 GetWindowRect(hwnd, &window_rect);
3034 ScreenToClient(parent, (LPPOINT)&window_rect.left);
3035 y = window_rect.top;
3037 if ((infoPtr->dwStyle & CCS_BOTTOM) == CCS_BOTTOM)
3039 GetWindowRect(hwnd, &window_rect);
3040 y = parent_rect.bottom - ( window_rect.bottom - window_rect.top);
3043 if (infoPtr->dwStyle & CCS_NOPARENTALIGN)
3044 uPosFlags |= SWP_NOMOVE;
3046 if (!(infoPtr->dwStyle & CCS_NODIVIDER))
3047 cy += GetSystemMetrics(SM_CYEDGE);
3049 if (infoPtr->dwStyle & WS_BORDER)
3051 x = y = 1; /* FIXME: this looks wrong */
3052 cy += GetSystemMetrics(SM_CYEDGE);
3053 cx += GetSystemMetrics(SM_CXEDGE);
3056 SetWindowPos(hwnd, NULL, x, y, cx, cy, uPosFlags);
3064 TOOLBAR_ButtonCount (HWND hwnd)
3066 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3068 return infoPtr->nNumButtons;
3073 TOOLBAR_ButtonStructSize (HWND hwnd, WPARAM wParam)
3075 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3077 infoPtr->dwStructSize = (DWORD)wParam;
3084 TOOLBAR_ChangeBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
3086 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3087 TBUTTON_INFO *btnPtr;
3090 TRACE("button %ld, iBitmap now %d\n", wParam, LOWORD(lParam));
3092 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3096 btnPtr = &infoPtr->buttons[nIndex];
3097 btnPtr->iBitmap = LOWORD(lParam);
3099 /* we HAVE to erase the background, the new bitmap could be */
3101 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3108 TOOLBAR_CheckButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3110 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3111 TBUTTON_INFO *btnPtr;
3114 BOOL bChecked = FALSE;
3116 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3118 TRACE("hwnd=%p, btn index=%d, lParam=0x%08lx\n", hwnd, nIndex, lParam);
3123 btnPtr = &infoPtr->buttons[nIndex];
3125 bChecked = (btnPtr->fsState & TBSTATE_CHECKED) ? TRUE : FALSE;
3127 if (LOWORD(lParam) == FALSE)
3128 btnPtr->fsState &= ~TBSTATE_CHECKED;
3130 if (btnPtr->fsStyle & BTNS_GROUP) {
3132 TOOLBAR_GetCheckedGroupButtonIndex (infoPtr, nIndex);
3133 if (nOldIndex == nIndex)
3135 if (nOldIndex != -1)
3136 infoPtr->buttons[nOldIndex].fsState &= ~TBSTATE_CHECKED;
3138 btnPtr->fsState |= TBSTATE_CHECKED;
3141 if( bChecked != LOWORD(lParam) )
3143 if (nOldIndex != -1)
3144 InvalidateRect(hwnd, &infoPtr->buttons[nOldIndex].rect, TRUE);
3145 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3148 /* FIXME: Send a WM_NOTIFY?? */
3155 TOOLBAR_CommandToIndex (HWND hwnd, WPARAM wParam)
3157 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3159 return TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3164 TOOLBAR_Customize (HWND hwnd)
3166 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3167 CUSTDLG_INFO custInfo;
3173 custInfo.tbInfo = infoPtr;
3174 custInfo.tbHwnd = hwnd;
3176 /* send TBN_BEGINADJUST notification */
3177 TOOLBAR_SendNotify (&nmhdr, infoPtr, TBN_BEGINADJUST);
3179 if (!(hRes = FindResourceW (COMCTL32_hModule,
3180 MAKEINTRESOURCEW(IDD_TBCUSTOMIZE),
3181 (LPWSTR)RT_DIALOG)))
3184 if(!(template = LoadResource (COMCTL32_hModule, hRes)))
3187 ret = DialogBoxIndirectParamW ((HINSTANCE)GetWindowLongPtrW(hwnd, GWLP_HINSTANCE),
3188 (LPCDLGTEMPLATEW)template,
3190 TOOLBAR_CustomizeDialogProc,
3193 /* send TBN_ENDADJUST notification */
3194 TOOLBAR_SendNotify (&nmhdr, infoPtr, TBN_ENDADJUST);
3201 TOOLBAR_DeleteButton (HWND hwnd, WPARAM wParam)
3203 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3204 INT nIndex = (INT)wParam;
3206 TBUTTON_INFO *btnPtr = &infoPtr->buttons[nIndex];
3208 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3211 memset(&nmtb, 0, sizeof(nmtb));
3212 nmtb.iItem = btnPtr->idCommand;
3213 nmtb.tbButton.iBitmap = btnPtr->iBitmap;
3214 nmtb.tbButton.idCommand = btnPtr->idCommand;
3215 nmtb.tbButton.fsState = btnPtr->fsState;
3216 nmtb.tbButton.fsStyle = btnPtr->fsStyle;
3217 nmtb.tbButton.dwData = btnPtr->dwData;
3218 nmtb.tbButton.iString = btnPtr->iString;
3219 TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_DELETINGBUTTON);
3221 TOOLBAR_TooltipDelTool(infoPtr, &infoPtr->buttons[nIndex]);
3223 if (infoPtr->nNumButtons == 1) {
3224 TRACE(" simple delete!\n");
3225 Free (infoPtr->buttons);
3226 infoPtr->buttons = NULL;
3227 infoPtr->nNumButtons = 0;
3230 TBUTTON_INFO *oldButtons = infoPtr->buttons;
3231 TRACE("complex delete! [nIndex=%d]\n", nIndex);
3233 infoPtr->nNumButtons--;
3234 infoPtr->buttons = Alloc (sizeof (TBUTTON_INFO) * infoPtr->nNumButtons);
3236 memcpy (&infoPtr->buttons[0], &oldButtons[0],
3237 nIndex * sizeof(TBUTTON_INFO));
3240 if (nIndex < infoPtr->nNumButtons) {
3241 memcpy (&infoPtr->buttons[nIndex], &oldButtons[nIndex+1],
3242 (infoPtr->nNumButtons - nIndex) * sizeof(TBUTTON_INFO));
3248 TOOLBAR_LayoutToolbar(hwnd);
3250 InvalidateRect (hwnd, NULL, TRUE);
3257 TOOLBAR_EnableButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3259 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3260 TBUTTON_INFO *btnPtr;
3264 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3266 TRACE("hwnd=%p, btn index=%ld, lParam=0x%08lx\n", hwnd, wParam, lParam);
3271 btnPtr = &infoPtr->buttons[nIndex];
3273 bState = btnPtr->fsState & TBSTATE_ENABLED;
3275 /* update the toolbar button state */
3276 if(LOWORD(lParam) == FALSE) {
3277 btnPtr->fsState &= ~(TBSTATE_ENABLED | TBSTATE_PRESSED);
3279 btnPtr->fsState |= TBSTATE_ENABLED;
3282 /* redraw the button only if the state of the button changed */
3283 if(bState != (btnPtr->fsState & TBSTATE_ENABLED))
3284 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3290 static inline LRESULT
3291 TOOLBAR_GetAnchorHighlight (HWND hwnd)
3293 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3295 return infoPtr->bAnchor;
3300 TOOLBAR_GetBitmap (HWND hwnd, WPARAM wParam)
3302 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3305 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3309 return infoPtr->buttons[nIndex].iBitmap;
3313 static inline LRESULT
3314 TOOLBAR_GetBitmapFlags (void)
3316 return (GetDeviceCaps (0, LOGPIXELSX) >= 120) ? TBBF_LARGE : 0;
3321 TOOLBAR_GetButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3323 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3324 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
3325 INT nIndex = (INT)wParam;
3326 TBUTTON_INFO *btnPtr;
3331 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3334 btnPtr = &infoPtr->buttons[nIndex];
3335 lpTbb->iBitmap = btnPtr->iBitmap;
3336 lpTbb->idCommand = btnPtr->idCommand;
3337 lpTbb->fsState = btnPtr->fsState;
3338 lpTbb->fsStyle = btnPtr->fsStyle;
3339 lpTbb->bReserved[0] = 0;
3340 lpTbb->bReserved[1] = 0;
3341 lpTbb->dwData = btnPtr->dwData;
3342 lpTbb->iString = btnPtr->iString;
3349 TOOLBAR_GetButtonInfoT(HWND hwnd, WPARAM wParam, LPARAM lParam, BOOL bUnicode)
3351 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3352 /* TBBUTTONINFOW and TBBUTTONINFOA have the same layout*/
3353 LPTBBUTTONINFOW lpTbInfo = (LPTBBUTTONINFOW)lParam;
3354 TBUTTON_INFO *btnPtr;
3357 if (lpTbInfo == NULL)
3360 /* MSDN documents a iImageLabel field added in Vista but it is not present in
3361 * the headers and tests shows that even with comctl 6 Vista accepts only the
3362 * original TBBUTTONINFO size
3364 if (lpTbInfo->cbSize != sizeof(TBBUTTONINFOW))
3366 WARN("Invalid button size\n");
3370 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
3371 lpTbInfo->dwMask & 0x80000000);
3375 if (!(btnPtr = &infoPtr->buttons[nIndex])) return -1;
3377 if (lpTbInfo->dwMask & TBIF_COMMAND)
3378 lpTbInfo->idCommand = btnPtr->idCommand;
3379 if (lpTbInfo->dwMask & TBIF_IMAGE)
3380 lpTbInfo->iImage = btnPtr->iBitmap;
3381 if (lpTbInfo->dwMask & TBIF_LPARAM)
3382 lpTbInfo->lParam = btnPtr->dwData;
3383 if (lpTbInfo->dwMask & TBIF_SIZE)
3384 lpTbInfo->cx = (WORD)(btnPtr->rect.right - btnPtr->rect.left);
3385 if (lpTbInfo->dwMask & TBIF_STATE)
3386 lpTbInfo->fsState = btnPtr->fsState;
3387 if (lpTbInfo->dwMask & TBIF_STYLE)
3388 lpTbInfo->fsStyle = btnPtr->fsStyle;
3389 if (lpTbInfo->dwMask & TBIF_TEXT) {
3390 /* TB_GETBUTTONINFO doesn't retrieve text from the string list, so we
3391 can't use TOOLBAR_GetText here */
3392 if (HIWORD(btnPtr->iString) && (btnPtr->iString != -1)) {
3393 LPWSTR lpText = (LPWSTR)btnPtr->iString;
3395 Str_GetPtrW(lpText, lpTbInfo->pszText, lpTbInfo->cchText);
3397 Str_GetPtrWtoA(lpText, (LPSTR)lpTbInfo->pszText, lpTbInfo->cchText);
3399 lpTbInfo->pszText[0] = '\0';
3406 TOOLBAR_GetButtonSize (HWND hwnd)
3408 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3410 return MAKELONG((WORD)infoPtr->nButtonWidth,
3411 (WORD)infoPtr->nButtonHeight);
3416 TOOLBAR_GetButtonTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
3418 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3425 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3429 lpText = TOOLBAR_GetText(infoPtr,&infoPtr->buttons[nIndex]);
3431 return WideCharToMultiByte( CP_ACP, 0, lpText, -1,
3432 (LPSTR)lParam, 0x7fffffff, NULL, NULL ) - 1;
3437 TOOLBAR_GetButtonTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
3439 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3444 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3448 lpText = TOOLBAR_GetText(infoPtr,&infoPtr->buttons[nIndex]);
3452 ret = strlenW (lpText);
3455 strcpyW ((LPWSTR)lParam, lpText);
3463 TOOLBAR_GetDisabledImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3465 TRACE("hwnd=%p, wParam=%ld, lParam=0x%lx\n", hwnd, wParam, lParam);
3466 /* UNDOCUMENTED: wParam is actually the ID of the image list to return */
3467 return (LRESULT)GETDISIMAGELIST(TOOLBAR_GetInfoPtr (hwnd), wParam);
3471 static inline LRESULT
3472 TOOLBAR_GetExtendedStyle (HWND hwnd)
3474 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3478 return infoPtr->dwExStyle;
3483 TOOLBAR_GetHotImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3485 TRACE("hwnd=%p, wParam=%ld, lParam=0x%lx\n", hwnd, wParam, lParam);
3486 /* UNDOCUMENTED: wParam is actually the ID of the image list to return */
3487 return (LRESULT)GETHOTIMAGELIST(TOOLBAR_GetInfoPtr (hwnd), wParam);
3492 TOOLBAR_GetHotItem (HWND hwnd)
3494 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3496 if (!((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)))
3499 if (infoPtr->nHotItem < 0)
3502 return (LRESULT)infoPtr->nHotItem;
3507 TOOLBAR_GetDefImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3509 TRACE("hwnd=%p, wParam=%ld, lParam=0x%lx\n", hwnd, wParam, lParam);
3510 /* UNDOCUMENTED: wParam is actually the ID of the image list to return */
3511 return (LRESULT) GETDEFIMAGELIST(TOOLBAR_GetInfoPtr(hwnd), wParam);
3516 TOOLBAR_GetInsertMark (HWND hwnd, LPARAM lParam)
3518 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3519 TBINSERTMARK *lptbim = (TBINSERTMARK*)lParam;
3521 TRACE("hwnd = %p, lptbim = %p\n", hwnd, lptbim);
3523 *lptbim = infoPtr->tbim;
3530 TOOLBAR_GetInsertMarkColor (HWND hwnd)
3532 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3534 TRACE("hwnd = %p\n", hwnd);
3536 return (LRESULT)infoPtr->clrInsertMark;
3541 TOOLBAR_GetItemRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
3543 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3544 TBUTTON_INFO *btnPtr;
3548 nIndex = (INT)wParam;
3549 btnPtr = &infoPtr->buttons[nIndex];
3550 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3552 lpRect = (LPRECT)lParam;
3555 if (btnPtr->fsState & TBSTATE_HIDDEN)
3558 lpRect->left = btnPtr->rect.left;
3559 lpRect->right = btnPtr->rect.right;
3560 lpRect->bottom = btnPtr->rect.bottom;
3561 lpRect->top = btnPtr->rect.top;
3568 TOOLBAR_GetMaxSize (HWND hwnd, LPARAM lParam)
3570 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3571 LPSIZE lpSize = (LPSIZE)lParam;
3576 lpSize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
3577 lpSize->cy = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
3579 TRACE("maximum size %d x %d\n",
3580 infoPtr->rcBound.right - infoPtr->rcBound.left,
3581 infoPtr->rcBound.bottom - infoPtr->rcBound.top);
3587 /* << TOOLBAR_GetObject >> */
3591 TOOLBAR_GetPadding (HWND hwnd)
3593 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3596 oldPad = MAKELONG(infoPtr->szPadding.cx, infoPtr->szPadding.cy);
3597 return (LRESULT) oldPad;
3602 TOOLBAR_GetRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
3604 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3605 TBUTTON_INFO *btnPtr;
3609 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3610 btnPtr = &infoPtr->buttons[nIndex];
3611 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3613 lpRect = (LPRECT)lParam;
3617 lpRect->left = btnPtr->rect.left;
3618 lpRect->right = btnPtr->rect.right;
3619 lpRect->bottom = btnPtr->rect.bottom;
3620 lpRect->top = btnPtr->rect.top;
3627 TOOLBAR_GetRows (HWND hwnd)
3629 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3631 return infoPtr->nRows;
3636 TOOLBAR_GetState (HWND hwnd, WPARAM wParam)
3638 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3641 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3645 return infoPtr->buttons[nIndex].fsState;
3650 TOOLBAR_GetStyle (HWND hwnd)
3652 return GetWindowLongW(hwnd, GWL_STYLE);
3657 TOOLBAR_GetTextRows (HWND hwnd)
3659 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3661 return infoPtr->nMaxTextRows;
3666 TOOLBAR_GetToolTips (HWND hwnd)
3668 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3670 if ((infoPtr->dwStyle & TBSTYLE_TOOLTIPS) && (infoPtr->hwndToolTip == NULL))
3671 TOOLBAR_TooltipCreateControl(infoPtr);
3672 return (LRESULT)infoPtr->hwndToolTip;
3677 TOOLBAR_GetUnicodeFormat (HWND hwnd)
3679 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3681 TRACE("%s hwnd=%p\n",
3682 infoPtr->bUnicode ? "TRUE" : "FALSE", hwnd);
3684 return infoPtr->bUnicode;
3688 static inline LRESULT
3689 TOOLBAR_GetVersion (HWND hwnd)
3691 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3692 return infoPtr->iVersion;
3697 TOOLBAR_HideButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3699 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3700 TBUTTON_INFO *btnPtr;
3705 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3709 btnPtr = &infoPtr->buttons[nIndex];
3710 if (LOWORD(lParam) == FALSE)
3711 btnPtr->fsState &= ~TBSTATE_HIDDEN;
3713 btnPtr->fsState |= TBSTATE_HIDDEN;
3715 TOOLBAR_LayoutToolbar (hwnd);
3717 InvalidateRect (hwnd, NULL, TRUE);
3723 static inline LRESULT
3724 TOOLBAR_HitTest (HWND hwnd, LPARAM lParam)
3726 return TOOLBAR_InternalHitTest (hwnd, (LPPOINT)lParam);
3731 TOOLBAR_Indeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
3733 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3734 TBUTTON_INFO *btnPtr;
3738 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3742 btnPtr = &infoPtr->buttons[nIndex];
3743 oldState = btnPtr->fsState;
3744 if (LOWORD(lParam) == FALSE)
3745 btnPtr->fsState &= ~TBSTATE_INDETERMINATE;
3747 btnPtr->fsState |= TBSTATE_INDETERMINATE;
3749 if(oldState != btnPtr->fsState)
3750 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3757 TOOLBAR_InsertButtonT(HWND hwnd, WPARAM wParam, LPARAM lParam, BOOL fUnicode)
3759 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3760 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
3761 INT nIndex = (INT)wParam;
3766 TOOLBAR_DumpButton(infoPtr, (TBUTTON_INFO *)lpTbb, nIndex, FALSE);
3769 /* EPP: this seems to be an undocumented call (from my IE4)
3770 * I assume in that case that:
3771 * - index of insertion is at the end of existing buttons
3772 * I only see this happen with nIndex == -1, but it could have a special
3773 * meaning (like -nIndex (or ~nIndex) to get the real position of insertion).
3775 nIndex = infoPtr->nNumButtons;
3777 } else if (nIndex < 0)
3780 TRACE("inserting button index=%d\n", nIndex);
3781 if (nIndex > infoPtr->nNumButtons) {
3782 nIndex = infoPtr->nNumButtons;
3783 TRACE("adjust index=%d\n", nIndex);
3786 infoPtr->nNumButtons++;
3787 infoPtr->buttons = ReAlloc(infoPtr->buttons, sizeof(TBUTTON_INFO) * infoPtr->nNumButtons);
3788 memmove(&infoPtr->buttons[nIndex+1], &infoPtr->buttons[nIndex],
3789 (infoPtr->nNumButtons - nIndex - 1) * sizeof(TBUTTON_INFO));
3791 /* insert new button */
3792 infoPtr->buttons[nIndex].iBitmap = lpTbb->iBitmap;
3793 infoPtr->buttons[nIndex].idCommand = lpTbb->idCommand;
3794 infoPtr->buttons[nIndex].fsState = lpTbb->fsState;
3795 infoPtr->buttons[nIndex].fsStyle = lpTbb->fsStyle;
3796 infoPtr->buttons[nIndex].dwData = lpTbb->dwData;
3797 /* if passed string and not index, then add string */
3798 if(HIWORD(lpTbb->iString) && lpTbb->iString!=-1) {
3800 Str_SetPtrW((LPWSTR *)&infoPtr->buttons[nIndex].iString, (LPWSTR)lpTbb->iString);
3802 Str_SetPtrAtoW((LPWSTR *)&infoPtr->buttons[nIndex].iString, (LPCSTR )lpTbb->iString);
3805 infoPtr->buttons[nIndex].iString = lpTbb->iString;
3807 TOOLBAR_TooltipAddTool(infoPtr, &infoPtr->buttons[nIndex]);
3809 if (infoPtr->nNumStrings > 0)
3810 TOOLBAR_CalcToolbar(hwnd);
3812 TOOLBAR_LayoutToolbar(hwnd);
3813 TOOLBAR_AutoSize (hwnd);
3815 InvalidateRect (hwnd, NULL, TRUE);
3820 /* << TOOLBAR_InsertMarkHitTest >> */
3824 TOOLBAR_IsButtonChecked (HWND hwnd, WPARAM wParam)
3826 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3829 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3833 return (infoPtr->buttons[nIndex].fsState & TBSTATE_CHECKED);
3838 TOOLBAR_IsButtonEnabled (HWND hwnd, WPARAM wParam)
3840 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3843 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3847 return (infoPtr->buttons[nIndex].fsState & TBSTATE_ENABLED);
3852 TOOLBAR_IsButtonHidden (HWND hwnd, WPARAM wParam)
3854 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3857 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3861 return (infoPtr->buttons[nIndex].fsState & TBSTATE_HIDDEN);
3866 TOOLBAR_IsButtonHighlighted (HWND hwnd, WPARAM wParam)
3868 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3871 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3875 return (infoPtr->buttons[nIndex].fsState & TBSTATE_MARKED);
3880 TOOLBAR_IsButtonIndeterminate (HWND hwnd, WPARAM wParam)
3882 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3885 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3889 return (infoPtr->buttons[nIndex].fsState & TBSTATE_INDETERMINATE);
3894 TOOLBAR_IsButtonPressed (HWND hwnd, WPARAM wParam)
3896 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3899 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3903 return (infoPtr->buttons[nIndex].fsState & TBSTATE_PRESSED);
3908 TOOLBAR_LoadImages (HWND hwnd, WPARAM wParam, LPARAM lParam)
3911 tbab.hInst = (HINSTANCE)lParam;
3914 TRACE("hwnd = %p, hInst = %p, nID = %lu\n", hwnd, tbab.hInst, tbab.nID);
3916 return TOOLBAR_AddBitmap(hwnd, 0, (LPARAM)&tbab);
3921 TOOLBAR_MapAccelerator (HWND hwnd, WPARAM wParam, LPARAM lParam)
3923 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3924 WCHAR wAccel = (WCHAR)wParam;
3925 UINT* pIDButton = (UINT*)lParam;
3926 WCHAR wszAccel[] = {'&',wAccel,0};
3929 TRACE("hwnd = %p, wAccel = %x(%s), pIDButton = %p\n",
3930 hwnd, wAccel, debugstr_wn(&wAccel,1), pIDButton);
3932 for (i = 0; i < infoPtr->nNumButtons; i++)
3934 TBUTTON_INFO *btnPtr = infoPtr->buttons+i;
3935 if (!(btnPtr->fsStyle & BTNS_NOPREFIX) &&
3936 !(btnPtr->fsState & TBSTATE_HIDDEN))
3938 int iLen = strlenW(wszAccel);
3939 LPCWSTR lpszStr = TOOLBAR_GetText(infoPtr, btnPtr);
3946 if ((lpszStr[0] == '&') && (lpszStr[1] == '&'))
3951 if (!strncmpiW(lpszStr, wszAccel, iLen))
3953 *pIDButton = btnPtr->idCommand;
3965 TOOLBAR_MarkButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3967 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3970 TBUTTON_INFO *btnPtr;
3972 TRACE("hwnd = %p, wParam = %ld, lParam = 0x%08lx\n", hwnd, wParam, lParam);
3974 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
3978 btnPtr = &infoPtr->buttons[nIndex];
3979 oldState = btnPtr->fsState;
3982 btnPtr->fsState |= TBSTATE_MARKED;
3984 btnPtr->fsState &= ~TBSTATE_MARKED;
3986 if(oldState != btnPtr->fsState)
3987 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
3993 /* fixes up an index of a button affected by a move */
3994 static inline void TOOLBAR_MoveFixupIndex(INT* pIndex, INT nIndex, INT nMoveIndex, BOOL bMoveUp)
3998 if (*pIndex > nIndex && *pIndex <= nMoveIndex)
4000 else if (*pIndex == nIndex)
4001 *pIndex = nMoveIndex;
4005 if (*pIndex >= nMoveIndex && *pIndex < nIndex)
4007 else if (*pIndex == nIndex)
4008 *pIndex = nMoveIndex;
4014 TOOLBAR_MoveButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
4016 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4019 INT nMoveIndex = (INT)lParam;
4020 TBUTTON_INFO button;
4022 TRACE("hwnd=%p, wParam=%ld, lParam=%ld\n", hwnd, wParam, lParam);
4024 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, TRUE);
4025 if ((nIndex == -1) || (nMoveIndex < 0))
4028 if (nMoveIndex > infoPtr->nNumButtons - 1)
4029 nMoveIndex = infoPtr->nNumButtons - 1;
4031 button = infoPtr->buttons[nIndex];
4033 /* move button right */
4034 if (nIndex < nMoveIndex)
4036 nCount = nMoveIndex - nIndex;
4037 memmove(&infoPtr->buttons[nIndex], &infoPtr->buttons[nIndex+1], nCount*sizeof(TBUTTON_INFO));
4038 infoPtr->buttons[nMoveIndex] = button;
4040 TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDown, nIndex, nMoveIndex, TRUE);
4041 TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDrag, nIndex, nMoveIndex, TRUE);
4042 TOOLBAR_MoveFixupIndex(&infoPtr->nOldHit, nIndex, nMoveIndex, TRUE);
4043 TOOLBAR_MoveFixupIndex(&infoPtr->nHotItem, nIndex, nMoveIndex, TRUE);
4045 else if (nIndex > nMoveIndex) /* move button left */
4047 nCount = nIndex - nMoveIndex;
4048 memmove(&infoPtr->buttons[nMoveIndex+1], &infoPtr->buttons[nMoveIndex], nCount*sizeof(TBUTTON_INFO));
4049 infoPtr->buttons[nMoveIndex] = button;
4051 TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDown, nIndex, nMoveIndex, FALSE);
4052 TOOLBAR_MoveFixupIndex(&infoPtr->nButtonDrag, nIndex, nMoveIndex, FALSE);
4053 TOOLBAR_MoveFixupIndex(&infoPtr->nOldHit, nIndex, nMoveIndex, FALSE);
4054 TOOLBAR_MoveFixupIndex(&infoPtr->nHotItem, nIndex, nMoveIndex, FALSE);
4057 TOOLBAR_LayoutToolbar(hwnd);
4058 TOOLBAR_AutoSize(hwnd);
4059 InvalidateRect(hwnd, NULL, TRUE);
4066 TOOLBAR_PressButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
4068 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4069 TBUTTON_INFO *btnPtr;
4073 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
4077 btnPtr = &infoPtr->buttons[nIndex];
4078 oldState = btnPtr->fsState;
4079 if (LOWORD(lParam) == FALSE)
4080 btnPtr->fsState &= ~TBSTATE_PRESSED;
4082 btnPtr->fsState |= TBSTATE_PRESSED;
4084 if(oldState != btnPtr->fsState)
4085 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4090 /* FIXME: there might still be some confusion her between number of buttons
4091 * and number of bitmaps */
4093 TOOLBAR_ReplaceBitmap (HWND hwnd, LPARAM lParam)
4095 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4096 LPTBREPLACEBITMAP lpReplace = (LPTBREPLACEBITMAP) lParam;
4098 int i = 0, nOldButtons = 0, pos = 0;
4099 int nOldBitmaps, nNewBitmaps = 0;
4100 HIMAGELIST himlDef = 0;
4102 TRACE("hInstOld %p nIDOld %lx hInstNew %p nIDNew %lx nButtons %x\n",
4103 lpReplace->hInstOld, lpReplace->nIDOld, lpReplace->hInstNew, lpReplace->nIDNew,
4104 lpReplace->nButtons);
4106 if (lpReplace->hInstOld == HINST_COMMCTRL)
4108 FIXME("changing standard bitmaps not implemented\n");
4111 else if (lpReplace->hInstOld != 0)
4112 FIXME("resources not in the current module not implemented\n");
4114 TRACE("To be replaced hInstOld %p nIDOld %lx\n", lpReplace->hInstOld, lpReplace->nIDOld);
4115 for (i = 0; i < infoPtr->nNumBitmapInfos; i++) {
4116 TBITMAP_INFO *tbi = &infoPtr->bitmaps[i];
4117 TRACE("tbimapinfo %d hInstOld %p nIDOld %x\n", i, tbi->hInst, tbi->nID);
4118 if (tbi->hInst == lpReplace->hInstOld && tbi->nID == lpReplace->nIDOld)
4120 TRACE("Found: nButtons %d hInst %p nID %x\n", tbi->nButtons, tbi->hInst, tbi->nID);
4121 nOldButtons = tbi->nButtons;
4122 tbi->nButtons = lpReplace->nButtons;
4123 tbi->hInst = lpReplace->hInstNew;
4124 tbi->nID = lpReplace->nIDNew;
4125 TRACE("tbimapinfo changed %d hInstOld %p nIDOld %x\n", i, tbi->hInst, tbi->nID);
4128 pos += tbi->nButtons;
4131 if (nOldButtons == 0)
4133 WARN("No hinst/bitmap found! hInst %p nID %lx\n", lpReplace->hInstOld, lpReplace->nIDOld);
4137 /* copy the bitmap before adding it as ImageList_AddMasked modifies the
4140 if (lpReplace->hInstNew)
4141 hBitmap = LoadBitmapW(lpReplace->hInstNew,(LPWSTR)lpReplace->nIDNew);
4143 hBitmap = CopyImage((HBITMAP)lpReplace->nIDNew, IMAGE_BITMAP, 0, 0, 0);
4145 himlDef = GETDEFIMAGELIST(infoPtr, 0); /* fixme: correct? */
4146 nOldBitmaps = ImageList_GetImageCount(himlDef);
4148 /* ImageList_Replace(GETDEFIMAGELIST(), pos, hBitmap, NULL); */
4150 for (i = pos + nOldBitmaps - 1; i >= pos; i--)
4151 ImageList_Remove(himlDef, i);
4155 ImageList_AddMasked (himlDef, hBitmap, comctl32_color.clrBtnFace);
4156 nNewBitmaps = ImageList_GetImageCount(himlDef);
4157 DeleteObject(hBitmap);
4160 infoPtr->nNumBitmaps = infoPtr->nNumBitmaps - nOldBitmaps + nNewBitmaps;
4162 TRACE(" pos %d %d old bitmaps replaced by %d new ones.\n",
4163 pos, nOldBitmaps, nNewBitmaps);
4165 InvalidateRect(hwnd, NULL, TRUE);
4170 /* helper for TOOLBAR_SaveRestoreW */
4172 TOOLBAR_Save(const TBSAVEPARAMSW *lpSave)
4174 FIXME("save to %s %s\n", debugstr_w(lpSave->pszSubKey),
4175 debugstr_w(lpSave->pszValueName));
4181 /* helper for TOOLBAR_Restore */
4183 TOOLBAR_DeleteAllButtons(TOOLBAR_INFO *infoPtr)
4187 for (i = 0; i < infoPtr->nNumButtons; i++)
4189 TOOLBAR_TooltipDelTool(infoPtr, &infoPtr->buttons[i]);
4192 Free(infoPtr->buttons);
4193 infoPtr->buttons = NULL;
4194 infoPtr->nNumButtons = 0;
4198 /* helper for TOOLBAR_SaveRestoreW */
4200 TOOLBAR_Restore(TOOLBAR_INFO *infoPtr, const TBSAVEPARAMSW *lpSave)
4209 /* restore toolbar information */
4210 TRACE("restore from %s %s\n", debugstr_w(lpSave->pszSubKey),
4211 debugstr_w(lpSave->pszValueName));
4213 memset(&nmtbr, 0, sizeof(nmtbr));
4215 res = RegOpenKeyExW(lpSave->hkr, lpSave->pszSubKey, 0,
4216 KEY_QUERY_VALUE, &hkey);
4218 res = RegQueryValueExW(hkey, lpSave->pszValueName, NULL, &dwType,
4220 if (!res && dwType != REG_BINARY)
4221 res = ERROR_FILE_NOT_FOUND;
4224 nmtbr.pData = Alloc(dwSize);
4225 nmtbr.cbData = dwSize;
4226 if (!nmtbr.pData) res = ERROR_OUTOFMEMORY;
4229 res = RegQueryValueExW(hkey, lpSave->pszValueName, NULL, &dwType,
4230 (LPBYTE)nmtbr.pData, &dwSize);
4233 nmtbr.pCurrent = nmtbr.pData;
4235 nmtbr.cbBytesPerRecord = sizeof(DWORD);
4236 nmtbr.cButtons = nmtbr.cbData / nmtbr.cbBytesPerRecord;
4238 if (!TOOLBAR_SendNotify(&nmtbr.hdr, infoPtr, TBN_RESTORE))
4242 /* remove all existing buttons as this function is designed to
4243 * restore the toolbar to a previously saved state */
4244 TOOLBAR_DeleteAllButtons(infoPtr);
4246 for (i = 0; i < nmtbr.cButtons; i++)
4249 nmtbr.tbButton.iBitmap = -1;
4250 nmtbr.tbButton.fsState = 0;
4251 nmtbr.tbButton.fsStyle = 0;
4252 nmtbr.tbButton.idCommand = 0;
4253 if (*nmtbr.pCurrent == (DWORD)-1)
4256 nmtbr.tbButton.fsStyle = TBSTYLE_SEP;
4257 nmtbr.tbButton.iBitmap = SEPARATOR_WIDTH;
4259 else if (*nmtbr.pCurrent == (DWORD)-2)
4261 nmtbr.tbButton.fsState = TBSTATE_HIDDEN;
4263 nmtbr.tbButton.idCommand = (int)*nmtbr.pCurrent;
4267 TOOLBAR_SendNotify(&nmtbr.hdr, infoPtr, TBN_RESTORE);
4269 /* can't contain real string as we don't know whether
4270 * the client put an ANSI or Unicode string in there */
4271 if (HIWORD(nmtbr.tbButton.iString))
4272 nmtbr.tbButton.iString = 0;
4274 TOOLBAR_InsertButtonT(infoPtr->hwndSelf, -1,
4275 (LPARAM)&nmtbr.tbButton, TRUE);
4278 /* do legacy notifications */
4279 if (infoPtr->iVersion < 5)
4281 /* FIXME: send TBN_BEGINADJUST */
4282 FIXME("send TBN_GETBUTTONINFO for each button\n");
4283 /* FIXME: send TBN_ENDADJUST */
4286 /* remove all uninitialised buttons
4287 * note: loop backwards to avoid having to fixup i on a
4289 for (i = infoPtr->nNumButtons - 1; i >= 0; i--)
4290 if (infoPtr->buttons[i].iBitmap == -1)
4291 TOOLBAR_DeleteButton(infoPtr->hwndSelf, i);
4293 /* only indicate success if at least one button survived */
4294 if (infoPtr->nNumButtons > 0) ret = TRUE;
4305 TOOLBAR_SaveRestoreW (HWND hwnd, WPARAM wParam, const TBSAVEPARAMSW *lpSave)
4307 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4309 if (lpSave == NULL) return 0;
4312 return TOOLBAR_Save(lpSave);
4314 return TOOLBAR_Restore(infoPtr, lpSave);
4319 TOOLBAR_SaveRestoreA (HWND hwnd, WPARAM wParam, const TBSAVEPARAMSA *lpSave)
4321 LPWSTR pszValueName = 0, pszSubKey = 0;
4322 TBSAVEPARAMSW SaveW;
4326 if (lpSave == NULL) return 0;
4328 len = MultiByteToWideChar(CP_ACP, 0, lpSave->pszSubKey, -1, NULL, 0);
4329 pszSubKey = Alloc(len * sizeof(WCHAR));
4330 if (pszSubKey) goto exit;
4331 MultiByteToWideChar(CP_ACP, 0, lpSave->pszSubKey, -1, pszSubKey, len);
4333 len = MultiByteToWideChar(CP_ACP, 0, lpSave->pszValueName, -1, NULL, 0);
4334 pszValueName = Alloc(len * sizeof(WCHAR));
4335 if (!pszValueName) goto exit;
4336 MultiByteToWideChar(CP_ACP, 0, lpSave->pszValueName, -1, pszValueName, len);
4338 SaveW.pszValueName = pszValueName;
4339 SaveW.pszSubKey = pszSubKey;
4340 SaveW.hkr = lpSave->hkr;
4341 result = TOOLBAR_SaveRestoreW(hwnd, wParam, &SaveW);
4344 Free (pszValueName);
4352 TOOLBAR_SetAnchorHighlight (HWND hwnd, WPARAM wParam)
4354 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4355 BOOL bOldAnchor = infoPtr->bAnchor;
4357 TRACE("hwnd=%p, bAnchor = %s\n", hwnd, wParam ? "TRUE" : "FALSE");
4359 infoPtr->bAnchor = (BOOL)wParam;
4361 /* Native does not remove the hot effect from an already hot button */
4363 return (LRESULT)bOldAnchor;
4368 TOOLBAR_SetBitmapSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
4370 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4371 HIMAGELIST himlDef = GETDEFIMAGELIST(infoPtr, 0);
4372 short width = (short)LOWORD(lParam);
4373 short height = (short)HIWORD(lParam);
4375 TRACE("hwnd=%p, wParam=%ld, lParam=%ld\n", hwnd, wParam, lParam);
4378 FIXME("wParam is %ld. Perhaps image list index?\n", wParam);
4380 /* 0 width or height is changed to 1 */
4386 if (infoPtr->nNumButtons > 0)
4387 TRACE("%d buttons, undoc change to bitmap size : %d-%d -> %d-%d\n",
4388 infoPtr->nNumButtons,
4389 infoPtr->nBitmapWidth, infoPtr->nBitmapHeight, width, height);
4391 if (width < -1 || height < -1)
4393 /* Windows destroys the imagelist and seems to actually use negative
4394 * values to compute button sizes */
4395 FIXME("Negative bitmap sizes not supported (%d, %d)\n", width, height);
4399 /* width or height of -1 means no change */
4401 infoPtr->nBitmapWidth = width;
4403 infoPtr->nBitmapHeight = height;
4405 if ((himlDef == infoPtr->himlInt) &&
4406 (ImageList_GetImageCount(infoPtr->himlInt) == 0))
4408 ImageList_SetIconSize(infoPtr->himlInt, infoPtr->nBitmapWidth,
4409 infoPtr->nBitmapHeight);
4412 TOOLBAR_CalcToolbar(hwnd);
4413 InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
4419 TOOLBAR_SetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
4421 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4422 LPTBBUTTONINFOA lptbbi = (LPTBBUTTONINFOA)lParam;
4423 TBUTTON_INFO *btnPtr;
4429 if (lptbbi->cbSize < sizeof(TBBUTTONINFOA))
4432 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
4433 lptbbi->dwMask & 0x80000000);
4437 btnPtr = &infoPtr->buttons[nIndex];
4438 if (lptbbi->dwMask & TBIF_COMMAND)
4439 btnPtr->idCommand = lptbbi->idCommand;
4440 if (lptbbi->dwMask & TBIF_IMAGE)
4441 btnPtr->iBitmap = lptbbi->iImage;
4442 if (lptbbi->dwMask & TBIF_LPARAM)
4443 btnPtr->dwData = lptbbi->lParam;
4444 if (lptbbi->dwMask & TBIF_SIZE)
4445 btnPtr->cx = lptbbi->cx;
4446 if (lptbbi->dwMask & TBIF_STATE)
4447 btnPtr->fsState = lptbbi->fsState;
4448 if (lptbbi->dwMask & TBIF_STYLE)
4449 btnPtr->fsStyle = lptbbi->fsStyle;
4451 if ((lptbbi->dwMask & TBIF_TEXT) && ((INT_PTR)lptbbi->pszText != -1)) {
4452 if ((HIWORD(btnPtr->iString) == 0) || (btnPtr->iString == -1))
4453 /* iString is index, zero it to make Str_SetPtr succeed */
4456 Str_SetPtrAtoW ((LPWSTR *)&btnPtr->iString, lptbbi->pszText);
4459 /* save the button rect to see if we need to redraw the whole toolbar */
4460 oldBtnRect = btnPtr->rect;
4461 TOOLBAR_CalcToolbar(hwnd);
4463 if (!EqualRect(&oldBtnRect, &btnPtr->rect))
4464 InvalidateRect(hwnd, NULL, TRUE);
4466 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4473 TOOLBAR_SetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
4475 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4476 LPTBBUTTONINFOW lptbbi = (LPTBBUTTONINFOW)lParam;
4477 TBUTTON_INFO *btnPtr;
4483 if (lptbbi->cbSize < sizeof(TBBUTTONINFOW))
4486 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam,
4487 lptbbi->dwMask & 0x80000000);
4491 btnPtr = &infoPtr->buttons[nIndex];
4492 if (lptbbi->dwMask & TBIF_COMMAND)
4493 btnPtr->idCommand = lptbbi->idCommand;
4494 if (lptbbi->dwMask & TBIF_IMAGE)
4495 btnPtr->iBitmap = lptbbi->iImage;
4496 if (lptbbi->dwMask & TBIF_LPARAM)
4497 btnPtr->dwData = lptbbi->lParam;
4498 if (lptbbi->dwMask & TBIF_SIZE)
4499 btnPtr->cx = lptbbi->cx;
4500 if (lptbbi->dwMask & TBIF_STATE)
4501 btnPtr->fsState = lptbbi->fsState;
4502 if (lptbbi->dwMask & TBIF_STYLE)
4503 btnPtr->fsStyle = lptbbi->fsStyle;
4505 if ((lptbbi->dwMask & TBIF_TEXT) && ((INT_PTR)lptbbi->pszText != -1)) {
4506 if ((HIWORD(btnPtr->iString) == 0) || (btnPtr->iString == -1))
4507 /* iString is index, zero it to make Str_SetPtr succeed */
4509 Str_SetPtrW ((LPWSTR *)&btnPtr->iString, lptbbi->pszText);
4512 /* save the button rect to see if we need to redraw the whole toolbar */
4513 oldBtnRect = btnPtr->rect;
4514 TOOLBAR_CalcToolbar(hwnd);
4516 if (!EqualRect(&oldBtnRect, &btnPtr->rect))
4517 InvalidateRect(hwnd, NULL, TRUE);
4519 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4526 TOOLBAR_SetButtonSize (HWND hwnd, LPARAM lParam)
4528 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4529 INT cx = (short)LOWORD(lParam), cy = (short)HIWORD(lParam);
4531 if ((cx < 0) || (cy < 0))
4533 ERR("invalid parameter 0x%08x\n", (DWORD)lParam);
4537 TRACE("%p, cx = %d, cy = %d\n", hwnd, cx, cy);
4539 /* The documentation claims you can only change the button size before
4540 * any button has been added. But this is wrong.
4541 * WINZIP32.EXE (ver 8) calls this on one of its buttons after adding
4542 * it to the toolbar, and it checks that the return value is nonzero - mjm
4543 * Further testing shows that we must actually perform the change too.
4546 * The documentation also does not mention that if 0 is supplied for
4547 * either size, the system changes it to the default of 24 wide and
4548 * 22 high. Demonstarted in ControlSpy Toolbar. GLA 3/02
4550 if (cx == 0) cx = 24;
4551 if (cy == 0) cx = 22;
4553 cx = max(cx, infoPtr->szPadding.cx + infoPtr->nBitmapWidth);
4554 cy = max(cy, infoPtr->szPadding.cy + infoPtr->nBitmapHeight);
4556 infoPtr->nButtonWidth = cx;
4557 infoPtr->nButtonHeight = cy;
4559 infoPtr->iTopMargin = default_top_margin(infoPtr);
4560 TOOLBAR_LayoutToolbar(hwnd);
4566 TOOLBAR_SetButtonWidth (HWND hwnd, LPARAM lParam)
4568 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4570 /* if setting to current values, ignore */
4571 if ((infoPtr->cxMin == (short)LOWORD(lParam)) &&
4572 (infoPtr->cxMax == (short)HIWORD(lParam))) {
4573 TRACE("matches current width, min=%d, max=%d, no recalc\n",
4574 infoPtr->cxMin, infoPtr->cxMax);
4578 /* save new values */
4579 infoPtr->cxMin = (short)LOWORD(lParam);
4580 infoPtr->cxMax = (short)HIWORD(lParam);
4582 /* otherwise we need to recalc the toolbar and in some cases
4583 recalc the bounding rectangle (does DrawText w/ DT_CALCRECT
4584 which doesn't actually draw - GA). */
4585 TRACE("number of buttons %d, cx=%d, cy=%d, recalcing\n",
4586 infoPtr->nNumButtons, infoPtr->cxMin, infoPtr->cxMax);
4588 TOOLBAR_CalcToolbar (hwnd);
4590 InvalidateRect (hwnd, NULL, TRUE);
4597 TOOLBAR_SetCmdId (HWND hwnd, WPARAM wParam, LPARAM lParam)
4599 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4600 INT nIndex = (INT)wParam;
4602 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
4605 infoPtr->buttons[nIndex].idCommand = (INT)lParam;
4607 if (infoPtr->hwndToolTip) {
4609 FIXME("change tool tip!\n");
4618 TOOLBAR_SetDisabledImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
4620 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4621 HIMAGELIST himl = (HIMAGELIST)lParam;
4622 HIMAGELIST himlTemp;
4625 if (infoPtr->iVersion >= 5)
4628 himlTemp = TOOLBAR_InsertImageList(&infoPtr->himlDis,
4629 &infoPtr->cimlDis, himl, id);
4631 /* FIXME: redraw ? */
4633 return (LRESULT)himlTemp;
4638 TOOLBAR_SetDrawTextFlags (HWND hwnd, WPARAM wParam, LPARAM lParam)
4640 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4643 TRACE("hwnd = %p, dwMask = 0x%08x, dwDTFlags = 0x%08x\n", hwnd, (DWORD)wParam, (DWORD)lParam);
4645 dwTemp = infoPtr->dwDTFlags;
4646 infoPtr->dwDTFlags =
4647 (infoPtr->dwDTFlags & (DWORD)wParam) | (DWORD)lParam;
4649 return (LRESULT)dwTemp;
4652 /* This function differs a bit from what MSDN says it does:
4653 * 1. lParam contains extended style flags to OR with current style
4654 * (MSDN isn't clear on the OR bit)
4655 * 2. wParam appears to contain extended style flags to be reset
4656 * (MSDN says that this parameter is reserved)
4659 TOOLBAR_SetExtendedStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
4661 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4664 dwTemp = infoPtr->dwExStyle;
4665 infoPtr->dwExStyle &= ~wParam;
4666 infoPtr->dwExStyle |= (DWORD)lParam;
4668 TRACE("new style 0x%08x\n", infoPtr->dwExStyle);
4670 if (infoPtr->dwExStyle & ~TBSTYLE_EX_ALL)
4671 FIXME("Unknown Toolbar Extended Style 0x%08x. Please report.\n",
4672 (infoPtr->dwExStyle & ~TBSTYLE_EX_ALL));
4674 TOOLBAR_CalcToolbar (hwnd);
4676 TOOLBAR_AutoSize(hwnd);
4678 InvalidateRect(hwnd, NULL, TRUE);
4680 return (LRESULT)dwTemp;
4685 TOOLBAR_SetHotImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
4687 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
4688 HIMAGELIST himlTemp;
4689 HIMAGELIST himl = (HIMAGELIST)lParam;
4692 if (infoPtr->iVersion >= 5)
4695 TRACE("hwnd = %p, himl = %p, id = %d\n", hwnd, himl, id);
4697 himlTemp = TOOLBAR_InsertImageList(&infoPtr->himlHot,
4698 &infoPtr->cimlHot, himl, id);
4700 /* FIXME: redraw ? */
4702 return (LRESULT)himlTemp;
4706 /* Makes previous hot button no longer hot, makes the specified
4707 * button hot and sends appropriate notifications. dwReason is one or
4708 * more HICF_ flags. Specify nHit < 0 to make no buttons hot.
4709 * NOTE 1: this function does not validate nHit
4710 * NOTE 2: the name of this function is completely made up and
4711 * not based on any documentation from Microsoft. */
4713 TOOLBAR_SetHotItemEx (TOOLBAR_INFO *infoPtr, INT nHit, DWORD dwReason)
4715 if (infoPtr->nHotItem != nHit)
4717 NMTBHOTITEM nmhotitem;
4718 TBUTTON_INFO *btnPtr = NULL, *oldBtnPtr = NULL;
4720 nmhotitem.dwFlags = dwReason;
4721 if(infoPtr->nHotItem >= 0)
4723 oldBtnPtr = &infoPtr->buttons[infoPtr->nHotItem];
4724 nmhotitem.idOld = oldBtnPtr->idCommand;
4728 nmhotitem.dwFlags |= HICF_ENTERING;
4729 nmhotitem.idOld = 0;
4734 btnPtr = &infoPtr->buttons[nHit];
4735 nmhotitem.idNew = btnPtr->idCommand;
4739 nmhotitem.dwFlags |= HICF_LEAVING;
4740 nmhotitem.idNew = 0;
4743 /* now change the hot and invalidate the old and new buttons - if the
4745 if (!TOOLBAR_SendNotify(&nmhotitem.hdr, infoPtr, TBN_HOTITEMCHANGE))
4748 oldBtnPtr->bHot = FALSE;
4749 InvalidateRect(infoPtr->hwndSelf, &oldBtnPtr->rect, TRUE);
4751 /* setting disabled buttons as hot fails even if the notify contains the button id */
4752 if (btnPtr && (btnPtr->fsState & TBSTATE_ENABLED)) {
4753 btnPtr->bHot = TRUE;
4754 InvalidateRect(infoPtr->hwndSelf, &btnPtr->rect, TRUE);
4755 infoPtr->nHotItem = nHit;
4758 infoPtr->nHotItem = -1;
4764 TOOLBAR_SetHotItem (HWND hwnd, WPARAM wParam)
4766 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
4767 INT nOldHotItem = infoPtr->nHotItem;
4769 TRACE("hwnd = %p, nHit = %d\n", hwnd, (INT)wParam);
4771 if ((INT)wParam >= infoPtr->nNumButtons)
4772 return infoPtr->nHotItem;
4774 if ((INT)wParam < 0)
4777 /* NOTE: an application can still remove the hot item even if anchor
4778 * highlighting is enabled */
4780 TOOLBAR_SetHotItemEx(infoPtr, wParam, HICF_OTHER);
4782 if (nOldHotItem < 0)
4785 return (LRESULT)nOldHotItem;
4790 TOOLBAR_SetImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
4792 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4793 HIMAGELIST himlTemp;
4794 HIMAGELIST himl = (HIMAGELIST)lParam;
4795 INT oldButtonWidth = infoPtr->nButtonWidth;
4798 if (infoPtr->iVersion >= 5)
4801 himlTemp = TOOLBAR_InsertImageList(&infoPtr->himlDef,
4802 &infoPtr->cimlDef, himl, id);
4804 infoPtr->nNumBitmaps = 0;
4805 for (i = 0; i < infoPtr->cimlDef; i++)
4806 infoPtr->nNumBitmaps += ImageList_GetImageCount(infoPtr->himlDef[i]->himl);
4808 if (!ImageList_GetIconSize(himl, &infoPtr->nBitmapWidth,
4809 &infoPtr->nBitmapHeight))
4811 infoPtr->nBitmapWidth = 1;
4812 infoPtr->nBitmapHeight = 1;
4814 TOOLBAR_CalcToolbar(hwnd);
4815 if (infoPtr->nButtonWidth < oldButtonWidth)
4816 TOOLBAR_SetButtonSize(hwnd, MAKELONG(oldButtonWidth, infoPtr->nButtonHeight));
4818 TRACE("hwnd %p, new himl=%p, id = %d, count=%d, bitmap w=%d, h=%d\n",
4819 hwnd, infoPtr->himlDef, id, infoPtr->nNumBitmaps,
4820 infoPtr->nBitmapWidth, infoPtr->nBitmapHeight);
4822 InvalidateRect(hwnd, NULL, TRUE);
4824 return (LRESULT)himlTemp;
4829 TOOLBAR_SetIndent (HWND hwnd, WPARAM wParam)
4831 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4833 infoPtr->nIndent = (INT)wParam;
4837 /* process only on indent changing */
4838 if(infoPtr->nIndent != (INT)wParam)
4840 infoPtr->nIndent = (INT)wParam;
4841 TOOLBAR_CalcToolbar (hwnd);
4842 InvalidateRect(hwnd, NULL, FALSE);
4850 TOOLBAR_SetInsertMark (HWND hwnd, LPARAM lParam)
4852 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4853 TBINSERTMARK *lptbim = (TBINSERTMARK*)lParam;
4855 TRACE("hwnd = %p, lptbim = { %d, 0x%08x}\n", hwnd, lptbim->iButton, lptbim->dwFlags);
4857 if ((lptbim->dwFlags & ~TBIMHT_AFTER) != 0)
4859 FIXME("Unrecognized flag(s): 0x%08x\n", (lptbim->dwFlags & ~TBIMHT_AFTER));
4863 if ((lptbim->iButton == -1) ||
4864 ((lptbim->iButton < infoPtr->nNumButtons) &&
4865 (lptbim->iButton >= 0)))
4867 infoPtr->tbim = *lptbim;
4868 /* FIXME: don't need to update entire toolbar */
4869 InvalidateRect(hwnd, NULL, TRUE);
4872 ERR("Invalid button index %d\n", lptbim->iButton);
4879 TOOLBAR_SetInsertMarkColor (HWND hwnd, LPARAM lParam)
4881 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4883 infoPtr->clrInsertMark = (COLORREF)lParam;
4885 /* FIXME: don't need to update entire toolbar */
4886 InvalidateRect(hwnd, NULL, TRUE);
4893 TOOLBAR_SetMaxTextRows (HWND hwnd, WPARAM wParam)
4895 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4897 infoPtr->nMaxTextRows = (INT)wParam;
4899 TOOLBAR_CalcToolbar(hwnd);
4904 /* MSDN gives slightly wrong info on padding.
4905 * 1. It is not only used on buttons with the BTNS_AUTOSIZE style
4906 * 2. It is not used to create a blank area between the edge of the button
4907 * and the text or image if TBSTYLE_LIST is set. It is used to control
4908 * the gap between the image and text.
4909 * 3. It is not applied to both sides. If TBSTYLE_LIST is set it is used
4910 * to control the bottom and right borders [with the border being
4911 * szPadding.cx - (GetSystemMetrics(SM_CXEDGE)+1)], otherwise the padding
4912 * is shared evenly on both sides of the button.
4913 * See blueprints in comments above TOOLBAR_MeasureButton for more info.
4916 TOOLBAR_SetPadding (HWND hwnd, LPARAM lParam)
4918 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4921 oldPad = MAKELONG(infoPtr->szPadding.cx, infoPtr->szPadding.cy);
4922 infoPtr->szPadding.cx = min(LOWORD((DWORD)lParam), GetSystemMetrics(SM_CXEDGE));
4923 infoPtr->szPadding.cy = min(HIWORD((DWORD)lParam), GetSystemMetrics(SM_CYEDGE));
4924 TRACE("cx=%d, cy=%d\n",
4925 infoPtr->szPadding.cx, infoPtr->szPadding.cy);
4926 return (LRESULT) oldPad;
4931 TOOLBAR_SetParent (HWND hwnd, WPARAM wParam)
4933 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4938 hwndOldNotify = infoPtr->hwndNotify;
4939 infoPtr->hwndNotify = (HWND)wParam;
4941 return (LRESULT)hwndOldNotify;
4946 TOOLBAR_SetRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
4948 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4949 LPRECT lprc = (LPRECT)lParam;
4950 int rows = LOWORD(wParam);
4951 BOOL bLarger = HIWORD(wParam);
4955 TRACE("Setting rows to %d (%d)\n", rows, bLarger);
4957 if(infoPtr->nRows != rows)
4959 TBUTTON_INFO *btnPtr = infoPtr->buttons;
4960 int curColumn = 0; /* Current column */
4961 int curRow = 0; /* Current row */
4962 int hidden = 0; /* Number of hidden buttons */
4963 int seps = 0; /* Number of separators */
4964 int idealWrap = 0; /* Ideal wrap point */
4969 Calculate new size and wrap points - Under windows, setrows will
4970 change the dimensions if needed to show the number of requested
4971 rows (if CCS_NORESIZE is set), or will take up the whole window
4972 (if no CCS_NORESIZE).
4974 Basic algorithm - If N buttons, and y rows requested, each row
4975 contains N/y buttons.
4977 FIXME: Handling of separators not obvious from testing results
4978 FIXME: Take width of window into account?
4981 /* Loop through the buttons one by one counting key items */
4982 for (i = 0; i < infoPtr->nNumButtons; i++ )
4984 btnPtr[i].fsState &= ~TBSTATE_WRAP;
4985 if (btnPtr[i].fsState & TBSTATE_HIDDEN)
4987 else if (btnPtr[i].fsStyle & BTNS_SEP)
4991 /* FIXME: Separators make this quite complex */
4992 if (seps) FIXME("Separators unhandled\n");
4994 /* Round up so more per line, i.e., less rows */
4995 idealWrap = (infoPtr->nNumButtons - hidden + (rows-1)) / rows;
4997 /* Calculate ideal wrap point if we are allowed to grow, but cannot
4998 achieve the requested number of rows. */
4999 if (bLarger && idealWrap > 1)
5001 int resRows = (infoPtr->nNumButtons + (idealWrap-1)) / idealWrap;
5002 int moreRows = (infoPtr->nNumButtons + (idealWrap-2)) / (idealWrap-1);
5004 if (resRows < rows && moreRows > rows)
5007 TRACE("Changing idealWrap due to bLarger (now %d)\n", idealWrap);
5011 curColumn = curRow = 0;
5013 TRACE("Trying to wrap at %d (%d,%d,%d)\n", idealWrap,
5014 infoPtr->nNumButtons, hidden, rows);
5016 for (i = 0; i < infoPtr->nNumButtons; i++ )
5018 if (btnPtr[i].fsState & TBSTATE_HIDDEN)
5021 /* Step on, wrap if necessary or flag next to wrap */
5030 if (curColumn > (idealWrap-1)) {
5032 btnPtr[i].fsState |= TBSTATE_WRAP;
5036 TRACE("Result - %d rows\n", curRow + 1);
5038 /* recalculate toolbar */
5039 TOOLBAR_CalcToolbar (hwnd);
5041 /* Resize if necessary (Only if NORESIZE is set - odd, but basically
5042 if NORESIZE is NOT set, then the toolbar will always be resized to
5043 take up the whole window. With it set, sizing needs to be manual. */
5044 if (infoPtr->dwStyle & CCS_NORESIZE) {
5045 SetWindowPos(hwnd, NULL, 0, 0,
5046 infoPtr->rcBound.right - infoPtr->rcBound.left,
5047 infoPtr->rcBound.bottom - infoPtr->rcBound.top,
5051 /* repaint toolbar */
5052 InvalidateRect(hwnd, NULL, TRUE);
5055 /* return bounding rectangle */
5057 lprc->left = infoPtr->rcBound.left;
5058 lprc->right = infoPtr->rcBound.right;
5059 lprc->top = infoPtr->rcBound.top;
5060 lprc->bottom = infoPtr->rcBound.bottom;
5068 TOOLBAR_SetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
5070 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5071 TBUTTON_INFO *btnPtr;
5074 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam, FALSE);
5078 btnPtr = &infoPtr->buttons[nIndex];
5080 /* if hidden state has changed the invalidate entire window and recalc */
5081 if ((btnPtr->fsState & TBSTATE_HIDDEN) != (LOWORD(lParam) & TBSTATE_HIDDEN)) {
5082 btnPtr->fsState = LOWORD(lParam);
5083 TOOLBAR_CalcToolbar (hwnd);
5084 InvalidateRect(hwnd, 0, TRUE);
5088 /* process state changing if current state doesn't match new state */
5089 if(btnPtr->fsState != LOWORD(lParam))
5091 btnPtr->fsState = LOWORD(lParam);
5092 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5100 TOOLBAR_SetStyle (HWND hwnd, LPARAM lParam)
5102 SetWindowLongW(hwnd, GWL_STYLE, lParam);
5108 static inline LRESULT
5109 TOOLBAR_SetToolTips (HWND hwnd, WPARAM wParam, LPARAM lParam)
5111 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5113 TRACE("hwnd=%p, hwndTooltip=%p, lParam=0x%lx\n", hwnd, (HWND)wParam, lParam);
5115 infoPtr->hwndToolTip = (HWND)wParam;
5121 TOOLBAR_SetUnicodeFormat (HWND hwnd, WPARAM wParam)
5123 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5126 TRACE("%s hwnd=%p\n",
5127 ((BOOL)wParam) ? "TRUE" : "FALSE", hwnd);
5129 bTemp = infoPtr->bUnicode;
5130 infoPtr->bUnicode = (BOOL)wParam;
5137 TOOLBAR_GetColorScheme (HWND hwnd, LPCOLORSCHEME lParam)
5139 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5141 lParam->clrBtnHighlight = (infoPtr->clrBtnHighlight == CLR_DEFAULT) ?
5142 comctl32_color.clrBtnHighlight :
5143 infoPtr->clrBtnHighlight;
5144 lParam->clrBtnShadow = (infoPtr->clrBtnShadow == CLR_DEFAULT) ?
5145 comctl32_color.clrBtnShadow : infoPtr->clrBtnShadow;
5151 TOOLBAR_SetColorScheme (HWND hwnd, const COLORSCHEME *lParam)
5153 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5155 TRACE("new colors Hl=%x Shd=%x, old colors Hl=%x Shd=%x\n",
5156 lParam->clrBtnHighlight, lParam->clrBtnShadow,
5157 infoPtr->clrBtnHighlight, infoPtr->clrBtnShadow);
5159 infoPtr->clrBtnHighlight = lParam->clrBtnHighlight;
5160 infoPtr->clrBtnShadow = lParam->clrBtnShadow;
5161 InvalidateRect(hwnd, NULL, TRUE);
5167 TOOLBAR_SetVersion (HWND hwnd, INT iVersion)
5169 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5170 INT iOldVersion = infoPtr->iVersion;
5172 infoPtr->iVersion = iVersion;
5174 if (infoPtr->iVersion >= 5)
5175 TOOLBAR_SetUnicodeFormat(hwnd, TRUE);
5182 TOOLBAR_GetStringA (HWND hwnd, WPARAM wParam, LPARAM lParam)
5184 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5185 WORD iString = HIWORD(wParam);
5186 WORD buffersize = LOWORD(wParam);
5187 LPSTR str = (LPSTR)lParam;
5190 TRACE("hwnd=%p, iString=%d, buffersize=%d, string=%p\n", hwnd, iString, buffersize, str);
5192 if (iString < infoPtr->nNumStrings)
5194 ret = WideCharToMultiByte(CP_ACP, 0, infoPtr->strings[iString], -1, str, buffersize, NULL, NULL);
5197 TRACE("returning %s\n", debugstr_a(str));
5200 WARN("String index %d out of range (largest is %d)\n", iString, infoPtr->nNumStrings - 1);
5207 TOOLBAR_GetStringW (HWND hwnd, WPARAM wParam, LPARAM lParam)
5209 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5210 WORD iString = HIWORD(wParam);
5211 WORD len = LOWORD(wParam)/sizeof(WCHAR) - 1;
5212 LPWSTR str = (LPWSTR)lParam;
5215 TRACE("hwnd=%p, iString=%d, buffersize=%d, string=%p\n", hwnd, iString, LOWORD(wParam), str);
5217 if (iString < infoPtr->nNumStrings)
5219 len = min(len, strlenW(infoPtr->strings[iString]));
5220 ret = (len+1)*sizeof(WCHAR);
5223 memcpy(str, infoPtr->strings[iString], ret);
5228 TRACE("returning %s\n", debugstr_w(str));
5231 WARN("String index %d out of range (largest is %d)\n", iString, infoPtr->nNumStrings - 1);
5236 /* UNDOCUMENTED MESSAGE: This appears to set some kind of size. Perhaps it
5237 * is the maximum size of the toolbar? */
5238 static LRESULT TOOLBAR_Unkwn45D(HWND hwnd, WPARAM wParam, LPARAM lParam)
5240 SIZE * pSize = (SIZE*)lParam;
5241 FIXME("hwnd=%p, wParam=0x%08lx, size.cx=%d, size.cy=%d stub!\n", hwnd, wParam, pSize->cx, pSize->cy);
5246 /* This is an extended version of the TB_SETHOTITEM message. It allows the
5247 * caller to specify a reason why the hot item changed (rather than just the
5248 * HICF_OTHER that TB_SETHOTITEM sends). */
5250 TOOLBAR_SetHotItem2 (HWND hwnd, WPARAM wParam, LPARAM lParam)
5252 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5253 INT nOldHotItem = infoPtr->nHotItem;
5255 TRACE("old item=%d, new item=%d, flags=%08x\n",
5256 nOldHotItem, infoPtr->nHotItem, (DWORD)lParam);
5258 if ((INT) wParam < 0 || (INT)wParam > infoPtr->nNumButtons)
5261 /* NOTE: an application can still remove the hot item even if anchor
5262 * highlighting is enabled */
5264 TOOLBAR_SetHotItemEx(infoPtr, wParam, lParam);
5268 return (nOldHotItem < 0) ? -1 : (LRESULT)nOldHotItem;
5271 /* Sets the toolbar global iListGap parameter which controls the amount of
5272 * spacing between the image and the text of buttons for TBSTYLE_LIST
5274 static LRESULT TOOLBAR_SetListGap(HWND hwnd, WPARAM wParam)
5276 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5278 TRACE("hwnd=%p iListGap=%ld\n", hwnd, wParam);
5280 infoPtr->iListGap = (INT)wParam;
5282 InvalidateRect(hwnd, NULL, TRUE);
5287 /* Returns the number of maximum number of image lists associated with the
5288 * various states. */
5289 static LRESULT TOOLBAR_GetImageListCount(HWND hwnd, WPARAM wParam, LPARAM lParam)
5291 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
5293 TRACE("hwnd=%p wParam %08lx lParam %08lx\n", hwnd, wParam, lParam);
5295 return max(infoPtr->cimlDef, max(infoPtr->cimlHot, infoPtr->cimlDis));
5299 TOOLBAR_GetIdealSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
5301 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5302 LPSIZE lpsize = (LPSIZE)lParam;
5308 * Testing shows the following:
5309 * wParam = 0 adjust cx value
5310 * = 1 set cy value to max size.
5311 * lParam pointer to SIZE structure
5314 TRACE("wParam %ld, lParam 0x%08lx -> 0x%08x 0x%08x\n",
5315 wParam, lParam, lpsize->cx, lpsize->cy);
5319 if (lpsize->cx == -1) {
5320 /* **** this is wrong, native measures each button and sets it */
5321 lpsize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
5323 else if(HIWORD(lpsize->cx)) {
5325 HWND hwndParent = GetParent(hwnd);
5327 GetWindowRect(hwnd, &rc);
5328 MapWindowPoints(0, hwndParent, (LPPOINT)&rc, 2);
5329 TRACE("mapped to (%s)\n", wine_dbgstr_rect(&rc));
5330 lpsize->cx = max(rc.right-rc.left,
5331 infoPtr->rcBound.right - infoPtr->rcBound.left);
5334 lpsize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
5338 lpsize->cy = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
5341 FIXME("Unknown wParam %ld\n", wParam);
5344 TRACE("set to -> 0x%08x 0x%08x\n",
5345 lpsize->cx, lpsize->cy);
5349 static LRESULT TOOLBAR_Unkwn464(HWND hwnd, WPARAM wParam, LPARAM lParam)
5351 FIXME("hwnd=%p wParam %08lx lParam %08lx\n", hwnd, wParam, lParam);
5353 InvalidateRect(hwnd, NULL, TRUE);
5359 TOOLBAR_Create (HWND hwnd, LPARAM lParam)
5361 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5362 DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
5365 TRACE("hwnd = %p\n", hwnd);
5367 /* initialize info structure */
5368 infoPtr->nButtonWidth = 23;
5369 infoPtr->nButtonHeight = 22;
5370 infoPtr->nBitmapHeight = 16;
5371 infoPtr->nBitmapWidth = 16;
5373 infoPtr->nMaxTextRows = 1;
5374 infoPtr->cxMin = -1;
5375 infoPtr->cxMax = -1;
5376 infoPtr->nNumBitmaps = 0;
5377 infoPtr->nNumStrings = 0;
5379 infoPtr->bCaptured = FALSE;
5380 infoPtr->nButtonDown = -1;
5381 infoPtr->nButtonDrag = -1;
5382 infoPtr->nOldHit = -1;
5383 infoPtr->nHotItem = -1;
5384 infoPtr->hwndNotify = ((LPCREATESTRUCTW)lParam)->hwndParent;
5385 infoPtr->dwDTFlags = (dwStyle & TBSTYLE_LIST) ? DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS: DT_CENTER | DT_END_ELLIPSIS;
5386 infoPtr->bAnchor = FALSE; /* no anchor highlighting */
5387 infoPtr->bDragOutSent = FALSE;
5388 infoPtr->iVersion = 0;
5389 infoPtr->hwndSelf = hwnd;
5390 infoPtr->bDoRedraw = TRUE;
5391 infoPtr->clrBtnHighlight = CLR_DEFAULT;
5392 infoPtr->clrBtnShadow = CLR_DEFAULT;
5393 infoPtr->szPadding.cx = DEFPAD_CX;
5394 infoPtr->szPadding.cy = DEFPAD_CY;
5395 infoPtr->iListGap = DEFLISTGAP;
5396 infoPtr->iTopMargin = default_top_margin(infoPtr);
5397 infoPtr->dwStyle = dwStyle;
5398 infoPtr->tbim.iButton = -1;
5399 GetClientRect(hwnd, &infoPtr->client_rect);
5400 infoPtr->bUnicode = infoPtr->hwndNotify &&
5401 (NFR_UNICODE == SendMessageW(hwnd, WM_NOTIFYFORMAT, (WPARAM)hwnd, (LPARAM)NF_REQUERY));
5402 infoPtr->hwndToolTip = NULL; /* if needed the tooltip control will be created after a WM_MOUSEMOVE */
5404 SystemParametersInfoW (SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
5405 infoPtr->hFont = infoPtr->hDefaultFont = CreateFontIndirectW (&logFont);
5407 OpenThemeData (hwnd, themeClass);
5409 TOOLBAR_CheckStyle (hwnd, dwStyle);
5416 TOOLBAR_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
5418 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5420 /* delete tooltip control */
5421 if (infoPtr->hwndToolTip)
5422 DestroyWindow (infoPtr->hwndToolTip);
5424 /* delete temporary buffer for tooltip text */
5425 Free (infoPtr->pszTooltipText);
5426 Free (infoPtr->bitmaps); /* bitmaps list */
5428 /* delete button data */
5429 Free (infoPtr->buttons);
5431 /* delete strings */
5432 if (infoPtr->strings) {
5434 for (i = 0; i < infoPtr->nNumStrings; i++)
5435 Free (infoPtr->strings[i]);
5437 Free (infoPtr->strings);
5440 /* destroy internal image list */
5441 if (infoPtr->himlInt)
5442 ImageList_Destroy (infoPtr->himlInt);
5444 TOOLBAR_DeleteImageList(&infoPtr->himlDef, &infoPtr->cimlDef);
5445 TOOLBAR_DeleteImageList(&infoPtr->himlDis, &infoPtr->cimlDis);
5446 TOOLBAR_DeleteImageList(&infoPtr->himlHot, &infoPtr->cimlHot);
5448 /* delete default font */
5449 DeleteObject (infoPtr->hDefaultFont);
5451 CloseThemeData (GetWindowTheme (hwnd));
5453 /* free toolbar info data */
5455 SetWindowLongPtrW (hwnd, 0, 0);
5462 TOOLBAR_EraseBackground (HWND hwnd, WPARAM wParam, LPARAM lParam)
5464 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5465 NMTBCUSTOMDRAW tbcd;
5468 HTHEME theme = GetWindowTheme (hwnd);
5469 DWORD dwEraseCustDraw = 0;
5471 /* the app has told us not to redraw the toolbar */
5472 if (!infoPtr->bDoRedraw)
5475 if (infoPtr->dwStyle & TBSTYLE_CUSTOMERASE) {
5476 ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
5477 tbcd.nmcd.dwDrawStage = CDDS_PREERASE;
5478 tbcd.nmcd.hdc = (HDC)wParam;
5479 ntfret = TOOLBAR_SendNotify (&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
5480 dwEraseCustDraw = ntfret & 0xffff;
5482 /* FIXME: in general the return flags *can* be or'ed together */
5483 switch (dwEraseCustDraw)
5485 case CDRF_DODEFAULT:
5487 case CDRF_SKIPDEFAULT:
5490 FIXME("[%p] response %d not handled to NM_CUSTOMDRAW (CDDS_PREERASE)\n",
5495 /* If the toolbar is "transparent" then pass the WM_ERASEBKGND up
5496 * to my parent for processing.
5498 if (theme || (infoPtr->dwStyle & TBSTYLE_TRANSPARENT)) {
5500 HDC hdc = (HDC)wParam;
5505 parent = GetParent(hwnd);
5506 MapWindowPoints(hwnd, parent, &pt, 1);
5507 OffsetWindowOrgEx (hdc, pt.x, pt.y, &ptorig);
5508 ret = SendMessageW (parent, WM_ERASEBKGND, wParam, lParam);
5509 SetWindowOrgEx (hdc, ptorig.x, ptorig.y, 0);
5512 ret = DefWindowProcW (hwnd, WM_ERASEBKGND, wParam, lParam);
5514 if (dwEraseCustDraw & CDRF_NOTIFYPOSTERASE) {
5515 ZeroMemory (&tbcd, sizeof(NMTBCUSTOMDRAW));
5516 tbcd.nmcd.dwDrawStage = CDDS_POSTERASE;
5517 tbcd.nmcd.hdc = (HDC)wParam;
5518 ntfret = TOOLBAR_SendNotify (&tbcd.nmcd.hdr, infoPtr, NM_CUSTOMDRAW);
5519 dwEraseCustDraw = ntfret & 0xffff;
5520 switch (dwEraseCustDraw)
5522 case CDRF_DODEFAULT:
5524 case CDRF_SKIPDEFAULT:
5527 FIXME("[%p] response %d not handled to NM_CUSTOMDRAW (CDDS_POSTERASE)\n",
5536 TOOLBAR_GetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
5538 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5540 return (LRESULT)infoPtr->hFont;
5545 TOOLBAR_SetRelativeHotItem(TOOLBAR_INFO *infoPtr, INT iDirection, DWORD dwReason)
5548 INT nNewHotItem = infoPtr->nHotItem;
5550 for (i = 0; i < infoPtr->nNumButtons; i++)
5553 if ((nNewHotItem + iDirection < 0) ||
5554 (nNewHotItem + iDirection >= infoPtr->nNumButtons))
5556 NMTBWRAPHOTITEM nmtbwhi;
5557 nmtbwhi.idNew = infoPtr->buttons[nNewHotItem].idCommand;
5558 nmtbwhi.iDirection = iDirection;
5559 nmtbwhi.dwReason = dwReason;
5561 if (TOOLBAR_SendNotify(&nmtbwhi.hdr, infoPtr, TBN_WRAPHOTITEM))
5565 nNewHotItem += iDirection;
5566 nNewHotItem = (nNewHotItem + infoPtr->nNumButtons) % infoPtr->nNumButtons;
5568 if ((infoPtr->buttons[nNewHotItem].fsState & TBSTATE_ENABLED) &&
5569 !(infoPtr->buttons[nNewHotItem].fsStyle & BTNS_SEP))
5571 TOOLBAR_SetHotItemEx(infoPtr, nNewHotItem, dwReason);
5578 TOOLBAR_KeyDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
5580 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5583 nmkey.nVKey = (UINT)wParam;
5584 nmkey.uFlags = HIWORD(lParam);
5586 if (TOOLBAR_SendNotify(&nmkey.hdr, infoPtr, NM_KEYDOWN))
5587 return DefWindowProcW(hwnd, WM_KEYDOWN, wParam, lParam);
5589 switch ((UINT)wParam)
5593 TOOLBAR_SetRelativeHotItem(infoPtr, -1, HICF_ARROWKEYS);
5597 TOOLBAR_SetRelativeHotItem(infoPtr, 1, HICF_ARROWKEYS);
5601 if ((infoPtr->nHotItem >= 0) &&
5602 (infoPtr->buttons[infoPtr->nHotItem].fsState & TBSTATE_ENABLED))
5604 SendMessageW (infoPtr->hwndNotify, WM_COMMAND,
5605 MAKEWPARAM(infoPtr->buttons[infoPtr->nHotItem].idCommand, BN_CLICKED),
5616 TOOLBAR_LButtonDblClk (HWND hwnd, WPARAM wParam, LPARAM lParam)
5621 pt.x = (short)LOWORD(lParam);
5622 pt.y = (short)HIWORD(lParam);
5623 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
5626 TOOLBAR_LButtonDown (hwnd, wParam, lParam);
5627 else if (GetWindowLongW (hwnd, GWL_STYLE) & CCS_ADJUSTABLE)
5628 TOOLBAR_Customize (hwnd);
5635 TOOLBAR_LButtonDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
5637 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5638 TBUTTON_INFO *btnPtr;
5643 BOOL bDragKeyPressed;
5647 if (infoPtr->dwStyle & TBSTYLE_ALTDRAG)
5648 bDragKeyPressed = (GetKeyState(VK_MENU) < 0);
5650 bDragKeyPressed = (wParam & MK_SHIFT);
5652 if (infoPtr->hwndToolTip)
5653 TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
5654 WM_LBUTTONDOWN, wParam, lParam);
5656 pt.x = (short)LOWORD(lParam);
5657 pt.y = (short)HIWORD(lParam);
5658 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
5660 btnPtr = &infoPtr->buttons[nHit];
5662 if ((nHit >= 0) && bDragKeyPressed && (infoPtr->dwStyle & CCS_ADJUSTABLE))
5664 infoPtr->nButtonDrag = nHit;
5667 /* If drag cursor has not been loaded, load it.
5668 * Note: it doesn't need to be freed */
5670 hCursorDrag = LoadCursorW(COMCTL32_hModule, (LPCWSTR)IDC_MOVEBUTTON);
5671 SetCursor(hCursorDrag);
5676 infoPtr->nOldHit = nHit;
5678 CopyRect(&arrowRect, &btnPtr->rect);
5679 arrowRect.left = max(btnPtr->rect.left, btnPtr->rect.right - DDARROW_WIDTH);
5681 /* for EX_DRAWDDARROWS style, click must be in the drop-down arrow rect */
5682 if ((btnPtr->fsState & TBSTATE_ENABLED) &&
5683 ((btnPtr->fsStyle & BTNS_WHOLEDROPDOWN) ||
5684 ((btnPtr->fsStyle & BTNS_DROPDOWN) &&
5685 ((TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle) && PtInRect(&arrowRect, pt)) ||
5686 (!TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle))))))
5690 /* draw in pressed state */
5691 if (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN)
5692 btnPtr->fsState |= TBSTATE_PRESSED;
5694 btnPtr->bDropDownPressed = TRUE;
5695 RedrawWindow(hwnd,&btnPtr->rect,0,
5696 RDW_ERASE|RDW_INVALIDATE|RDW_UPDATENOW);
5698 memset(&nmtb, 0, sizeof(nmtb));
5699 nmtb.iItem = btnPtr->idCommand;
5700 nmtb.rcButton = btnPtr->rect;
5701 res = TOOLBAR_SendNotify ((NMHDR *) &nmtb, infoPtr,
5703 TRACE("TBN_DROPDOWN responded with %ld\n", res);
5705 if (res != TBDDRET_TREATPRESSED)
5709 /* redraw button in unpressed state */
5710 if (btnPtr->fsStyle & BTNS_WHOLEDROPDOWN)
5711 btnPtr->fsState &= ~TBSTATE_PRESSED;
5713 btnPtr->bDropDownPressed = FALSE;
5714 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5716 /* find and set hot item
5717 * NOTE: native doesn't do this, but that is a bug */
5719 ScreenToClient(hwnd, &pt);
5720 nHit = TOOLBAR_InternalHitTest(hwnd, &pt);
5721 if (!infoPtr->bAnchor || (nHit >= 0))
5722 TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5724 /* remove any left mouse button down or double-click messages
5725 * so that we can get a toggle effect on the button */
5726 while (PeekMessageW(&msg, hwnd, WM_LBUTTONDOWN, WM_LBUTTONDOWN, PM_REMOVE) ||
5727 PeekMessageW(&msg, hwnd, WM_LBUTTONDBLCLK, WM_LBUTTONDBLCLK, PM_REMOVE))
5732 /* otherwise drop through and process as pushed */
5734 infoPtr->bCaptured = TRUE;
5735 infoPtr->nButtonDown = nHit;
5736 infoPtr->bDragOutSent = FALSE;
5738 btnPtr->fsState |= TBSTATE_PRESSED;
5740 TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5742 if (btnPtr->fsState & TBSTATE_ENABLED)
5743 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
5750 memset(&nmtb, 0, sizeof(nmtb));
5751 nmtb.iItem = btnPtr->idCommand;
5752 TOOLBAR_SendNotify((NMHDR *)&nmtb, infoPtr, TBN_BEGINDRAG);
5755 nmmouse.dwHitInfo = nHit;
5757 /* !!! Undocumented - sends NM_LDOWN with the NMMOUSE structure. */
5759 nmmouse.dwItemSpec = -1;
5762 nmmouse.dwItemSpec = infoPtr->buttons[nmmouse.dwHitInfo].idCommand;
5763 nmmouse.dwItemData = infoPtr->buttons[nmmouse.dwHitInfo].dwData;
5766 ClientToScreen(hwnd, &pt);
5769 if (!TOOLBAR_SendNotify(&nmmouse.hdr, infoPtr, NM_LDOWN))
5770 return DefWindowProcW(hwnd, WM_LBUTTONDOWN, wParam, lParam);
5776 TOOLBAR_LButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
5778 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5779 TBUTTON_INFO *btnPtr;
5787 if (infoPtr->hwndToolTip)
5788 TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
5789 WM_LBUTTONUP, wParam, lParam);
5791 pt.x = (short)LOWORD(lParam);
5792 pt.y = (short)HIWORD(lParam);
5793 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
5795 if (!infoPtr->bAnchor || (nHit >= 0))
5796 TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5798 if (infoPtr->nButtonDrag >= 0) {
5802 btnPtr = &infoPtr->buttons[infoPtr->nButtonDrag];
5805 SetCursor(LoadCursorW(NULL, (LPCWSTR)IDC_ARROW));
5807 GetClientRect(hwnd, &rcClient);
5808 if (PtInRect(&rcClient, pt))
5815 else if ((nHit == -1) && PtInRect(&infoPtr->buttons[-nHit].rect, pt))
5818 if (nButton == infoPtr->nButtonDrag)
5820 /* if the button is moved sightly left and we have a
5821 * separator there then remove it */
5822 if (pt.x < (btnPtr->rect.left + (btnPtr->rect.right - btnPtr->rect.left)/2))
5824 if ((nButton > 0) && (infoPtr->buttons[nButton-1].fsStyle & BTNS_SEP))
5825 TOOLBAR_DeleteButton(hwnd, nButton - 1);
5827 else /* else insert a separator before the dragged button */
5830 memset(&tbb, 0, sizeof(tbb));
5831 tbb.fsStyle = BTNS_SEP;
5833 TOOLBAR_InsertButtonT(hwnd, nButton, (LPARAM)&tbb, TRUE);
5840 if ((infoPtr->nNumButtons > 0) && (pt.x < infoPtr->buttons[0].rect.left))
5841 TOOLBAR_MoveButton(hwnd, infoPtr->nButtonDrag, 0);
5843 TOOLBAR_MoveButton(hwnd, infoPtr->nButtonDrag, infoPtr->nNumButtons);
5846 TOOLBAR_MoveButton(hwnd, infoPtr->nButtonDrag, nButton);
5851 TRACE("button %d dragged out of toolbar\n", infoPtr->nButtonDrag);
5852 TOOLBAR_DeleteButton(hwnd, (WPARAM)infoPtr->nButtonDrag);
5855 /* button under cursor changed so need to re-set hot item */
5856 TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE | HICF_LMOUSE);
5857 infoPtr->nButtonDrag = -1;
5859 TOOLBAR_SendNotify(&hdr, infoPtr, TBN_TOOLBARCHANGE);
5861 else if (infoPtr->nButtonDown >= 0) {
5862 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
5863 btnPtr->fsState &= ~TBSTATE_PRESSED;
5865 if (btnPtr->fsStyle & BTNS_CHECK) {
5866 if (btnPtr->fsStyle & BTNS_GROUP) {
5867 nOldIndex = TOOLBAR_GetCheckedGroupButtonIndex (infoPtr,
5869 if ((nOldIndex != nHit) &&
5871 infoPtr->buttons[nOldIndex].fsState &= ~TBSTATE_CHECKED;
5872 btnPtr->fsState |= TBSTATE_CHECKED;
5875 if (btnPtr->fsState & TBSTATE_CHECKED)
5876 btnPtr->fsState &= ~TBSTATE_CHECKED;
5878 btnPtr->fsState |= TBSTATE_CHECKED;
5882 if (nOldIndex != -1)
5883 InvalidateRect(hwnd, &infoPtr->buttons[nOldIndex].rect, TRUE);
5886 * now we can ReleaseCapture, which triggers CAPTURECHANGED msg,
5887 * that resets bCaptured and btn TBSTATE_PRESSED flags,
5888 * and obliterates nButtonDown and nOldHit (see TOOLBAR_CaptureChanged)
5890 if ((infoPtr->bCaptured) && (infoPtr->nButtonDown >= 0))
5892 infoPtr->nButtonDown = -1;
5894 /* Issue NM_RELEASEDCAPTURE to parent to let him know it is released */
5895 TOOLBAR_SendNotify (&hdr, infoPtr,
5896 NM_RELEASEDCAPTURE);
5898 /* native issues TBN_ENDDRAG here, if _LBUTTONDOWN issued the
5901 memset(&nmtb, 0, sizeof(nmtb));
5902 nmtb.iItem = btnPtr->idCommand;
5903 TOOLBAR_SendNotify ((NMHDR *) &nmtb, infoPtr,
5906 if (btnPtr->fsState & TBSTATE_ENABLED)
5908 SendMessageW (infoPtr->hwndNotify, WM_COMMAND,
5909 MAKEWPARAM(infoPtr->buttons[nHit].idCommand, BN_CLICKED), (LPARAM)hwnd);
5911 /* In case we have just been destroyed... */
5917 /* !!! Undocumented - toolbar at 4.71 level and above sends
5918 * NM_CLICK with the NMMOUSE structure. */
5919 nmmouse.dwHitInfo = nHit;
5922 nmmouse.dwItemSpec = -1;
5925 nmmouse.dwItemSpec = infoPtr->buttons[nmmouse.dwHitInfo].idCommand;
5926 nmmouse.dwItemData = infoPtr->buttons[nmmouse.dwHitInfo].dwData;
5929 ClientToScreen(hwnd, &pt);
5932 if (!TOOLBAR_SendNotify((LPNMHDR)&nmmouse, infoPtr, NM_CLICK))
5933 return DefWindowProcW(hwnd, WM_LBUTTONUP, wParam, lParam);
5939 TOOLBAR_RButtonUp( HWND hwnd, WPARAM wParam, LPARAM lParam)
5941 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5946 pt.x = (short)LOWORD(lParam);
5947 pt.y = (short)HIWORD(lParam);
5949 nHit = TOOLBAR_InternalHitTest(hwnd, &pt);
5950 nmmouse.dwHitInfo = nHit;
5953 nmmouse.dwItemSpec = -1;
5955 nmmouse.dwItemSpec = infoPtr->buttons[nmmouse.dwHitInfo].idCommand;
5956 nmmouse.dwItemData = infoPtr->buttons[nmmouse.dwHitInfo].dwData;
5959 ClientToScreen(hwnd, &pt);
5962 if (!TOOLBAR_SendNotify((LPNMHDR)&nmmouse, infoPtr, NM_RCLICK))
5963 return DefWindowProcW(hwnd, WM_RBUTTONUP, wParam, lParam);
5969 TOOLBAR_RButtonDblClk( HWND hwnd, WPARAM wParam, LPARAM lParam)
5971 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5974 if (!TOOLBAR_SendNotify(&nmhdr, infoPtr, NM_RDBLCLK))
5975 return DefWindowProcW(hwnd, WM_RBUTTONDBLCLK, wParam, lParam);
5981 TOOLBAR_CaptureChanged(HWND hwnd)
5983 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
5984 TBUTTON_INFO *btnPtr;
5986 infoPtr->bCaptured = FALSE;
5988 if (infoPtr->nButtonDown >= 0)
5990 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
5991 btnPtr->fsState &= ~TBSTATE_PRESSED;
5993 infoPtr->nOldHit = -1;
5995 if (btnPtr->fsState & TBSTATE_ENABLED)
5996 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6002 TOOLBAR_MouseLeave (HWND hwnd, WPARAM wParam, LPARAM lParam)
6004 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6006 /* don't remove hot effects when in anchor highlighting mode or when a
6007 * drop-down button is pressed */
6008 if (infoPtr->nHotItem >= 0 && !infoPtr->bAnchor)
6010 TBUTTON_INFO *hotBtnPtr = &infoPtr->buttons[infoPtr->nHotItem];
6011 if (!hotBtnPtr->bDropDownPressed)
6012 TOOLBAR_SetHotItemEx(infoPtr, TOOLBAR_NOWHERE, HICF_MOUSE);
6015 if (infoPtr->nOldHit < 0)
6018 /* If the last button we were over is depressed then make it not */
6019 /* depressed and redraw it */
6020 if(infoPtr->nOldHit == infoPtr->nButtonDown)
6022 TBUTTON_INFO *btnPtr;
6025 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
6027 btnPtr->fsState &= ~TBSTATE_PRESSED;
6030 InflateRect (&rc1, 1, 1);
6031 InvalidateRect (hwnd, &rc1, TRUE);
6034 if (infoPtr->bCaptured && !infoPtr->bDragOutSent)
6037 ZeroMemory(&nmt, sizeof(nmt));
6038 nmt.iItem = infoPtr->buttons[infoPtr->nButtonDown].idCommand;
6039 TOOLBAR_SendNotify(&nmt.hdr, infoPtr, TBN_DRAGOUT);
6040 infoPtr->bDragOutSent = TRUE;
6043 infoPtr->nOldHit = -1; /* reset the old hit index as we've left the toolbar */
6049 TOOLBAR_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
6051 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6053 TRACKMOUSEEVENT trackinfo;
6055 TBUTTON_INFO *btnPtr;
6057 if ((infoPtr->dwStyle & TBSTYLE_TOOLTIPS) && (infoPtr->hwndToolTip == NULL))
6058 TOOLBAR_TooltipCreateControl(infoPtr);
6060 if ((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf)) {
6061 /* fill in the TRACKMOUSEEVENT struct */
6062 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
6063 trackinfo.dwFlags = TME_QUERY;
6065 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
6066 _TrackMouseEvent(&trackinfo);
6068 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
6069 if(trackinfo.hwndTrack != hwnd || !(trackinfo.dwFlags & TME_LEAVE)) {
6070 trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
6071 trackinfo.hwndTrack = hwnd;
6073 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
6074 /* and can properly deactivate the hot toolbar button */
6075 _TrackMouseEvent(&trackinfo);
6079 if (infoPtr->hwndToolTip)
6080 TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
6081 WM_MOUSEMOVE, wParam, lParam);
6083 pt.x = (short)LOWORD(lParam);
6084 pt.y = (short)HIWORD(lParam);
6086 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
6088 if (((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf))
6089 && (!infoPtr->bAnchor || (nHit >= 0)))
6090 TOOLBAR_SetHotItemEx(infoPtr, nHit, HICF_MOUSE);
6092 if (infoPtr->nOldHit != nHit)
6094 if (infoPtr->bCaptured)
6096 if (!infoPtr->bDragOutSent)
6099 ZeroMemory(&nmt, sizeof(nmt));
6100 nmt.iItem = infoPtr->buttons[infoPtr->nButtonDown].idCommand;
6101 TOOLBAR_SendNotify(&nmt.hdr, infoPtr, TBN_DRAGOUT);
6102 infoPtr->bDragOutSent = TRUE;
6105 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
6106 if (infoPtr->nOldHit == infoPtr->nButtonDown) {
6107 btnPtr->fsState &= ~TBSTATE_PRESSED;
6108 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6110 else if (nHit == infoPtr->nButtonDown) {
6111 btnPtr->fsState |= TBSTATE_PRESSED;
6112 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6114 infoPtr->nOldHit = nHit;
6122 static inline LRESULT
6123 TOOLBAR_NCActivate (HWND hwnd, WPARAM wParam, LPARAM lParam)
6125 /* if (wndPtr->dwStyle & CCS_NODIVIDER) */
6126 return DefWindowProcW (hwnd, WM_NCACTIVATE, wParam, lParam);
6128 /* return TOOLBAR_NCPaint (wndPtr, wParam, lParam); */
6132 static inline LRESULT
6133 TOOLBAR_NCCalcSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
6135 if (!(GetWindowLongW(hwnd, GWL_STYLE) & CCS_NODIVIDER))
6136 ((LPRECT)lParam)->top += GetSystemMetrics(SM_CYEDGE);
6138 return DefWindowProcW (hwnd, WM_NCCALCSIZE, wParam, lParam);
6143 TOOLBAR_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
6145 TOOLBAR_INFO *infoPtr;
6146 LPCREATESTRUCTA cs = (LPCREATESTRUCTA)lParam;
6149 /* allocate memory for info structure */
6150 infoPtr = Alloc (sizeof(TOOLBAR_INFO));
6151 SetWindowLongPtrW (hwnd, 0, (LONG_PTR)infoPtr);
6154 infoPtr->dwStructSize = sizeof(TBBUTTON);
6156 infoPtr->nWidth = 0;
6158 /* fix instance handle, if the toolbar was created by CreateToolbarEx() */
6159 if (!GetWindowLongPtrW (hwnd, GWLP_HINSTANCE)) {
6160 HINSTANCE hInst = (HINSTANCE)GetWindowLongPtrW (GetParent (hwnd), GWLP_HINSTANCE);
6161 SetWindowLongPtrW (hwnd, GWLP_HINSTANCE, (LONG_PTR)hInst);
6164 /* native control does:
6165 * Get a lot of colors and brushes
6167 * SystemParametersInfoW(0x1f, 0x3c, adr1, 0)
6168 * CreateFontIndirectW(adr1)
6169 * CreateBitmap(0x27, 0x24, 1, 1, 0)
6170 * hdc = GetDC(toolbar)
6171 * GetSystemMetrics(0x48)
6172 * fnt2=CreateFontW(0xe, 0, 0, 0, 0x190, 0, 0, 0, 0, 2,
6173 * 0, 0, 0, 0, "MARLETT")
6174 * oldfnt = SelectObject(hdc, fnt2)
6175 * GetCharWidthW(hdc, 0x36, 0x36, adr2)
6176 * GetTextMetricsW(hdc, adr3)
6177 * SelectObject(hdc, oldfnt)
6178 * DeleteObject(fnt2)
6180 * InvalidateRect(toolbar, 0, 1)
6181 * SetWindowLongW(toolbar, 0, addr)
6182 * SetWindowLongW(toolbar, -16, xxx) **sometimes**
6185 * ie 1 0x56000a4c 0x46000a4c 0x56008a4d
6186 * ie 2 0x4600094c 0x4600094c 0x4600894d
6187 * ie 3 0x56000b4c 0x46000b4c 0x56008b4d
6188 * rebar 0x50008844 0x40008844 0x50008845
6189 * pager 0x50000844 0x40000844 0x50008845
6190 * IC35mgr 0x5400084e **nochange**
6191 * on entry to _NCCREATE 0x5400084e
6192 * rowlist 0x5400004e **nochange**
6193 * on entry to _NCCREATE 0x5400004e
6197 /* I think the code below is a bug, but it is the way that the native
6198 * controls seem to work. The effect is that if the user of TBSTYLE_FLAT
6199 * forgets to specify TBSTYLE_TRANSPARENT but does specify either
6200 * CCS_TOP or CCS_BOTTOM (_NOMOVEY and _TOP), then the control
6201 * does *not* set TBSTYLE_TRANSPARENT even though it should!!!!
6202 * Somehow, the only cases of this seem to be MFC programs.
6204 * Note also that the addition of _TRANSPARENT occurs *only* here. It
6205 * does not occur in the WM_STYLECHANGING routine.
6206 * (Guy Albertelli 9/2001)
6209 if (((infoPtr->dwStyle & TBSTYLE_FLAT) || GetWindowTheme (infoPtr->hwndSelf))
6210 && !(cs->style & TBSTYLE_TRANSPARENT))
6211 styleadd |= TBSTYLE_TRANSPARENT;
6212 if (!(cs->style & (CCS_TOP | CCS_NOMOVEY))) {
6213 styleadd |= CCS_TOP; /* default to top */
6214 SetWindowLongW (hwnd, GWL_STYLE, cs->style | styleadd);
6217 return DefWindowProcW (hwnd, WM_NCCREATE, wParam, lParam);
6222 TOOLBAR_NCPaint (HWND hwnd, WPARAM wParam, LPARAM lParam)
6224 DWORD dwStyle = GetWindowLongW(hwnd, GWL_STYLE);
6228 if (dwStyle & WS_MINIMIZE)
6229 return 0; /* Nothing to do */
6231 DefWindowProcW (hwnd, WM_NCPAINT, wParam, lParam);
6233 if (!(hdc = GetDCEx (hwnd, 0, DCX_USESTYLE | DCX_WINDOW)))
6236 if (!(dwStyle & CCS_NODIVIDER))
6238 GetWindowRect (hwnd, &rcWindow);
6239 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
6240 if( dwStyle & WS_BORDER )
6241 OffsetRect (&rcWindow, 1, 1);
6242 DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_TOP);
6245 ReleaseDC( hwnd, hdc );
6251 /* handles requests from the tooltip control on what text to display */
6252 static LRESULT TOOLBAR_TTGetDispInfo (TOOLBAR_INFO *infoPtr, NMTTDISPINFOW *lpnmtdi)
6254 int index = TOOLBAR_GetButtonIndex(infoPtr, lpnmtdi->hdr.idFrom, FALSE);
6256 TRACE("button index = %d\n", index);
6258 Free (infoPtr->pszTooltipText);
6259 infoPtr->pszTooltipText = NULL;
6264 if (infoPtr->bUnicode)
6266 WCHAR wszBuffer[INFOTIPSIZE+1];
6267 NMTBGETINFOTIPW tbgit;
6268 unsigned int len; /* in chars */
6270 wszBuffer[0] = '\0';
6271 wszBuffer[INFOTIPSIZE] = '\0';
6273 tbgit.pszText = wszBuffer;
6274 tbgit.cchTextMax = INFOTIPSIZE;
6275 tbgit.iItem = lpnmtdi->hdr.idFrom;
6276 tbgit.lParam = infoPtr->buttons[index].dwData;
6278 TOOLBAR_SendNotify(&tbgit.hdr, infoPtr, TBN_GETINFOTIPW);
6280 TRACE("TBN_GETINFOTIPW - got string %s\n", debugstr_w(tbgit.pszText));
6282 len = strlenW(tbgit.pszText);
6283 if (len > sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0])-1)
6285 /* need to allocate temporary buffer in infoPtr as there
6286 * isn't enough space in buffer passed to us by the
6287 * tooltip control */
6288 infoPtr->pszTooltipText = Alloc((len+1)*sizeof(WCHAR));
6289 if (infoPtr->pszTooltipText)
6291 memcpy(infoPtr->pszTooltipText, tbgit.pszText, (len+1)*sizeof(WCHAR));
6292 lpnmtdi->lpszText = infoPtr->pszTooltipText;
6298 memcpy(lpnmtdi->lpszText, tbgit.pszText, (len+1)*sizeof(WCHAR));
6304 CHAR szBuffer[INFOTIPSIZE+1];
6305 NMTBGETINFOTIPA tbgit;
6306 unsigned int len; /* in chars */
6309 szBuffer[INFOTIPSIZE] = '\0';
6311 tbgit.pszText = szBuffer;
6312 tbgit.cchTextMax = INFOTIPSIZE;
6313 tbgit.iItem = lpnmtdi->hdr.idFrom;
6314 tbgit.lParam = infoPtr->buttons[index].dwData;
6316 TOOLBAR_SendNotify(&tbgit.hdr, infoPtr, TBN_GETINFOTIPA);
6318 TRACE("TBN_GETINFOTIPA - got string %s\n", debugstr_a(tbgit.pszText));
6320 len = MultiByteToWideChar(CP_ACP, 0, tbgit.pszText, -1, NULL, 0);
6321 if (len > sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0]))
6323 /* need to allocate temporary buffer in infoPtr as there
6324 * isn't enough space in buffer passed to us by the
6325 * tooltip control */
6326 infoPtr->pszTooltipText = Alloc(len*sizeof(WCHAR));
6327 if (infoPtr->pszTooltipText)
6329 MultiByteToWideChar(CP_ACP, 0, tbgit.pszText, -1, infoPtr->pszTooltipText, len);
6330 lpnmtdi->lpszText = infoPtr->pszTooltipText;
6334 else if (tbgit.pszText[0])
6336 MultiByteToWideChar(CP_ACP, 0, tbgit.pszText, -1,
6337 lpnmtdi->lpszText, sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0]));
6342 /* if button has text, but it is not shown then automatically
6343 * use that text as tooltip */
6344 if ((infoPtr->dwExStyle & TBSTYLE_EX_MIXEDBUTTONS) &&
6345 !(infoPtr->buttons[index].fsStyle & BTNS_SHOWTEXT))
6347 LPWSTR pszText = TOOLBAR_GetText(infoPtr, &infoPtr->buttons[index]);
6348 unsigned int len = pszText ? strlenW(pszText) : 0;
6350 TRACE("using button hidden text %s\n", debugstr_w(pszText));
6352 if (len > sizeof(lpnmtdi->szText)/sizeof(lpnmtdi->szText[0])-1)
6354 /* need to allocate temporary buffer in infoPtr as there
6355 * isn't enough space in buffer passed to us by the
6356 * tooltip control */
6357 infoPtr->pszTooltipText = Alloc((len+1)*sizeof(WCHAR));
6358 if (infoPtr->pszTooltipText)
6360 memcpy(infoPtr->pszTooltipText, pszText, (len+1)*sizeof(WCHAR));
6361 lpnmtdi->lpszText = infoPtr->pszTooltipText;
6367 memcpy(lpnmtdi->lpszText, pszText, (len+1)*sizeof(WCHAR));
6372 TRACE("Sending tooltip notification to %p\n", infoPtr->hwndNotify);
6374 /* last resort: send notification on to app */
6375 /* FIXME: find out what is really used here */
6376 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, lpnmtdi->hdr.idFrom, (LPARAM)lpnmtdi);
6380 static inline LRESULT
6381 TOOLBAR_Notify (HWND hwnd, LPARAM lParam)
6383 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6384 LPNMHDR lpnmh = (LPNMHDR)lParam;
6386 switch (lpnmh->code)
6390 LPNMPGCALCSIZE lppgc = (LPNMPGCALCSIZE)lParam;
6392 if (lppgc->dwFlag == PGF_CALCWIDTH) {
6393 lppgc->iWidth = infoPtr->rcBound.right - infoPtr->rcBound.left;
6394 TRACE("processed PGN_CALCSIZE, returning horz size = %d\n",
6398 lppgc->iHeight = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
6399 TRACE("processed PGN_CALCSIZE, returning vert size = %d\n",
6407 LPNMPGSCROLL lppgs = (LPNMPGSCROLL)lParam;
6409 lppgs->iScroll = (lppgs->iDir & (PGF_SCROLLLEFT | PGF_SCROLLRIGHT)) ?
6410 infoPtr->nButtonWidth : infoPtr->nButtonHeight;
6411 TRACE("processed PGN_SCROLL, returning scroll=%d, dir=%d\n",
6412 lppgs->iScroll, lppgs->iDir);
6416 case TTN_GETDISPINFOW:
6417 return TOOLBAR_TTGetDispInfo(infoPtr, (LPNMTTDISPINFOW)lParam);
6419 case TTN_GETDISPINFOA:
6420 FIXME("TTN_GETDISPINFOA - should not be received; please report\n");
6430 TOOLBAR_NotifyFormat(const TOOLBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
6434 TRACE("wParam = 0x%lx, lParam = 0x%08lx\n", wParam, lParam);
6436 if (lParam == NF_QUERY)
6439 if (lParam == NF_REQUERY) {
6440 format = SendMessageW(infoPtr->hwndNotify,
6441 WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
6442 if ((format != NFR_ANSI) && (format != NFR_UNICODE)) {
6443 ERR("wrong response to WM_NOTIFYFORMAT (%ld), assuming ANSI\n",
6454 TOOLBAR_Paint (HWND hwnd, WPARAM wParam)
6456 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
6460 /* fill ps.rcPaint with a default rect */
6461 ps.rcPaint = infoPtr->rcBound;
6463 hdc = wParam==0 ? BeginPaint(hwnd, &ps) : (HDC)wParam;
6465 TRACE("psrect=(%s)\n", wine_dbgstr_rect(&ps.rcPaint));
6467 TOOLBAR_Refresh (hwnd, hdc, &ps);
6468 if (!wParam) EndPaint (hwnd, &ps);
6475 TOOLBAR_SetFocus (HWND hwnd, WPARAM wParam)
6477 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6479 TRACE("nHotItem = %d\n", infoPtr->nHotItem);
6481 /* make first item hot */
6482 if (infoPtr->nNumButtons > 0)
6483 TOOLBAR_SetHotItemEx(infoPtr, 0, HICF_OTHER);
6489 TOOLBAR_SetFont(HWND hwnd, WPARAM wParam, LPARAM lParam)
6491 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
6493 TRACE("font=%p redraw=%ld\n", (HFONT)wParam, lParam);
6496 infoPtr->hFont = infoPtr->hDefaultFont;
6498 infoPtr->hFont = (HFONT)wParam;
6500 TOOLBAR_CalcToolbar(hwnd);
6503 InvalidateRect(hwnd, NULL, TRUE);
6508 TOOLBAR_SetRedraw (HWND hwnd, WPARAM wParam, LPARAM lParam)
6509 /*****************************************************
6512 * Handles the WM_SETREDRAW message.
6515 * According to testing V4.71 of COMCTL32 returns the
6516 * *previous* status of the redraw flag (either 0 or 1)
6517 * instead of the MSDN documented value of 0 if handled.
6518 * (For laughs see the "consistency" with same function
6521 *****************************************************/
6523 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6524 BOOL oldredraw = infoPtr->bDoRedraw;
6526 TRACE("set to %s\n",
6527 (wParam) ? "TRUE" : "FALSE");
6528 infoPtr->bDoRedraw = (BOOL) wParam;
6530 InvalidateRect (infoPtr->hwndSelf, 0, TRUE);
6532 return (oldredraw) ? 1 : 0;
6537 TOOLBAR_Size (HWND hwnd, WPARAM wParam, LPARAM lParam)
6539 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6541 TRACE("sizing toolbar!\n");
6543 if (infoPtr->dwExStyle & TBSTYLE_EX_HIDECLIPPEDBUTTONS)
6545 RECT delta_width, delta_height, client, dummy;
6546 DWORD min_x, max_x, min_y, max_y;
6547 TBUTTON_INFO *btnPtr;
6550 GetClientRect(hwnd, &client);
6551 if(client.right > infoPtr->client_rect.right)
6553 min_x = infoPtr->client_rect.right;
6554 max_x = client.right;
6558 max_x = infoPtr->client_rect.right;
6559 min_x = client.right;
6561 if(client.bottom > infoPtr->client_rect.bottom)
6563 min_y = infoPtr->client_rect.bottom;
6564 max_y = client.bottom;
6568 max_y = infoPtr->client_rect.bottom;
6569 min_y = client.bottom;
6572 SetRect(&delta_width, min_x, 0, max_x, min_y);
6573 SetRect(&delta_height, 0, min_y, max_x, max_y);
6575 TRACE("delta_width %s delta_height %s\n", wine_dbgstr_rect(&delta_width), wine_dbgstr_rect(&delta_height));
6576 btnPtr = infoPtr->buttons;
6577 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++)
6578 if(IntersectRect(&dummy, &delta_width, &btnPtr->rect) ||
6579 IntersectRect(&dummy, &delta_height, &btnPtr->rect))
6580 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
6582 GetClientRect(hwnd, &infoPtr->client_rect);
6583 TOOLBAR_AutoSize(hwnd);
6589 TOOLBAR_StyleChanged (HWND hwnd, INT nType, const STYLESTRUCT *lpStyle)
6591 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6593 if (nType == GWL_STYLE)
6595 DWORD dwOldStyle = infoPtr->dwStyle;
6597 if (lpStyle->styleNew & TBSTYLE_LIST)
6598 infoPtr->dwDTFlags = DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS;
6600 infoPtr->dwDTFlags = DT_CENTER | DT_END_ELLIPSIS;
6602 TOOLBAR_CheckStyle (hwnd, lpStyle->styleNew);
6604 TRACE("new style 0x%08x\n", lpStyle->styleNew);
6606 infoPtr->dwStyle = lpStyle->styleNew;
6608 if ((dwOldStyle ^ lpStyle->styleNew) & (TBSTYLE_WRAPABLE | CCS_VERT))
6609 TOOLBAR_LayoutToolbar(hwnd);
6611 /* only resize if one of the CCS_* styles was changed */
6612 if ((dwOldStyle ^ lpStyle->styleNew) & COMMON_STYLES)
6614 TOOLBAR_AutoSize (hwnd);
6616 InvalidateRect(hwnd, NULL, TRUE);
6625 TOOLBAR_SysColorChange (HWND hwnd)
6627 COMCTL32_RefreshSysColors();
6633 /* update theme after a WM_THEMECHANGED message */
6634 static LRESULT theme_changed (HWND hwnd)
6636 HTHEME theme = GetWindowTheme (hwnd);
6637 CloseThemeData (theme);
6638 OpenThemeData (hwnd, themeClass);
6643 static LRESULT WINAPI
6644 ToolbarWindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
6646 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
6648 TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n",
6649 hwnd, uMsg, /* SPY_GetMsgName(uMsg), */ wParam, lParam);
6651 if (!infoPtr && (uMsg != WM_NCCREATE))
6652 return DefWindowProcW( hwnd, uMsg, wParam, lParam );
6657 return TOOLBAR_AddBitmap (hwnd, wParam, lParam);
6659 case TB_ADDBUTTONSA:
6660 return TOOLBAR_AddButtonsT(hwnd, wParam, lParam, FALSE);
6662 case TB_ADDBUTTONSW:
6663 return TOOLBAR_AddButtonsT(hwnd, wParam, lParam, TRUE);
6666 return TOOLBAR_AddStringA (hwnd, wParam, lParam);
6669 return TOOLBAR_AddStringW (hwnd, wParam, lParam);
6672 return TOOLBAR_AutoSize (hwnd);
6674 case TB_BUTTONCOUNT:
6675 return TOOLBAR_ButtonCount (hwnd);
6677 case TB_BUTTONSTRUCTSIZE:
6678 return TOOLBAR_ButtonStructSize (hwnd, wParam);
6680 case TB_CHANGEBITMAP:
6681 return TOOLBAR_ChangeBitmap (hwnd, wParam, lParam);
6683 case TB_CHECKBUTTON:
6684 return TOOLBAR_CheckButton (hwnd, wParam, lParam);
6686 case TB_COMMANDTOINDEX:
6687 return TOOLBAR_CommandToIndex (hwnd, wParam);
6690 return TOOLBAR_Customize (hwnd);
6692 case TB_DELETEBUTTON:
6693 return TOOLBAR_DeleteButton (hwnd, wParam);
6695 case TB_ENABLEBUTTON:
6696 return TOOLBAR_EnableButton (hwnd, wParam, lParam);
6698 case TB_GETANCHORHIGHLIGHT:
6699 return TOOLBAR_GetAnchorHighlight (hwnd);
6702 return TOOLBAR_GetBitmap (hwnd, wParam);
6704 case TB_GETBITMAPFLAGS:
6705 return TOOLBAR_GetBitmapFlags ();
6708 return TOOLBAR_GetButton (hwnd, wParam, lParam);
6710 case TB_GETBUTTONINFOA:
6711 return TOOLBAR_GetButtonInfoT(hwnd, wParam, lParam, FALSE);
6713 case TB_GETBUTTONINFOW:
6714 return TOOLBAR_GetButtonInfoT(hwnd, wParam, lParam, TRUE);
6716 case TB_GETBUTTONSIZE:
6717 return TOOLBAR_GetButtonSize (hwnd);
6719 case TB_GETBUTTONTEXTA:
6720 return TOOLBAR_GetButtonTextA (hwnd, wParam, lParam);
6722 case TB_GETBUTTONTEXTW:
6723 return TOOLBAR_GetButtonTextW (hwnd, wParam, lParam);
6725 case TB_GETDISABLEDIMAGELIST:
6726 return TOOLBAR_GetDisabledImageList (hwnd, wParam, lParam);
6728 case TB_GETEXTENDEDSTYLE:
6729 return TOOLBAR_GetExtendedStyle (hwnd);
6731 case TB_GETHOTIMAGELIST:
6732 return TOOLBAR_GetHotImageList (hwnd, wParam, lParam);
6735 return TOOLBAR_GetHotItem (hwnd);
6737 case TB_GETIMAGELIST:
6738 return TOOLBAR_GetDefImageList (hwnd, wParam, lParam);
6740 case TB_GETINSERTMARK:
6741 return TOOLBAR_GetInsertMark (hwnd, lParam);
6743 case TB_GETINSERTMARKCOLOR:
6744 return TOOLBAR_GetInsertMarkColor (hwnd);
6746 case TB_GETITEMRECT:
6747 return TOOLBAR_GetItemRect (hwnd, wParam, lParam);
6750 return TOOLBAR_GetMaxSize (hwnd, lParam);
6752 /* case TB_GETOBJECT: */ /* 4.71 */
6755 return TOOLBAR_GetPadding (hwnd);
6758 return TOOLBAR_GetRect (hwnd, wParam, lParam);
6761 return TOOLBAR_GetRows (hwnd);
6764 return TOOLBAR_GetState (hwnd, wParam);
6767 return TOOLBAR_GetStringA (hwnd, wParam, lParam);
6770 return TOOLBAR_GetStringW (hwnd, wParam, lParam);
6773 return TOOLBAR_GetStyle (hwnd);
6775 case TB_GETTEXTROWS:
6776 return TOOLBAR_GetTextRows (hwnd);
6778 case TB_GETTOOLTIPS:
6779 return TOOLBAR_GetToolTips (hwnd);
6781 case TB_GETUNICODEFORMAT:
6782 return TOOLBAR_GetUnicodeFormat (hwnd);
6785 return TOOLBAR_HideButton (hwnd, wParam, lParam);
6788 return TOOLBAR_HitTest (hwnd, lParam);
6790 case TB_INDETERMINATE:
6791 return TOOLBAR_Indeterminate (hwnd, wParam, lParam);
6793 case TB_INSERTBUTTONA:
6794 return TOOLBAR_InsertButtonT(hwnd, wParam, lParam, FALSE);
6796 case TB_INSERTBUTTONW:
6797 return TOOLBAR_InsertButtonT(hwnd, wParam, lParam, TRUE);
6799 /* case TB_INSERTMARKHITTEST: */ /* 4.71 */
6801 case TB_ISBUTTONCHECKED:
6802 return TOOLBAR_IsButtonChecked (hwnd, wParam);
6804 case TB_ISBUTTONENABLED:
6805 return TOOLBAR_IsButtonEnabled (hwnd, wParam);
6807 case TB_ISBUTTONHIDDEN:
6808 return TOOLBAR_IsButtonHidden (hwnd, wParam);
6810 case TB_ISBUTTONHIGHLIGHTED:
6811 return TOOLBAR_IsButtonHighlighted (hwnd, wParam);
6813 case TB_ISBUTTONINDETERMINATE:
6814 return TOOLBAR_IsButtonIndeterminate (hwnd, wParam);
6816 case TB_ISBUTTONPRESSED:
6817 return TOOLBAR_IsButtonPressed (hwnd, wParam);
6820 return TOOLBAR_LoadImages (hwnd, wParam, lParam);
6822 case TB_MAPACCELERATORA:
6823 case TB_MAPACCELERATORW:
6824 return TOOLBAR_MapAccelerator (hwnd, wParam, lParam);
6827 return TOOLBAR_MarkButton (hwnd, wParam, lParam);
6830 return TOOLBAR_MoveButton (hwnd, wParam, lParam);
6832 case TB_PRESSBUTTON:
6833 return TOOLBAR_PressButton (hwnd, wParam, lParam);
6835 case TB_REPLACEBITMAP:
6836 return TOOLBAR_ReplaceBitmap (hwnd, lParam);
6838 case TB_SAVERESTOREA:
6839 return TOOLBAR_SaveRestoreA (hwnd, wParam, (LPTBSAVEPARAMSA)lParam);
6841 case TB_SAVERESTOREW:
6842 return TOOLBAR_SaveRestoreW (hwnd, wParam, (LPTBSAVEPARAMSW)lParam);
6844 case TB_SETANCHORHIGHLIGHT:
6845 return TOOLBAR_SetAnchorHighlight (hwnd, wParam);
6847 case TB_SETBITMAPSIZE:
6848 return TOOLBAR_SetBitmapSize (hwnd, wParam, lParam);
6850 case TB_SETBUTTONINFOA:
6851 return TOOLBAR_SetButtonInfoA (hwnd, wParam, lParam);
6853 case TB_SETBUTTONINFOW:
6854 return TOOLBAR_SetButtonInfoW (hwnd, wParam, lParam);
6856 case TB_SETBUTTONSIZE:
6857 return TOOLBAR_SetButtonSize (hwnd, lParam);
6859 case TB_SETBUTTONWIDTH:
6860 return TOOLBAR_SetButtonWidth (hwnd, lParam);
6863 return TOOLBAR_SetCmdId (hwnd, wParam, lParam);
6865 case TB_SETDISABLEDIMAGELIST:
6866 return TOOLBAR_SetDisabledImageList (hwnd, wParam, lParam);
6868 case TB_SETDRAWTEXTFLAGS:
6869 return TOOLBAR_SetDrawTextFlags (hwnd, wParam, lParam);
6871 case TB_SETEXTENDEDSTYLE:
6872 return TOOLBAR_SetExtendedStyle (hwnd, wParam, lParam);
6874 case TB_SETHOTIMAGELIST:
6875 return TOOLBAR_SetHotImageList (hwnd, wParam, lParam);
6878 return TOOLBAR_SetHotItem (hwnd, wParam);
6880 case TB_SETIMAGELIST:
6881 return TOOLBAR_SetImageList (hwnd, wParam, lParam);
6884 return TOOLBAR_SetIndent (hwnd, wParam);
6886 case TB_SETINSERTMARK:
6887 return TOOLBAR_SetInsertMark (hwnd, lParam);
6889 case TB_SETINSERTMARKCOLOR:
6890 return TOOLBAR_SetInsertMarkColor (hwnd, lParam);
6892 case TB_SETMAXTEXTROWS:
6893 return TOOLBAR_SetMaxTextRows (hwnd, wParam);
6896 return TOOLBAR_SetPadding (hwnd, lParam);
6899 return TOOLBAR_SetParent (hwnd, wParam);
6902 return TOOLBAR_SetRows (hwnd, wParam, lParam);
6905 return TOOLBAR_SetState (hwnd, wParam, lParam);
6908 return TOOLBAR_SetStyle (hwnd, lParam);
6910 case TB_SETTOOLTIPS:
6911 return TOOLBAR_SetToolTips (hwnd, wParam, lParam);
6913 case TB_SETUNICODEFORMAT:
6914 return TOOLBAR_SetUnicodeFormat (hwnd, wParam);
6917 return TOOLBAR_Unkwn45D(hwnd, wParam, lParam);
6919 case TB_SETHOTITEM2:
6920 return TOOLBAR_SetHotItem2 (hwnd, wParam, lParam);
6923 return TOOLBAR_SetListGap(hwnd, wParam);
6925 case TB_GETIMAGELISTCOUNT:
6926 return TOOLBAR_GetImageListCount(hwnd, wParam, lParam);
6928 case TB_GETIDEALSIZE:
6929 return TOOLBAR_GetIdealSize (hwnd, wParam, lParam);
6932 return TOOLBAR_Unkwn464(hwnd, wParam, lParam);
6934 /* Common Control Messages */
6936 /* case TB_GETCOLORSCHEME: */ /* identical to CCM_ */
6937 case CCM_GETCOLORSCHEME:
6938 return TOOLBAR_GetColorScheme (hwnd, (LPCOLORSCHEME)lParam);
6940 /* case TB_SETCOLORSCHEME: */ /* identical to CCM_ */
6941 case CCM_SETCOLORSCHEME:
6942 return TOOLBAR_SetColorScheme (hwnd, (LPCOLORSCHEME)lParam);
6944 case CCM_GETVERSION:
6945 return TOOLBAR_GetVersion (hwnd);
6947 case CCM_SETVERSION:
6948 return TOOLBAR_SetVersion (hwnd, (INT)wParam);
6954 return TOOLBAR_Create (hwnd, lParam);
6957 return TOOLBAR_Destroy (hwnd, wParam, lParam);
6960 return TOOLBAR_EraseBackground (hwnd, wParam, lParam);
6963 return TOOLBAR_GetFont (hwnd, wParam, lParam);
6966 return TOOLBAR_KeyDown (hwnd, wParam, lParam);
6968 /* case WM_KILLFOCUS: */
6970 case WM_LBUTTONDBLCLK:
6971 return TOOLBAR_LButtonDblClk (hwnd, wParam, lParam);
6973 case WM_LBUTTONDOWN:
6974 return TOOLBAR_LButtonDown (hwnd, wParam, lParam);
6977 return TOOLBAR_LButtonUp (hwnd, wParam, lParam);
6980 return TOOLBAR_RButtonUp (hwnd, wParam, lParam);
6982 case WM_RBUTTONDBLCLK:
6983 return TOOLBAR_RButtonDblClk (hwnd, wParam, lParam);
6986 return TOOLBAR_MouseMove (hwnd, wParam, lParam);
6989 return TOOLBAR_MouseLeave (hwnd, wParam, lParam);
6991 case WM_CAPTURECHANGED:
6992 return TOOLBAR_CaptureChanged(hwnd);
6995 return TOOLBAR_NCActivate (hwnd, wParam, lParam);
6998 return TOOLBAR_NCCalcSize (hwnd, wParam, lParam);
7001 return TOOLBAR_NCCreate (hwnd, wParam, lParam);
7004 return TOOLBAR_NCPaint (hwnd, wParam, lParam);
7007 return TOOLBAR_Notify (hwnd, lParam);
7009 case WM_NOTIFYFORMAT:
7010 return TOOLBAR_NotifyFormat (infoPtr, wParam, lParam);
7012 case WM_PRINTCLIENT:
7014 return TOOLBAR_Paint (hwnd, wParam);
7017 return TOOLBAR_SetFocus (hwnd, wParam);
7020 return TOOLBAR_SetFont(hwnd, wParam, lParam);
7023 return TOOLBAR_SetRedraw (hwnd, wParam, lParam);
7026 return TOOLBAR_Size (hwnd, wParam, lParam);
7028 case WM_STYLECHANGED:
7029 return TOOLBAR_StyleChanged (hwnd, (INT)wParam, (LPSTYLESTRUCT)lParam);
7031 case WM_SYSCOLORCHANGE:
7032 return TOOLBAR_SysColorChange (hwnd);
7034 case WM_THEMECHANGED:
7035 return theme_changed (hwnd);
7037 /* case WM_WININICHANGE: */
7042 case WM_MEASUREITEM:
7044 return SendMessageW (infoPtr->hwndNotify, uMsg, wParam, lParam);
7046 /* We see this in Outlook Express 5.x and just does DefWindowProc */
7047 case PGM_FORWARDMOUSE:
7048 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
7051 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
7052 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
7053 uMsg, wParam, lParam);
7054 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
7060 TOOLBAR_Register (void)
7064 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
7065 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
7066 wndClass.lpfnWndProc = ToolbarWindowProc;
7067 wndClass.cbClsExtra = 0;
7068 wndClass.cbWndExtra = sizeof(TOOLBAR_INFO *);
7069 wndClass.hCursor = LoadCursorW (0, (LPWSTR)IDC_ARROW);
7070 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
7071 wndClass.lpszClassName = TOOLBARCLASSNAMEW;
7073 RegisterClassW (&wndClass);
7078 TOOLBAR_Unregister (void)
7080 UnregisterClassW (TOOLBARCLASSNAMEW, NULL);
7083 static HIMAGELIST TOOLBAR_InsertImageList(PIMLENTRY **pies, INT *cies, HIMAGELIST himl, INT id)
7088 /* Check if the entry already exists */
7089 c = TOOLBAR_GetImageListEntry(*pies, *cies, id);
7091 /* If this is a new entry we must create it and insert into the array */
7096 c = Alloc(sizeof(IMLENTRY));
7099 pnies = Alloc((*cies + 1) * sizeof(PIMLENTRY));
7100 memcpy(pnies, *pies, ((*cies) * sizeof(PIMLENTRY)));
7115 static VOID TOOLBAR_DeleteImageList(PIMLENTRY **pies, INT *cies)
7119 for (i = 0; i < *cies; i++)
7129 static PIMLENTRY TOOLBAR_GetImageListEntry(const PIMLENTRY *pies, INT cies, INT id)
7137 for (i = 0; i < cies; i++)
7139 if (pies[i]->id == id)
7151 static HIMAGELIST TOOLBAR_GetImageList(const PIMLENTRY *pies, INT cies, INT id)
7153 HIMAGELIST himlDef = 0;
7154 PIMLENTRY pie = TOOLBAR_GetImageListEntry(pies, cies, id);
7157 himlDef = pie->himl;
7163 static BOOL TOOLBAR_GetButtonInfo(const TOOLBAR_INFO *infoPtr, NMTOOLBARW *nmtb)
7165 if (infoPtr->bUnicode)
7166 return TOOLBAR_SendNotify(&nmtb->hdr, infoPtr, TBN_GETBUTTONINFOW);
7173 nmtba.iItem = nmtb->iItem;
7174 nmtba.pszText = Buffer;
7175 nmtba.cchText = 256;
7176 ZeroMemory(nmtba.pszText, nmtba.cchText);
7178 if (TOOLBAR_SendNotify(&nmtba.hdr, infoPtr, TBN_GETBUTTONINFOA))
7180 int ccht = strlen(nmtba.pszText);
7182 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)nmtba.pszText, -1,
7183 nmtb->pszText, nmtb->cchText);
7185 nmtb->tbButton = nmtba.tbButton;
7194 static BOOL TOOLBAR_IsButtonRemovable(const TOOLBAR_INFO *infoPtr, int iItem, PCUSTOMBUTTON btnInfo)
7198 /* MSDN states that iItem is the index of the button, rather than the
7199 * command ID as used by every other NMTOOLBAR notification */
7201 memcpy(&nmtb.tbButton, &btnInfo->btn, sizeof(TBBUTTON));
7203 return TOOLBAR_SendNotify(&nmtb.hdr, infoPtr, TBN_QUERYDELETE);