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 ZeroMemory(&infoPtr
->buttons
[nIndex
], sizeof(infoPtr
->buttons
[nIndex
]));
3793 infoPtr
->buttons
[nIndex
].iBitmap
= lpTbb
->iBitmap
;
3794 infoPtr
->buttons
[nIndex
].idCommand
= lpTbb
->idCommand
;
3795 infoPtr
->buttons
[nIndex
].fsState
= lpTbb
->fsState
;
3796 infoPtr
->buttons
[nIndex
].fsStyle
= lpTbb
->fsStyle
;
3797 infoPtr
->buttons
[nIndex
].dwData
= lpTbb
->dwData
;
3798 /* if passed string and not index, then add string */
3799 if(HIWORD(lpTbb
->iString
) && lpTbb
->iString
!=-1) {
3801 Str_SetPtrW((LPWSTR
*)&infoPtr
->buttons
[nIndex
].iString
, (LPWSTR
)lpTbb
->iString
);
3803 Str_SetPtrAtoW((LPWSTR
*)&infoPtr
->buttons
[nIndex
].iString
, (LPCSTR
)lpTbb
->iString
);
3806 infoPtr
->buttons
[nIndex
].iString
= lpTbb
->iString
;
3808 TOOLBAR_TooltipAddTool(infoPtr
, &infoPtr
->buttons
[nIndex
]);
3810 if (infoPtr
->nNumStrings
> 0)
3811 TOOLBAR_CalcToolbar(hwnd
);
3813 TOOLBAR_LayoutToolbar(hwnd
);
3814 TOOLBAR_AutoSize (hwnd
);
3816 InvalidateRect (hwnd
, NULL
, TRUE
);
3821 /* << TOOLBAR_InsertMarkHitTest >> */
3825 TOOLBAR_IsButtonChecked (HWND hwnd
, WPARAM wParam
)
3827 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3830 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3834 return (infoPtr
->buttons
[nIndex
].fsState
& TBSTATE_CHECKED
);
3839 TOOLBAR_IsButtonEnabled (HWND hwnd
, WPARAM wParam
)
3841 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3844 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3848 return (infoPtr
->buttons
[nIndex
].fsState
& TBSTATE_ENABLED
);
3853 TOOLBAR_IsButtonHidden (HWND hwnd
, WPARAM wParam
)
3855 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3858 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3862 return (infoPtr
->buttons
[nIndex
].fsState
& TBSTATE_HIDDEN
);
3867 TOOLBAR_IsButtonHighlighted (HWND hwnd
, WPARAM wParam
)
3869 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3872 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3876 return (infoPtr
->buttons
[nIndex
].fsState
& TBSTATE_MARKED
);
3881 TOOLBAR_IsButtonIndeterminate (HWND hwnd
, WPARAM wParam
)
3883 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3886 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3890 return (infoPtr
->buttons
[nIndex
].fsState
& TBSTATE_INDETERMINATE
);
3895 TOOLBAR_IsButtonPressed (HWND hwnd
, WPARAM wParam
)
3897 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3900 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3904 return (infoPtr
->buttons
[nIndex
].fsState
& TBSTATE_PRESSED
);
3909 TOOLBAR_LoadImages (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
3912 tbab
.hInst
= (HINSTANCE
)lParam
;
3915 TRACE("hwnd = %p, hInst = %p, nID = %lu\n", hwnd
, tbab
.hInst
, tbab
.nID
);
3917 return TOOLBAR_AddBitmap(hwnd
, 0, (LPARAM
)&tbab
);
3922 TOOLBAR_MapAccelerator (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
3924 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3925 WCHAR wAccel
= (WCHAR
)wParam
;
3926 UINT
* pIDButton
= (UINT
*)lParam
;
3927 WCHAR wszAccel
[] = {'&',wAccel
,0};
3930 TRACE("hwnd = %p, wAccel = %x(%s), pIDButton = %p\n",
3931 hwnd
, wAccel
, debugstr_wn(&wAccel
,1), pIDButton
);
3933 for (i
= 0; i
< infoPtr
->nNumButtons
; i
++)
3935 TBUTTON_INFO
*btnPtr
= infoPtr
->buttons
+i
;
3936 if (!(btnPtr
->fsStyle
& BTNS_NOPREFIX
) &&
3937 !(btnPtr
->fsState
& TBSTATE_HIDDEN
))
3939 int iLen
= strlenW(wszAccel
);
3940 LPCWSTR lpszStr
= TOOLBAR_GetText(infoPtr
, btnPtr
);
3947 if ((lpszStr
[0] == '&') && (lpszStr
[1] == '&'))
3952 if (!strncmpiW(lpszStr
, wszAccel
, iLen
))
3954 *pIDButton
= btnPtr
->idCommand
;
3966 TOOLBAR_MarkButton (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
3968 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
3971 TBUTTON_INFO
*btnPtr
;
3973 TRACE("hwnd = %p, wParam = %ld, lParam = 0x%08lx\n", hwnd
, wParam
, lParam
);
3975 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
3979 btnPtr
= &infoPtr
->buttons
[nIndex
];
3980 oldState
= btnPtr
->fsState
;
3983 btnPtr
->fsState
|= TBSTATE_MARKED
;
3985 btnPtr
->fsState
&= ~TBSTATE_MARKED
;
3987 if(oldState
!= btnPtr
->fsState
)
3988 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
3994 /* fixes up an index of a button affected by a move */
3995 static inline void TOOLBAR_MoveFixupIndex(INT
* pIndex
, INT nIndex
, INT nMoveIndex
, BOOL bMoveUp
)
3999 if (*pIndex
> nIndex
&& *pIndex
<= nMoveIndex
)
4001 else if (*pIndex
== nIndex
)
4002 *pIndex
= nMoveIndex
;
4006 if (*pIndex
>= nMoveIndex
&& *pIndex
< nIndex
)
4008 else if (*pIndex
== nIndex
)
4009 *pIndex
= nMoveIndex
;
4015 TOOLBAR_MoveButton (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4017 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4020 INT nMoveIndex
= (INT
)lParam
;
4021 TBUTTON_INFO button
;
4023 TRACE("hwnd=%p, wParam=%ld, lParam=%ld\n", hwnd
, wParam
, lParam
);
4025 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, TRUE
);
4026 if ((nIndex
== -1) || (nMoveIndex
< 0))
4029 if (nMoveIndex
> infoPtr
->nNumButtons
- 1)
4030 nMoveIndex
= infoPtr
->nNumButtons
- 1;
4032 button
= infoPtr
->buttons
[nIndex
];
4034 /* move button right */
4035 if (nIndex
< nMoveIndex
)
4037 nCount
= nMoveIndex
- nIndex
;
4038 memmove(&infoPtr
->buttons
[nIndex
], &infoPtr
->buttons
[nIndex
+1], nCount
*sizeof(TBUTTON_INFO
));
4039 infoPtr
->buttons
[nMoveIndex
] = button
;
4041 TOOLBAR_MoveFixupIndex(&infoPtr
->nButtonDown
, nIndex
, nMoveIndex
, TRUE
);
4042 TOOLBAR_MoveFixupIndex(&infoPtr
->nButtonDrag
, nIndex
, nMoveIndex
, TRUE
);
4043 TOOLBAR_MoveFixupIndex(&infoPtr
->nOldHit
, nIndex
, nMoveIndex
, TRUE
);
4044 TOOLBAR_MoveFixupIndex(&infoPtr
->nHotItem
, nIndex
, nMoveIndex
, TRUE
);
4046 else if (nIndex
> nMoveIndex
) /* move button left */
4048 nCount
= nIndex
- nMoveIndex
;
4049 memmove(&infoPtr
->buttons
[nMoveIndex
+1], &infoPtr
->buttons
[nMoveIndex
], nCount
*sizeof(TBUTTON_INFO
));
4050 infoPtr
->buttons
[nMoveIndex
] = button
;
4052 TOOLBAR_MoveFixupIndex(&infoPtr
->nButtonDown
, nIndex
, nMoveIndex
, FALSE
);
4053 TOOLBAR_MoveFixupIndex(&infoPtr
->nButtonDrag
, nIndex
, nMoveIndex
, FALSE
);
4054 TOOLBAR_MoveFixupIndex(&infoPtr
->nOldHit
, nIndex
, nMoveIndex
, FALSE
);
4055 TOOLBAR_MoveFixupIndex(&infoPtr
->nHotItem
, nIndex
, nMoveIndex
, FALSE
);
4058 TOOLBAR_LayoutToolbar(hwnd
);
4059 TOOLBAR_AutoSize(hwnd
);
4060 InvalidateRect(hwnd
, NULL
, TRUE
);
4067 TOOLBAR_PressButton (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4069 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4070 TBUTTON_INFO
*btnPtr
;
4074 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
4078 btnPtr
= &infoPtr
->buttons
[nIndex
];
4079 oldState
= btnPtr
->fsState
;
4080 if (LOWORD(lParam
) == FALSE
)
4081 btnPtr
->fsState
&= ~TBSTATE_PRESSED
;
4083 btnPtr
->fsState
|= TBSTATE_PRESSED
;
4085 if(oldState
!= btnPtr
->fsState
)
4086 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
4091 /* FIXME: there might still be some confusion her between number of buttons
4092 * and number of bitmaps */
4094 TOOLBAR_ReplaceBitmap (HWND hwnd
, LPARAM lParam
)
4096 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4097 LPTBREPLACEBITMAP lpReplace
= (LPTBREPLACEBITMAP
) lParam
;
4099 int i
= 0, nOldButtons
= 0, pos
= 0;
4100 int nOldBitmaps
, nNewBitmaps
= 0;
4101 HIMAGELIST himlDef
= 0;
4103 TRACE("hInstOld %p nIDOld %lx hInstNew %p nIDNew %lx nButtons %x\n",
4104 lpReplace
->hInstOld
, lpReplace
->nIDOld
, lpReplace
->hInstNew
, lpReplace
->nIDNew
,
4105 lpReplace
->nButtons
);
4107 if (lpReplace
->hInstOld
== HINST_COMMCTRL
)
4109 FIXME("changing standard bitmaps not implemented\n");
4112 else if (lpReplace
->hInstOld
!= 0)
4113 FIXME("resources not in the current module not implemented\n");
4115 TRACE("To be replaced hInstOld %p nIDOld %lx\n", lpReplace
->hInstOld
, lpReplace
->nIDOld
);
4116 for (i
= 0; i
< infoPtr
->nNumBitmapInfos
; i
++) {
4117 TBITMAP_INFO
*tbi
= &infoPtr
->bitmaps
[i
];
4118 TRACE("tbimapinfo %d hInstOld %p nIDOld %x\n", i
, tbi
->hInst
, tbi
->nID
);
4119 if (tbi
->hInst
== lpReplace
->hInstOld
&& tbi
->nID
== lpReplace
->nIDOld
)
4121 TRACE("Found: nButtons %d hInst %p nID %x\n", tbi
->nButtons
, tbi
->hInst
, tbi
->nID
);
4122 nOldButtons
= tbi
->nButtons
;
4123 tbi
->nButtons
= lpReplace
->nButtons
;
4124 tbi
->hInst
= lpReplace
->hInstNew
;
4125 tbi
->nID
= lpReplace
->nIDNew
;
4126 TRACE("tbimapinfo changed %d hInstOld %p nIDOld %x\n", i
, tbi
->hInst
, tbi
->nID
);
4129 pos
+= tbi
->nButtons
;
4132 if (nOldButtons
== 0)
4134 WARN("No hinst/bitmap found! hInst %p nID %lx\n", lpReplace
->hInstOld
, lpReplace
->nIDOld
);
4138 /* copy the bitmap before adding it as ImageList_AddMasked modifies the
4141 if (lpReplace
->hInstNew
)
4142 hBitmap
= LoadBitmapW(lpReplace
->hInstNew
,(LPWSTR
)lpReplace
->nIDNew
);
4144 hBitmap
= CopyImage((HBITMAP
)lpReplace
->nIDNew
, IMAGE_BITMAP
, 0, 0, 0);
4146 himlDef
= GETDEFIMAGELIST(infoPtr
, 0); /* fixme: correct? */
4147 nOldBitmaps
= ImageList_GetImageCount(himlDef
);
4149 /* ImageList_Replace(GETDEFIMAGELIST(), pos, hBitmap, NULL); */
4151 for (i
= pos
+ nOldBitmaps
- 1; i
>= pos
; i
--)
4152 ImageList_Remove(himlDef
, i
);
4156 ImageList_AddMasked (himlDef
, hBitmap
, comctl32_color
.clrBtnFace
);
4157 nNewBitmaps
= ImageList_GetImageCount(himlDef
);
4158 DeleteObject(hBitmap
);
4161 infoPtr
->nNumBitmaps
= infoPtr
->nNumBitmaps
- nOldBitmaps
+ nNewBitmaps
;
4163 TRACE(" pos %d %d old bitmaps replaced by %d new ones.\n",
4164 pos
, nOldBitmaps
, nNewBitmaps
);
4166 InvalidateRect(hwnd
, NULL
, TRUE
);
4171 /* helper for TOOLBAR_SaveRestoreW */
4173 TOOLBAR_Save(const TBSAVEPARAMSW
*lpSave
)
4175 FIXME("save to %s %s\n", debugstr_w(lpSave
->pszSubKey
),
4176 debugstr_w(lpSave
->pszValueName
));
4182 /* helper for TOOLBAR_Restore */
4184 TOOLBAR_DeleteAllButtons(TOOLBAR_INFO
*infoPtr
)
4188 for (i
= 0; i
< infoPtr
->nNumButtons
; i
++)
4190 TOOLBAR_TooltipDelTool(infoPtr
, &infoPtr
->buttons
[i
]);
4193 Free(infoPtr
->buttons
);
4194 infoPtr
->buttons
= NULL
;
4195 infoPtr
->nNumButtons
= 0;
4199 /* helper for TOOLBAR_SaveRestoreW */
4201 TOOLBAR_Restore(TOOLBAR_INFO
*infoPtr
, const TBSAVEPARAMSW
*lpSave
)
4210 /* restore toolbar information */
4211 TRACE("restore from %s %s\n", debugstr_w(lpSave
->pszSubKey
),
4212 debugstr_w(lpSave
->pszValueName
));
4214 memset(&nmtbr
, 0, sizeof(nmtbr
));
4216 res
= RegOpenKeyExW(lpSave
->hkr
, lpSave
->pszSubKey
, 0,
4217 KEY_QUERY_VALUE
, &hkey
);
4219 res
= RegQueryValueExW(hkey
, lpSave
->pszValueName
, NULL
, &dwType
,
4221 if (!res
&& dwType
!= REG_BINARY
)
4222 res
= ERROR_FILE_NOT_FOUND
;
4225 nmtbr
.pData
= Alloc(dwSize
);
4226 nmtbr
.cbData
= dwSize
;
4227 if (!nmtbr
.pData
) res
= ERROR_OUTOFMEMORY
;
4230 res
= RegQueryValueExW(hkey
, lpSave
->pszValueName
, NULL
, &dwType
,
4231 (LPBYTE
)nmtbr
.pData
, &dwSize
);
4234 nmtbr
.pCurrent
= nmtbr
.pData
;
4236 nmtbr
.cbBytesPerRecord
= sizeof(DWORD
);
4237 nmtbr
.cButtons
= nmtbr
.cbData
/ nmtbr
.cbBytesPerRecord
;
4239 if (!TOOLBAR_SendNotify(&nmtbr
.hdr
, infoPtr
, TBN_RESTORE
))
4243 /* remove all existing buttons as this function is designed to
4244 * restore the toolbar to a previously saved state */
4245 TOOLBAR_DeleteAllButtons(infoPtr
);
4247 for (i
= 0; i
< nmtbr
.cButtons
; i
++)
4250 nmtbr
.tbButton
.iBitmap
= -1;
4251 nmtbr
.tbButton
.fsState
= 0;
4252 nmtbr
.tbButton
.fsStyle
= 0;
4253 nmtbr
.tbButton
.idCommand
= 0;
4254 if (*nmtbr
.pCurrent
== (DWORD
)-1)
4257 nmtbr
.tbButton
.fsStyle
= TBSTYLE_SEP
;
4258 nmtbr
.tbButton
.iBitmap
= SEPARATOR_WIDTH
;
4260 else if (*nmtbr
.pCurrent
== (DWORD
)-2)
4262 nmtbr
.tbButton
.fsState
= TBSTATE_HIDDEN
;
4264 nmtbr
.tbButton
.idCommand
= (int)*nmtbr
.pCurrent
;
4268 TOOLBAR_SendNotify(&nmtbr
.hdr
, infoPtr
, TBN_RESTORE
);
4270 /* can't contain real string as we don't know whether
4271 * the client put an ANSI or Unicode string in there */
4272 if (HIWORD(nmtbr
.tbButton
.iString
))
4273 nmtbr
.tbButton
.iString
= 0;
4275 TOOLBAR_InsertButtonT(infoPtr
->hwndSelf
, -1,
4276 (LPARAM
)&nmtbr
.tbButton
, TRUE
);
4279 /* do legacy notifications */
4280 if (infoPtr
->iVersion
< 5)
4282 /* FIXME: send TBN_BEGINADJUST */
4283 FIXME("send TBN_GETBUTTONINFO for each button\n");
4284 /* FIXME: send TBN_ENDADJUST */
4287 /* remove all uninitialised buttons
4288 * note: loop backwards to avoid having to fixup i on a
4290 for (i
= infoPtr
->nNumButtons
- 1; i
>= 0; i
--)
4291 if (infoPtr
->buttons
[i
].iBitmap
== -1)
4292 TOOLBAR_DeleteButton(infoPtr
->hwndSelf
, i
);
4294 /* only indicate success if at least one button survived */
4295 if (infoPtr
->nNumButtons
> 0) ret
= TRUE
;
4306 TOOLBAR_SaveRestoreW (HWND hwnd
, WPARAM wParam
, const TBSAVEPARAMSW
*lpSave
)
4308 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4310 if (lpSave
== NULL
) return 0;
4313 return TOOLBAR_Save(lpSave
);
4315 return TOOLBAR_Restore(infoPtr
, lpSave
);
4320 TOOLBAR_SaveRestoreA (HWND hwnd
, WPARAM wParam
, const TBSAVEPARAMSA
*lpSave
)
4322 LPWSTR pszValueName
= 0, pszSubKey
= 0;
4323 TBSAVEPARAMSW SaveW
;
4327 if (lpSave
== NULL
) return 0;
4329 len
= MultiByteToWideChar(CP_ACP
, 0, lpSave
->pszSubKey
, -1, NULL
, 0);
4330 pszSubKey
= Alloc(len
* sizeof(WCHAR
));
4331 if (pszSubKey
) goto exit
;
4332 MultiByteToWideChar(CP_ACP
, 0, lpSave
->pszSubKey
, -1, pszSubKey
, len
);
4334 len
= MultiByteToWideChar(CP_ACP
, 0, lpSave
->pszValueName
, -1, NULL
, 0);
4335 pszValueName
= Alloc(len
* sizeof(WCHAR
));
4336 if (!pszValueName
) goto exit
;
4337 MultiByteToWideChar(CP_ACP
, 0, lpSave
->pszValueName
, -1, pszValueName
, len
);
4339 SaveW
.pszValueName
= pszValueName
;
4340 SaveW
.pszSubKey
= pszSubKey
;
4341 SaveW
.hkr
= lpSave
->hkr
;
4342 result
= TOOLBAR_SaveRestoreW(hwnd
, wParam
, &SaveW
);
4345 Free (pszValueName
);
4353 TOOLBAR_SetAnchorHighlight (HWND hwnd
, WPARAM wParam
)
4355 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4356 BOOL bOldAnchor
= infoPtr
->bAnchor
;
4358 TRACE("hwnd=%p, bAnchor = %s\n", hwnd
, wParam
? "TRUE" : "FALSE");
4360 infoPtr
->bAnchor
= (BOOL
)wParam
;
4362 /* Native does not remove the hot effect from an already hot button */
4364 return (LRESULT
)bOldAnchor
;
4369 TOOLBAR_SetBitmapSize (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4371 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4372 HIMAGELIST himlDef
= GETDEFIMAGELIST(infoPtr
, 0);
4373 short width
= (short)LOWORD(lParam
);
4374 short height
= (short)HIWORD(lParam
);
4376 TRACE("hwnd=%p, wParam=%ld, lParam=%ld\n", hwnd
, wParam
, lParam
);
4379 FIXME("wParam is %ld. Perhaps image list index?\n", wParam
);
4381 /* 0 width or height is changed to 1 */
4387 if (infoPtr
->nNumButtons
> 0)
4388 TRACE("%d buttons, undoc change to bitmap size : %d-%d -> %d-%d\n",
4389 infoPtr
->nNumButtons
,
4390 infoPtr
->nBitmapWidth
, infoPtr
->nBitmapHeight
, width
, height
);
4392 if (width
< -1 || height
< -1)
4394 /* Windows destroys the imagelist and seems to actually use negative
4395 * values to compute button sizes */
4396 FIXME("Negative bitmap sizes not supported (%d, %d)\n", width
, height
);
4400 /* width or height of -1 means no change */
4402 infoPtr
->nBitmapWidth
= width
;
4404 infoPtr
->nBitmapHeight
= height
;
4406 if ((himlDef
== infoPtr
->himlInt
) &&
4407 (ImageList_GetImageCount(infoPtr
->himlInt
) == 0))
4409 ImageList_SetIconSize(infoPtr
->himlInt
, infoPtr
->nBitmapWidth
,
4410 infoPtr
->nBitmapHeight
);
4413 TOOLBAR_CalcToolbar(hwnd
);
4414 InvalidateRect(infoPtr
->hwndSelf
, NULL
, FALSE
);
4420 TOOLBAR_SetButtonInfoA (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4422 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4423 LPTBBUTTONINFOA lptbbi
= (LPTBBUTTONINFOA
)lParam
;
4424 TBUTTON_INFO
*btnPtr
;
4430 if (lptbbi
->cbSize
< sizeof(TBBUTTONINFOA
))
4433 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
,
4434 lptbbi
->dwMask
& 0x80000000);
4438 btnPtr
= &infoPtr
->buttons
[nIndex
];
4439 if (lptbbi
->dwMask
& TBIF_COMMAND
)
4440 btnPtr
->idCommand
= lptbbi
->idCommand
;
4441 if (lptbbi
->dwMask
& TBIF_IMAGE
)
4442 btnPtr
->iBitmap
= lptbbi
->iImage
;
4443 if (lptbbi
->dwMask
& TBIF_LPARAM
)
4444 btnPtr
->dwData
= lptbbi
->lParam
;
4445 if (lptbbi
->dwMask
& TBIF_SIZE
)
4446 btnPtr
->cx
= lptbbi
->cx
;
4447 if (lptbbi
->dwMask
& TBIF_STATE
)
4448 btnPtr
->fsState
= lptbbi
->fsState
;
4449 if (lptbbi
->dwMask
& TBIF_STYLE
)
4450 btnPtr
->fsStyle
= lptbbi
->fsStyle
;
4452 if ((lptbbi
->dwMask
& TBIF_TEXT
) && ((INT_PTR
)lptbbi
->pszText
!= -1)) {
4453 if ((HIWORD(btnPtr
->iString
) == 0) || (btnPtr
->iString
== -1))
4454 /* iString is index, zero it to make Str_SetPtr succeed */
4457 Str_SetPtrAtoW ((LPWSTR
*)&btnPtr
->iString
, lptbbi
->pszText
);
4460 /* save the button rect to see if we need to redraw the whole toolbar */
4461 oldBtnRect
= btnPtr
->rect
;
4462 TOOLBAR_CalcToolbar(hwnd
);
4464 if (!EqualRect(&oldBtnRect
, &btnPtr
->rect
))
4465 InvalidateRect(hwnd
, NULL
, TRUE
);
4467 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
4474 TOOLBAR_SetButtonInfoW (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4476 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4477 LPTBBUTTONINFOW lptbbi
= (LPTBBUTTONINFOW
)lParam
;
4478 TBUTTON_INFO
*btnPtr
;
4484 if (lptbbi
->cbSize
< sizeof(TBBUTTONINFOW
))
4487 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
,
4488 lptbbi
->dwMask
& 0x80000000);
4492 btnPtr
= &infoPtr
->buttons
[nIndex
];
4493 if (lptbbi
->dwMask
& TBIF_COMMAND
)
4494 btnPtr
->idCommand
= lptbbi
->idCommand
;
4495 if (lptbbi
->dwMask
& TBIF_IMAGE
)
4496 btnPtr
->iBitmap
= lptbbi
->iImage
;
4497 if (lptbbi
->dwMask
& TBIF_LPARAM
)
4498 btnPtr
->dwData
= lptbbi
->lParam
;
4499 if (lptbbi
->dwMask
& TBIF_SIZE
)
4500 btnPtr
->cx
= lptbbi
->cx
;
4501 if (lptbbi
->dwMask
& TBIF_STATE
)
4502 btnPtr
->fsState
= lptbbi
->fsState
;
4503 if (lptbbi
->dwMask
& TBIF_STYLE
)
4504 btnPtr
->fsStyle
= lptbbi
->fsStyle
;
4506 if ((lptbbi
->dwMask
& TBIF_TEXT
) && ((INT_PTR
)lptbbi
->pszText
!= -1)) {
4507 if ((HIWORD(btnPtr
->iString
) == 0) || (btnPtr
->iString
== -1))
4508 /* iString is index, zero it to make Str_SetPtr succeed */
4510 Str_SetPtrW ((LPWSTR
*)&btnPtr
->iString
, lptbbi
->pszText
);
4513 /* save the button rect to see if we need to redraw the whole toolbar */
4514 oldBtnRect
= btnPtr
->rect
;
4515 TOOLBAR_CalcToolbar(hwnd
);
4517 if (!EqualRect(&oldBtnRect
, &btnPtr
->rect
))
4518 InvalidateRect(hwnd
, NULL
, TRUE
);
4520 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
4527 TOOLBAR_SetButtonSize (HWND hwnd
, LPARAM lParam
)
4529 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4530 INT cx
= (short)LOWORD(lParam
), cy
= (short)HIWORD(lParam
);
4532 if ((cx
< 0) || (cy
< 0))
4534 ERR("invalid parameter 0x%08x\n", (DWORD
)lParam
);
4538 TRACE("%p, cx = %d, cy = %d\n", hwnd
, cx
, cy
);
4540 /* The documentation claims you can only change the button size before
4541 * any button has been added. But this is wrong.
4542 * WINZIP32.EXE (ver 8) calls this on one of its buttons after adding
4543 * it to the toolbar, and it checks that the return value is nonzero - mjm
4544 * Further testing shows that we must actually perform the change too.
4547 * The documentation also does not mention that if 0 is supplied for
4548 * either size, the system changes it to the default of 24 wide and
4549 * 22 high. Demonstarted in ControlSpy Toolbar. GLA 3/02
4551 if (cx
== 0) cx
= 24;
4552 if (cy
== 0) cx
= 22;
4554 cx
= max(cx
, infoPtr
->szPadding
.cx
+ infoPtr
->nBitmapWidth
);
4555 cy
= max(cy
, infoPtr
->szPadding
.cy
+ infoPtr
->nBitmapHeight
);
4557 infoPtr
->nButtonWidth
= cx
;
4558 infoPtr
->nButtonHeight
= cy
;
4560 infoPtr
->iTopMargin
= default_top_margin(infoPtr
);
4561 TOOLBAR_LayoutToolbar(hwnd
);
4567 TOOLBAR_SetButtonWidth (HWND hwnd
, LPARAM lParam
)
4569 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4571 /* if setting to current values, ignore */
4572 if ((infoPtr
->cxMin
== (short)LOWORD(lParam
)) &&
4573 (infoPtr
->cxMax
== (short)HIWORD(lParam
))) {
4574 TRACE("matches current width, min=%d, max=%d, no recalc\n",
4575 infoPtr
->cxMin
, infoPtr
->cxMax
);
4579 /* save new values */
4580 infoPtr
->cxMin
= (short)LOWORD(lParam
);
4581 infoPtr
->cxMax
= (short)HIWORD(lParam
);
4583 /* otherwise we need to recalc the toolbar and in some cases
4584 recalc the bounding rectangle (does DrawText w/ DT_CALCRECT
4585 which doesn't actually draw - GA). */
4586 TRACE("number of buttons %d, cx=%d, cy=%d, recalcing\n",
4587 infoPtr
->nNumButtons
, infoPtr
->cxMin
, infoPtr
->cxMax
);
4589 TOOLBAR_CalcToolbar (hwnd
);
4591 InvalidateRect (hwnd
, NULL
, TRUE
);
4598 TOOLBAR_SetCmdId (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4600 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4601 INT nIndex
= (INT
)wParam
;
4603 if ((nIndex
< 0) || (nIndex
>= infoPtr
->nNumButtons
))
4606 infoPtr
->buttons
[nIndex
].idCommand
= (INT
)lParam
;
4608 if (infoPtr
->hwndToolTip
) {
4610 FIXME("change tool tip!\n");
4619 TOOLBAR_SetDisabledImageList (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4621 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4622 HIMAGELIST himl
= (HIMAGELIST
)lParam
;
4623 HIMAGELIST himlTemp
;
4626 if (infoPtr
->iVersion
>= 5)
4629 himlTemp
= TOOLBAR_InsertImageList(&infoPtr
->himlDis
,
4630 &infoPtr
->cimlDis
, himl
, id
);
4632 /* FIXME: redraw ? */
4634 return (LRESULT
)himlTemp
;
4639 TOOLBAR_SetDrawTextFlags (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4641 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4644 TRACE("hwnd = %p, dwMask = 0x%08x, dwDTFlags = 0x%08x\n", hwnd
, (DWORD
)wParam
, (DWORD
)lParam
);
4646 dwTemp
= infoPtr
->dwDTFlags
;
4647 infoPtr
->dwDTFlags
=
4648 (infoPtr
->dwDTFlags
& (DWORD
)wParam
) | (DWORD
)lParam
;
4650 return (LRESULT
)dwTemp
;
4653 /* This function differs a bit from what MSDN says it does:
4654 * 1. lParam contains extended style flags to OR with current style
4655 * (MSDN isn't clear on the OR bit)
4656 * 2. wParam appears to contain extended style flags to be reset
4657 * (MSDN says that this parameter is reserved)
4660 TOOLBAR_SetExtendedStyle (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4662 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4665 dwTemp
= infoPtr
->dwExStyle
;
4666 infoPtr
->dwExStyle
&= ~wParam
;
4667 infoPtr
->dwExStyle
|= (DWORD
)lParam
;
4669 TRACE("new style 0x%08x\n", infoPtr
->dwExStyle
);
4671 if (infoPtr
->dwExStyle
& ~TBSTYLE_EX_ALL
)
4672 FIXME("Unknown Toolbar Extended Style 0x%08x. Please report.\n",
4673 (infoPtr
->dwExStyle
& ~TBSTYLE_EX_ALL
));
4675 TOOLBAR_CalcToolbar (hwnd
);
4677 TOOLBAR_AutoSize(hwnd
);
4679 InvalidateRect(hwnd
, NULL
, TRUE
);
4681 return (LRESULT
)dwTemp
;
4686 TOOLBAR_SetHotImageList (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4688 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
4689 HIMAGELIST himlTemp
;
4690 HIMAGELIST himl
= (HIMAGELIST
)lParam
;
4693 if (infoPtr
->iVersion
>= 5)
4696 TRACE("hwnd = %p, himl = %p, id = %d\n", hwnd
, himl
, id
);
4698 himlTemp
= TOOLBAR_InsertImageList(&infoPtr
->himlHot
,
4699 &infoPtr
->cimlHot
, himl
, id
);
4701 /* FIXME: redraw ? */
4703 return (LRESULT
)himlTemp
;
4707 /* Makes previous hot button no longer hot, makes the specified
4708 * button hot and sends appropriate notifications. dwReason is one or
4709 * more HICF_ flags. Specify nHit < 0 to make no buttons hot.
4710 * NOTE 1: this function does not validate nHit
4711 * NOTE 2: the name of this function is completely made up and
4712 * not based on any documentation from Microsoft. */
4714 TOOLBAR_SetHotItemEx (TOOLBAR_INFO
*infoPtr
, INT nHit
, DWORD dwReason
)
4716 if (infoPtr
->nHotItem
!= nHit
)
4718 NMTBHOTITEM nmhotitem
;
4719 TBUTTON_INFO
*btnPtr
= NULL
, *oldBtnPtr
= NULL
;
4721 nmhotitem
.dwFlags
= dwReason
;
4722 if(infoPtr
->nHotItem
>= 0)
4724 oldBtnPtr
= &infoPtr
->buttons
[infoPtr
->nHotItem
];
4725 nmhotitem
.idOld
= oldBtnPtr
->idCommand
;
4729 nmhotitem
.dwFlags
|= HICF_ENTERING
;
4730 nmhotitem
.idOld
= 0;
4735 btnPtr
= &infoPtr
->buttons
[nHit
];
4736 nmhotitem
.idNew
= btnPtr
->idCommand
;
4740 nmhotitem
.dwFlags
|= HICF_LEAVING
;
4741 nmhotitem
.idNew
= 0;
4744 /* now change the hot and invalidate the old and new buttons - if the
4746 if (!TOOLBAR_SendNotify(&nmhotitem
.hdr
, infoPtr
, TBN_HOTITEMCHANGE
))
4749 oldBtnPtr
->bHot
= FALSE
;
4750 InvalidateRect(infoPtr
->hwndSelf
, &oldBtnPtr
->rect
, TRUE
);
4752 /* setting disabled buttons as hot fails even if the notify contains the button id */
4753 if (btnPtr
&& (btnPtr
->fsState
& TBSTATE_ENABLED
)) {
4754 btnPtr
->bHot
= TRUE
;
4755 InvalidateRect(infoPtr
->hwndSelf
, &btnPtr
->rect
, TRUE
);
4756 infoPtr
->nHotItem
= nHit
;
4759 infoPtr
->nHotItem
= -1;
4765 TOOLBAR_SetHotItem (HWND hwnd
, WPARAM wParam
)
4767 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
4768 INT nOldHotItem
= infoPtr
->nHotItem
;
4770 TRACE("hwnd = %p, nHit = %d\n", hwnd
, (INT
)wParam
);
4772 if ((INT
)wParam
>= infoPtr
->nNumButtons
)
4773 return infoPtr
->nHotItem
;
4775 if ((INT
)wParam
< 0)
4778 /* NOTE: an application can still remove the hot item even if anchor
4779 * highlighting is enabled */
4781 TOOLBAR_SetHotItemEx(infoPtr
, wParam
, HICF_OTHER
);
4783 if (nOldHotItem
< 0)
4786 return (LRESULT
)nOldHotItem
;
4791 TOOLBAR_SetImageList (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4793 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4794 HIMAGELIST himlTemp
;
4795 HIMAGELIST himl
= (HIMAGELIST
)lParam
;
4796 INT oldButtonWidth
= infoPtr
->nButtonWidth
;
4799 if (infoPtr
->iVersion
>= 5)
4802 himlTemp
= TOOLBAR_InsertImageList(&infoPtr
->himlDef
,
4803 &infoPtr
->cimlDef
, himl
, id
);
4805 infoPtr
->nNumBitmaps
= 0;
4806 for (i
= 0; i
< infoPtr
->cimlDef
; i
++)
4807 infoPtr
->nNumBitmaps
+= ImageList_GetImageCount(infoPtr
->himlDef
[i
]->himl
);
4809 if (!ImageList_GetIconSize(himl
, &infoPtr
->nBitmapWidth
,
4810 &infoPtr
->nBitmapHeight
))
4812 infoPtr
->nBitmapWidth
= 1;
4813 infoPtr
->nBitmapHeight
= 1;
4815 TOOLBAR_CalcToolbar(hwnd
);
4816 if (infoPtr
->nButtonWidth
< oldButtonWidth
)
4817 TOOLBAR_SetButtonSize(hwnd
, MAKELONG(oldButtonWidth
, infoPtr
->nButtonHeight
));
4819 TRACE("hwnd %p, new himl=%p, id = %d, count=%d, bitmap w=%d, h=%d\n",
4820 hwnd
, infoPtr
->himlDef
, id
, infoPtr
->nNumBitmaps
,
4821 infoPtr
->nBitmapWidth
, infoPtr
->nBitmapHeight
);
4823 InvalidateRect(hwnd
, NULL
, TRUE
);
4825 return (LRESULT
)himlTemp
;
4830 TOOLBAR_SetIndent (HWND hwnd
, WPARAM wParam
)
4832 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4834 infoPtr
->nIndent
= (INT
)wParam
;
4838 /* process only on indent changing */
4839 if(infoPtr
->nIndent
!= (INT
)wParam
)
4841 infoPtr
->nIndent
= (INT
)wParam
;
4842 TOOLBAR_CalcToolbar (hwnd
);
4843 InvalidateRect(hwnd
, NULL
, FALSE
);
4851 TOOLBAR_SetInsertMark (HWND hwnd
, LPARAM lParam
)
4853 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4854 TBINSERTMARK
*lptbim
= (TBINSERTMARK
*)lParam
;
4856 TRACE("hwnd = %p, lptbim = { %d, 0x%08x}\n", hwnd
, lptbim
->iButton
, lptbim
->dwFlags
);
4858 if ((lptbim
->dwFlags
& ~TBIMHT_AFTER
) != 0)
4860 FIXME("Unrecognized flag(s): 0x%08x\n", (lptbim
->dwFlags
& ~TBIMHT_AFTER
));
4864 if ((lptbim
->iButton
== -1) ||
4865 ((lptbim
->iButton
< infoPtr
->nNumButtons
) &&
4866 (lptbim
->iButton
>= 0)))
4868 infoPtr
->tbim
= *lptbim
;
4869 /* FIXME: don't need to update entire toolbar */
4870 InvalidateRect(hwnd
, NULL
, TRUE
);
4873 ERR("Invalid button index %d\n", lptbim
->iButton
);
4880 TOOLBAR_SetInsertMarkColor (HWND hwnd
, LPARAM lParam
)
4882 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4884 infoPtr
->clrInsertMark
= (COLORREF
)lParam
;
4886 /* FIXME: don't need to update entire toolbar */
4887 InvalidateRect(hwnd
, NULL
, TRUE
);
4894 TOOLBAR_SetMaxTextRows (HWND hwnd
, WPARAM wParam
)
4896 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4898 infoPtr
->nMaxTextRows
= (INT
)wParam
;
4900 TOOLBAR_CalcToolbar(hwnd
);
4905 /* MSDN gives slightly wrong info on padding.
4906 * 1. It is not only used on buttons with the BTNS_AUTOSIZE style
4907 * 2. It is not used to create a blank area between the edge of the button
4908 * and the text or image if TBSTYLE_LIST is set. It is used to control
4909 * the gap between the image and text.
4910 * 3. It is not applied to both sides. If TBSTYLE_LIST is set it is used
4911 * to control the bottom and right borders [with the border being
4912 * szPadding.cx - (GetSystemMetrics(SM_CXEDGE)+1)], otherwise the padding
4913 * is shared evenly on both sides of the button.
4914 * See blueprints in comments above TOOLBAR_MeasureButton for more info.
4917 TOOLBAR_SetPadding (HWND hwnd
, LPARAM lParam
)
4919 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4922 oldPad
= MAKELONG(infoPtr
->szPadding
.cx
, infoPtr
->szPadding
.cy
);
4923 infoPtr
->szPadding
.cx
= min(LOWORD((DWORD
)lParam
), GetSystemMetrics(SM_CXEDGE
));
4924 infoPtr
->szPadding
.cy
= min(HIWORD((DWORD
)lParam
), GetSystemMetrics(SM_CYEDGE
));
4925 TRACE("cx=%d, cy=%d\n",
4926 infoPtr
->szPadding
.cx
, infoPtr
->szPadding
.cy
);
4927 return (LRESULT
) oldPad
;
4932 TOOLBAR_SetParent (HWND hwnd
, WPARAM wParam
)
4934 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4939 hwndOldNotify
= infoPtr
->hwndNotify
;
4940 infoPtr
->hwndNotify
= (HWND
)wParam
;
4942 return (LRESULT
)hwndOldNotify
;
4947 TOOLBAR_SetRows (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
4949 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
4950 LPRECT lprc
= (LPRECT
)lParam
;
4951 int rows
= LOWORD(wParam
);
4952 BOOL bLarger
= HIWORD(wParam
);
4956 TRACE("Setting rows to %d (%d)\n", rows
, bLarger
);
4958 if(infoPtr
->nRows
!= rows
)
4960 TBUTTON_INFO
*btnPtr
= infoPtr
->buttons
;
4961 int curColumn
= 0; /* Current column */
4962 int curRow
= 0; /* Current row */
4963 int hidden
= 0; /* Number of hidden buttons */
4964 int seps
= 0; /* Number of separators */
4965 int idealWrap
= 0; /* Ideal wrap point */
4970 Calculate new size and wrap points - Under windows, setrows will
4971 change the dimensions if needed to show the number of requested
4972 rows (if CCS_NORESIZE is set), or will take up the whole window
4973 (if no CCS_NORESIZE).
4975 Basic algorithm - If N buttons, and y rows requested, each row
4976 contains N/y buttons.
4978 FIXME: Handling of separators not obvious from testing results
4979 FIXME: Take width of window into account?
4982 /* Loop through the buttons one by one counting key items */
4983 for (i
= 0; i
< infoPtr
->nNumButtons
; i
++ )
4985 btnPtr
[i
].fsState
&= ~TBSTATE_WRAP
;
4986 if (btnPtr
[i
].fsState
& TBSTATE_HIDDEN
)
4988 else if (btnPtr
[i
].fsStyle
& BTNS_SEP
)
4992 /* FIXME: Separators make this quite complex */
4993 if (seps
) FIXME("Separators unhandled\n");
4995 /* Round up so more per line, i.e., less rows */
4996 idealWrap
= (infoPtr
->nNumButtons
- hidden
+ (rows
-1)) / rows
;
4998 /* Calculate ideal wrap point if we are allowed to grow, but cannot
4999 achieve the requested number of rows. */
5000 if (bLarger
&& idealWrap
> 1)
5002 int resRows
= (infoPtr
->nNumButtons
+ (idealWrap
-1)) / idealWrap
;
5003 int moreRows
= (infoPtr
->nNumButtons
+ (idealWrap
-2)) / (idealWrap
-1);
5005 if (resRows
< rows
&& moreRows
> rows
)
5008 TRACE("Changing idealWrap due to bLarger (now %d)\n", idealWrap
);
5012 curColumn
= curRow
= 0;
5014 TRACE("Trying to wrap at %d (%d,%d,%d)\n", idealWrap
,
5015 infoPtr
->nNumButtons
, hidden
, rows
);
5017 for (i
= 0; i
< infoPtr
->nNumButtons
; i
++ )
5019 if (btnPtr
[i
].fsState
& TBSTATE_HIDDEN
)
5022 /* Step on, wrap if necessary or flag next to wrap */
5031 if (curColumn
> (idealWrap
-1)) {
5033 btnPtr
[i
].fsState
|= TBSTATE_WRAP
;
5037 TRACE("Result - %d rows\n", curRow
+ 1);
5039 /* recalculate toolbar */
5040 TOOLBAR_CalcToolbar (hwnd
);
5042 /* Resize if necessary (Only if NORESIZE is set - odd, but basically
5043 if NORESIZE is NOT set, then the toolbar will always be resized to
5044 take up the whole window. With it set, sizing needs to be manual. */
5045 if (infoPtr
->dwStyle
& CCS_NORESIZE
) {
5046 SetWindowPos(hwnd
, NULL
, 0, 0,
5047 infoPtr
->rcBound
.right
- infoPtr
->rcBound
.left
,
5048 infoPtr
->rcBound
.bottom
- infoPtr
->rcBound
.top
,
5052 /* repaint toolbar */
5053 InvalidateRect(hwnd
, NULL
, TRUE
);
5056 /* return bounding rectangle */
5058 lprc
->left
= infoPtr
->rcBound
.left
;
5059 lprc
->right
= infoPtr
->rcBound
.right
;
5060 lprc
->top
= infoPtr
->rcBound
.top
;
5061 lprc
->bottom
= infoPtr
->rcBound
.bottom
;
5069 TOOLBAR_SetState (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5071 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5072 TBUTTON_INFO
*btnPtr
;
5075 nIndex
= TOOLBAR_GetButtonIndex (infoPtr
, (INT
)wParam
, FALSE
);
5079 btnPtr
= &infoPtr
->buttons
[nIndex
];
5081 /* if hidden state has changed the invalidate entire window and recalc */
5082 if ((btnPtr
->fsState
& TBSTATE_HIDDEN
) != (LOWORD(lParam
) & TBSTATE_HIDDEN
)) {
5083 btnPtr
->fsState
= LOWORD(lParam
);
5084 TOOLBAR_CalcToolbar (hwnd
);
5085 InvalidateRect(hwnd
, 0, TRUE
);
5089 /* process state changing if current state doesn't match new state */
5090 if(btnPtr
->fsState
!= LOWORD(lParam
))
5092 btnPtr
->fsState
= LOWORD(lParam
);
5093 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
5101 TOOLBAR_SetStyle (HWND hwnd
, LPARAM lParam
)
5103 SetWindowLongW(hwnd
, GWL_STYLE
, lParam
);
5109 static inline LRESULT
5110 TOOLBAR_SetToolTips (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5112 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5114 TRACE("hwnd=%p, hwndTooltip=%p, lParam=0x%lx\n", hwnd
, (HWND
)wParam
, lParam
);
5116 infoPtr
->hwndToolTip
= (HWND
)wParam
;
5122 TOOLBAR_SetUnicodeFormat (HWND hwnd
, WPARAM wParam
)
5124 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5127 TRACE("%s hwnd=%p\n",
5128 ((BOOL
)wParam
) ? "TRUE" : "FALSE", hwnd
);
5130 bTemp
= infoPtr
->bUnicode
;
5131 infoPtr
->bUnicode
= (BOOL
)wParam
;
5138 TOOLBAR_GetColorScheme (HWND hwnd
, LPCOLORSCHEME lParam
)
5140 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5142 lParam
->clrBtnHighlight
= (infoPtr
->clrBtnHighlight
== CLR_DEFAULT
) ?
5143 comctl32_color
.clrBtnHighlight
:
5144 infoPtr
->clrBtnHighlight
;
5145 lParam
->clrBtnShadow
= (infoPtr
->clrBtnShadow
== CLR_DEFAULT
) ?
5146 comctl32_color
.clrBtnShadow
: infoPtr
->clrBtnShadow
;
5152 TOOLBAR_SetColorScheme (HWND hwnd
, const COLORSCHEME
*lParam
)
5154 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5156 TRACE("new colors Hl=%x Shd=%x, old colors Hl=%x Shd=%x\n",
5157 lParam
->clrBtnHighlight
, lParam
->clrBtnShadow
,
5158 infoPtr
->clrBtnHighlight
, infoPtr
->clrBtnShadow
);
5160 infoPtr
->clrBtnHighlight
= lParam
->clrBtnHighlight
;
5161 infoPtr
->clrBtnShadow
= lParam
->clrBtnShadow
;
5162 InvalidateRect(hwnd
, NULL
, TRUE
);
5168 TOOLBAR_SetVersion (HWND hwnd
, INT iVersion
)
5170 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5171 INT iOldVersion
= infoPtr
->iVersion
;
5173 infoPtr
->iVersion
= iVersion
;
5175 if (infoPtr
->iVersion
>= 5)
5176 TOOLBAR_SetUnicodeFormat(hwnd
, TRUE
);
5183 TOOLBAR_GetStringA (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5185 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
5186 WORD iString
= HIWORD(wParam
);
5187 WORD buffersize
= LOWORD(wParam
);
5188 LPSTR str
= (LPSTR
)lParam
;
5191 TRACE("hwnd=%p, iString=%d, buffersize=%d, string=%p\n", hwnd
, iString
, buffersize
, str
);
5193 if (iString
< infoPtr
->nNumStrings
)
5195 ret
= WideCharToMultiByte(CP_ACP
, 0, infoPtr
->strings
[iString
], -1, str
, buffersize
, NULL
, NULL
);
5198 TRACE("returning %s\n", debugstr_a(str
));
5201 WARN("String index %d out of range (largest is %d)\n", iString
, infoPtr
->nNumStrings
- 1);
5208 TOOLBAR_GetStringW (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5210 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
5211 WORD iString
= HIWORD(wParam
);
5212 WORD len
= LOWORD(wParam
)/sizeof(WCHAR
) - 1;
5213 LPWSTR str
= (LPWSTR
)lParam
;
5216 TRACE("hwnd=%p, iString=%d, buffersize=%d, string=%p\n", hwnd
, iString
, LOWORD(wParam
), str
);
5218 if (iString
< infoPtr
->nNumStrings
)
5220 len
= min(len
, strlenW(infoPtr
->strings
[iString
]));
5221 ret
= (len
+1)*sizeof(WCHAR
);
5224 memcpy(str
, infoPtr
->strings
[iString
], ret
);
5229 TRACE("returning %s\n", debugstr_w(str
));
5232 WARN("String index %d out of range (largest is %d)\n", iString
, infoPtr
->nNumStrings
- 1);
5237 /* UNDOCUMENTED MESSAGE: This appears to set some kind of size. Perhaps it
5238 * is the maximum size of the toolbar? */
5239 static LRESULT
TOOLBAR_Unkwn45D(HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5241 SIZE
* pSize
= (SIZE
*)lParam
;
5242 FIXME("hwnd=%p, wParam=0x%08lx, size.cx=%d, size.cy=%d stub!\n", hwnd
, wParam
, pSize
->cx
, pSize
->cy
);
5247 /* This is an extended version of the TB_SETHOTITEM message. It allows the
5248 * caller to specify a reason why the hot item changed (rather than just the
5249 * HICF_OTHER that TB_SETHOTITEM sends). */
5251 TOOLBAR_SetHotItem2 (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5253 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
5254 INT nOldHotItem
= infoPtr
->nHotItem
;
5256 TRACE("old item=%d, new item=%d, flags=%08x\n",
5257 nOldHotItem
, infoPtr
->nHotItem
, (DWORD
)lParam
);
5259 if ((INT
) wParam
< 0 || (INT
)wParam
> infoPtr
->nNumButtons
)
5262 /* NOTE: an application can still remove the hot item even if anchor
5263 * highlighting is enabled */
5265 TOOLBAR_SetHotItemEx(infoPtr
, wParam
, lParam
);
5269 return (nOldHotItem
< 0) ? -1 : (LRESULT
)nOldHotItem
;
5272 /* Sets the toolbar global iListGap parameter which controls the amount of
5273 * spacing between the image and the text of buttons for TBSTYLE_LIST
5275 static LRESULT
TOOLBAR_SetListGap(HWND hwnd
, WPARAM wParam
)
5277 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
5279 TRACE("hwnd=%p iListGap=%ld\n", hwnd
, wParam
);
5281 infoPtr
->iListGap
= (INT
)wParam
;
5283 InvalidateRect(hwnd
, NULL
, TRUE
);
5288 /* Returns the number of maximum number of image lists associated with the
5289 * various states. */
5290 static LRESULT
TOOLBAR_GetImageListCount(HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5292 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
5294 TRACE("hwnd=%p wParam %08lx lParam %08lx\n", hwnd
, wParam
, lParam
);
5296 return max(infoPtr
->cimlDef
, max(infoPtr
->cimlHot
, infoPtr
->cimlDis
));
5300 TOOLBAR_GetIdealSize (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5302 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5303 LPSIZE lpsize
= (LPSIZE
)lParam
;
5309 * Testing shows the following:
5310 * wParam = 0 adjust cx value
5311 * = 1 set cy value to max size.
5312 * lParam pointer to SIZE structure
5315 TRACE("wParam %ld, lParam 0x%08lx -> 0x%08x 0x%08x\n",
5316 wParam
, lParam
, lpsize
->cx
, lpsize
->cy
);
5320 if (lpsize
->cx
== -1) {
5321 /* **** this is wrong, native measures each button and sets it */
5322 lpsize
->cx
= infoPtr
->rcBound
.right
- infoPtr
->rcBound
.left
;
5324 else if(HIWORD(lpsize
->cx
)) {
5326 HWND hwndParent
= GetParent(hwnd
);
5328 GetWindowRect(hwnd
, &rc
);
5329 MapWindowPoints(0, hwndParent
, (LPPOINT
)&rc
, 2);
5330 TRACE("mapped to (%s)\n", wine_dbgstr_rect(&rc
));
5331 lpsize
->cx
= max(rc
.right
-rc
.left
,
5332 infoPtr
->rcBound
.right
- infoPtr
->rcBound
.left
);
5335 lpsize
->cx
= infoPtr
->rcBound
.right
- infoPtr
->rcBound
.left
;
5339 lpsize
->cy
= infoPtr
->rcBound
.bottom
- infoPtr
->rcBound
.top
;
5342 FIXME("Unknown wParam %ld\n", wParam
);
5345 TRACE("set to -> 0x%08x 0x%08x\n",
5346 lpsize
->cx
, lpsize
->cy
);
5350 static LRESULT
TOOLBAR_Unkwn464(HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5352 FIXME("hwnd=%p wParam %08lx lParam %08lx\n", hwnd
, wParam
, lParam
);
5354 InvalidateRect(hwnd
, NULL
, TRUE
);
5360 TOOLBAR_Create (HWND hwnd
, LPARAM lParam
)
5362 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5363 DWORD dwStyle
= GetWindowLongW (hwnd
, GWL_STYLE
);
5366 TRACE("hwnd = %p\n", hwnd
);
5368 /* initialize info structure */
5369 infoPtr
->nButtonWidth
= 23;
5370 infoPtr
->nButtonHeight
= 22;
5371 infoPtr
->nBitmapHeight
= 16;
5372 infoPtr
->nBitmapWidth
= 16;
5374 infoPtr
->nMaxTextRows
= 1;
5375 infoPtr
->cxMin
= -1;
5376 infoPtr
->cxMax
= -1;
5377 infoPtr
->nNumBitmaps
= 0;
5378 infoPtr
->nNumStrings
= 0;
5380 infoPtr
->bCaptured
= FALSE
;
5381 infoPtr
->nButtonDown
= -1;
5382 infoPtr
->nButtonDrag
= -1;
5383 infoPtr
->nOldHit
= -1;
5384 infoPtr
->nHotItem
= -1;
5385 infoPtr
->hwndNotify
= ((LPCREATESTRUCTW
)lParam
)->hwndParent
;
5386 infoPtr
->dwDTFlags
= (dwStyle
& TBSTYLE_LIST
) ? DT_LEFT
| DT_VCENTER
| DT_SINGLELINE
| DT_END_ELLIPSIS
: DT_CENTER
| DT_END_ELLIPSIS
;
5387 infoPtr
->bAnchor
= FALSE
; /* no anchor highlighting */
5388 infoPtr
->bDragOutSent
= FALSE
;
5389 infoPtr
->iVersion
= 0;
5390 infoPtr
->hwndSelf
= hwnd
;
5391 infoPtr
->bDoRedraw
= TRUE
;
5392 infoPtr
->clrBtnHighlight
= CLR_DEFAULT
;
5393 infoPtr
->clrBtnShadow
= CLR_DEFAULT
;
5394 infoPtr
->szPadding
.cx
= DEFPAD_CX
;
5395 infoPtr
->szPadding
.cy
= DEFPAD_CY
;
5396 infoPtr
->iListGap
= DEFLISTGAP
;
5397 infoPtr
->iTopMargin
= default_top_margin(infoPtr
);
5398 infoPtr
->dwStyle
= dwStyle
;
5399 infoPtr
->tbim
.iButton
= -1;
5400 GetClientRect(hwnd
, &infoPtr
->client_rect
);
5401 infoPtr
->bUnicode
= infoPtr
->hwndNotify
&&
5402 (NFR_UNICODE
== SendMessageW(hwnd
, WM_NOTIFYFORMAT
, (WPARAM
)hwnd
, (LPARAM
)NF_REQUERY
));
5403 infoPtr
->hwndToolTip
= NULL
; /* if needed the tooltip control will be created after a WM_MOUSEMOVE */
5405 SystemParametersInfoW (SPI_GETICONTITLELOGFONT
, 0, &logFont
, 0);
5406 infoPtr
->hFont
= infoPtr
->hDefaultFont
= CreateFontIndirectW (&logFont
);
5408 OpenThemeData (hwnd
, themeClass
);
5410 TOOLBAR_CheckStyle (hwnd
, dwStyle
);
5417 TOOLBAR_Destroy (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5419 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5421 /* delete tooltip control */
5422 if (infoPtr
->hwndToolTip
)
5423 DestroyWindow (infoPtr
->hwndToolTip
);
5425 /* delete temporary buffer for tooltip text */
5426 Free (infoPtr
->pszTooltipText
);
5427 Free (infoPtr
->bitmaps
); /* bitmaps list */
5429 /* delete button data */
5430 Free (infoPtr
->buttons
);
5432 /* delete strings */
5433 if (infoPtr
->strings
) {
5435 for (i
= 0; i
< infoPtr
->nNumStrings
; i
++)
5436 Free (infoPtr
->strings
[i
]);
5438 Free (infoPtr
->strings
);
5441 /* destroy internal image list */
5442 if (infoPtr
->himlInt
)
5443 ImageList_Destroy (infoPtr
->himlInt
);
5445 TOOLBAR_DeleteImageList(&infoPtr
->himlDef
, &infoPtr
->cimlDef
);
5446 TOOLBAR_DeleteImageList(&infoPtr
->himlDis
, &infoPtr
->cimlDis
);
5447 TOOLBAR_DeleteImageList(&infoPtr
->himlHot
, &infoPtr
->cimlHot
);
5449 /* delete default font */
5450 DeleteObject (infoPtr
->hDefaultFont
);
5452 CloseThemeData (GetWindowTheme (hwnd
));
5454 /* free toolbar info data */
5456 SetWindowLongPtrW (hwnd
, 0, 0);
5463 TOOLBAR_EraseBackground (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5465 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5466 NMTBCUSTOMDRAW tbcd
;
5469 HTHEME theme
= GetWindowTheme (hwnd
);
5470 DWORD dwEraseCustDraw
= 0;
5472 /* the app has told us not to redraw the toolbar */
5473 if (!infoPtr
->bDoRedraw
)
5476 if (infoPtr
->dwStyle
& TBSTYLE_CUSTOMERASE
) {
5477 ZeroMemory (&tbcd
, sizeof(NMTBCUSTOMDRAW
));
5478 tbcd
.nmcd
.dwDrawStage
= CDDS_PREERASE
;
5479 tbcd
.nmcd
.hdc
= (HDC
)wParam
;
5480 ntfret
= TOOLBAR_SendNotify (&tbcd
.nmcd
.hdr
, infoPtr
, NM_CUSTOMDRAW
);
5481 dwEraseCustDraw
= ntfret
& 0xffff;
5483 /* FIXME: in general the return flags *can* be or'ed together */
5484 switch (dwEraseCustDraw
)
5486 case CDRF_DODEFAULT
:
5488 case CDRF_SKIPDEFAULT
:
5491 FIXME("[%p] response %d not handled to NM_CUSTOMDRAW (CDDS_PREERASE)\n",
5496 /* If the toolbar is "transparent" then pass the WM_ERASEBKGND up
5497 * to my parent for processing.
5499 if (theme
|| (infoPtr
->dwStyle
& TBSTYLE_TRANSPARENT
)) {
5501 HDC hdc
= (HDC
)wParam
;
5506 parent
= GetParent(hwnd
);
5507 MapWindowPoints(hwnd
, parent
, &pt
, 1);
5508 OffsetWindowOrgEx (hdc
, pt
.x
, pt
.y
, &ptorig
);
5509 ret
= SendMessageW (parent
, WM_ERASEBKGND
, wParam
, lParam
);
5510 SetWindowOrgEx (hdc
, ptorig
.x
, ptorig
.y
, 0);
5513 ret
= DefWindowProcW (hwnd
, WM_ERASEBKGND
, wParam
, lParam
);
5515 if (dwEraseCustDraw
& CDRF_NOTIFYPOSTERASE
) {
5516 ZeroMemory (&tbcd
, sizeof(NMTBCUSTOMDRAW
));
5517 tbcd
.nmcd
.dwDrawStage
= CDDS_POSTERASE
;
5518 tbcd
.nmcd
.hdc
= (HDC
)wParam
;
5519 ntfret
= TOOLBAR_SendNotify (&tbcd
.nmcd
.hdr
, infoPtr
, NM_CUSTOMDRAW
);
5520 dwEraseCustDraw
= ntfret
& 0xffff;
5521 switch (dwEraseCustDraw
)
5523 case CDRF_DODEFAULT
:
5525 case CDRF_SKIPDEFAULT
:
5528 FIXME("[%p] response %d not handled to NM_CUSTOMDRAW (CDDS_POSTERASE)\n",
5537 TOOLBAR_GetFont (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5539 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5541 return (LRESULT
)infoPtr
->hFont
;
5546 TOOLBAR_SetRelativeHotItem(TOOLBAR_INFO
*infoPtr
, INT iDirection
, DWORD dwReason
)
5549 INT nNewHotItem
= infoPtr
->nHotItem
;
5551 for (i
= 0; i
< infoPtr
->nNumButtons
; i
++)
5554 if ((nNewHotItem
+ iDirection
< 0) ||
5555 (nNewHotItem
+ iDirection
>= infoPtr
->nNumButtons
))
5557 NMTBWRAPHOTITEM nmtbwhi
;
5558 nmtbwhi
.idNew
= infoPtr
->buttons
[nNewHotItem
].idCommand
;
5559 nmtbwhi
.iDirection
= iDirection
;
5560 nmtbwhi
.dwReason
= dwReason
;
5562 if (TOOLBAR_SendNotify(&nmtbwhi
.hdr
, infoPtr
, TBN_WRAPHOTITEM
))
5566 nNewHotItem
+= iDirection
;
5567 nNewHotItem
= (nNewHotItem
+ infoPtr
->nNumButtons
) % infoPtr
->nNumButtons
;
5569 if ((infoPtr
->buttons
[nNewHotItem
].fsState
& TBSTATE_ENABLED
) &&
5570 !(infoPtr
->buttons
[nNewHotItem
].fsStyle
& BTNS_SEP
))
5572 TOOLBAR_SetHotItemEx(infoPtr
, nNewHotItem
, dwReason
);
5579 TOOLBAR_KeyDown (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5581 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5584 nmkey
.nVKey
= (UINT
)wParam
;
5585 nmkey
.uFlags
= HIWORD(lParam
);
5587 if (TOOLBAR_SendNotify(&nmkey
.hdr
, infoPtr
, NM_KEYDOWN
))
5588 return DefWindowProcW(hwnd
, WM_KEYDOWN
, wParam
, lParam
);
5590 switch ((UINT
)wParam
)
5594 TOOLBAR_SetRelativeHotItem(infoPtr
, -1, HICF_ARROWKEYS
);
5598 TOOLBAR_SetRelativeHotItem(infoPtr
, 1, HICF_ARROWKEYS
);
5602 if ((infoPtr
->nHotItem
>= 0) &&
5603 (infoPtr
->buttons
[infoPtr
->nHotItem
].fsState
& TBSTATE_ENABLED
))
5605 SendMessageW (infoPtr
->hwndNotify
, WM_COMMAND
,
5606 MAKEWPARAM(infoPtr
->buttons
[infoPtr
->nHotItem
].idCommand
, BN_CLICKED
),
5617 TOOLBAR_LButtonDblClk (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5622 pt
.x
= (short)LOWORD(lParam
);
5623 pt
.y
= (short)HIWORD(lParam
);
5624 nHit
= TOOLBAR_InternalHitTest (hwnd
, &pt
);
5627 TOOLBAR_LButtonDown (hwnd
, wParam
, lParam
);
5628 else if (GetWindowLongW (hwnd
, GWL_STYLE
) & CCS_ADJUSTABLE
)
5629 TOOLBAR_Customize (hwnd
);
5636 TOOLBAR_LButtonDown (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5638 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5639 TBUTTON_INFO
*btnPtr
;
5644 BOOL bDragKeyPressed
;
5648 if (infoPtr
->dwStyle
& TBSTYLE_ALTDRAG
)
5649 bDragKeyPressed
= (GetKeyState(VK_MENU
) < 0);
5651 bDragKeyPressed
= (wParam
& MK_SHIFT
);
5653 if (infoPtr
->hwndToolTip
)
5654 TOOLBAR_RelayEvent (infoPtr
->hwndToolTip
, hwnd
,
5655 WM_LBUTTONDOWN
, wParam
, lParam
);
5657 pt
.x
= (short)LOWORD(lParam
);
5658 pt
.y
= (short)HIWORD(lParam
);
5659 nHit
= TOOLBAR_InternalHitTest (hwnd
, &pt
);
5661 btnPtr
= &infoPtr
->buttons
[nHit
];
5663 if ((nHit
>= 0) && bDragKeyPressed
&& (infoPtr
->dwStyle
& CCS_ADJUSTABLE
))
5665 infoPtr
->nButtonDrag
= nHit
;
5668 /* If drag cursor has not been loaded, load it.
5669 * Note: it doesn't need to be freed */
5671 hCursorDrag
= LoadCursorW(COMCTL32_hModule
, (LPCWSTR
)IDC_MOVEBUTTON
);
5672 SetCursor(hCursorDrag
);
5677 infoPtr
->nOldHit
= nHit
;
5679 CopyRect(&arrowRect
, &btnPtr
->rect
);
5680 arrowRect
.left
= max(btnPtr
->rect
.left
, btnPtr
->rect
.right
- DDARROW_WIDTH
);
5682 /* for EX_DRAWDDARROWS style, click must be in the drop-down arrow rect */
5683 if ((btnPtr
->fsState
& TBSTATE_ENABLED
) &&
5684 ((btnPtr
->fsStyle
& BTNS_WHOLEDROPDOWN
) ||
5685 ((btnPtr
->fsStyle
& BTNS_DROPDOWN
) &&
5686 ((TOOLBAR_HasDropDownArrows(infoPtr
->dwExStyle
) && PtInRect(&arrowRect
, pt
)) ||
5687 (!TOOLBAR_HasDropDownArrows(infoPtr
->dwExStyle
))))))
5691 /* draw in pressed state */
5692 if (btnPtr
->fsStyle
& BTNS_WHOLEDROPDOWN
)
5693 btnPtr
->fsState
|= TBSTATE_PRESSED
;
5695 btnPtr
->bDropDownPressed
= TRUE
;
5696 RedrawWindow(hwnd
,&btnPtr
->rect
,0,
5697 RDW_ERASE
|RDW_INVALIDATE
|RDW_UPDATENOW
);
5699 memset(&nmtb
, 0, sizeof(nmtb
));
5700 nmtb
.iItem
= btnPtr
->idCommand
;
5701 nmtb
.rcButton
= btnPtr
->rect
;
5702 res
= TOOLBAR_SendNotify ((NMHDR
*) &nmtb
, infoPtr
,
5704 TRACE("TBN_DROPDOWN responded with %ld\n", res
);
5706 if (res
!= TBDDRET_TREATPRESSED
)
5710 /* redraw button in unpressed state */
5711 if (btnPtr
->fsStyle
& BTNS_WHOLEDROPDOWN
)
5712 btnPtr
->fsState
&= ~TBSTATE_PRESSED
;
5714 btnPtr
->bDropDownPressed
= FALSE
;
5715 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
5717 /* find and set hot item
5718 * NOTE: native doesn't do this, but that is a bug */
5720 ScreenToClient(hwnd
, &pt
);
5721 nHit
= TOOLBAR_InternalHitTest(hwnd
, &pt
);
5722 if (!infoPtr
->bAnchor
|| (nHit
>= 0))
5723 TOOLBAR_SetHotItemEx(infoPtr
, nHit
, HICF_MOUSE
| HICF_LMOUSE
);
5725 /* remove any left mouse button down or double-click messages
5726 * so that we can get a toggle effect on the button */
5727 while (PeekMessageW(&msg
, hwnd
, WM_LBUTTONDOWN
, WM_LBUTTONDOWN
, PM_REMOVE
) ||
5728 PeekMessageW(&msg
, hwnd
, WM_LBUTTONDBLCLK
, WM_LBUTTONDBLCLK
, PM_REMOVE
))
5733 /* otherwise drop through and process as pushed */
5735 infoPtr
->bCaptured
= TRUE
;
5736 infoPtr
->nButtonDown
= nHit
;
5737 infoPtr
->bDragOutSent
= FALSE
;
5739 btnPtr
->fsState
|= TBSTATE_PRESSED
;
5741 TOOLBAR_SetHotItemEx(infoPtr
, nHit
, HICF_MOUSE
| HICF_LMOUSE
);
5743 if (btnPtr
->fsState
& TBSTATE_ENABLED
)
5744 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
5751 memset(&nmtb
, 0, sizeof(nmtb
));
5752 nmtb
.iItem
= btnPtr
->idCommand
;
5753 TOOLBAR_SendNotify((NMHDR
*)&nmtb
, infoPtr
, TBN_BEGINDRAG
);
5756 nmmouse
.dwHitInfo
= nHit
;
5758 /* !!! Undocumented - sends NM_LDOWN with the NMMOUSE structure. */
5760 nmmouse
.dwItemSpec
= -1;
5763 nmmouse
.dwItemSpec
= infoPtr
->buttons
[nmmouse
.dwHitInfo
].idCommand
;
5764 nmmouse
.dwItemData
= infoPtr
->buttons
[nmmouse
.dwHitInfo
].dwData
;
5767 ClientToScreen(hwnd
, &pt
);
5770 if (!TOOLBAR_SendNotify(&nmmouse
.hdr
, infoPtr
, NM_LDOWN
))
5771 return DefWindowProcW(hwnd
, WM_LBUTTONDOWN
, wParam
, lParam
);
5777 TOOLBAR_LButtonUp (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5779 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5780 TBUTTON_INFO
*btnPtr
;
5788 if (infoPtr
->hwndToolTip
)
5789 TOOLBAR_RelayEvent (infoPtr
->hwndToolTip
, hwnd
,
5790 WM_LBUTTONUP
, wParam
, lParam
);
5792 pt
.x
= (short)LOWORD(lParam
);
5793 pt
.y
= (short)HIWORD(lParam
);
5794 nHit
= TOOLBAR_InternalHitTest (hwnd
, &pt
);
5796 if (!infoPtr
->bAnchor
|| (nHit
>= 0))
5797 TOOLBAR_SetHotItemEx(infoPtr
, nHit
, HICF_MOUSE
| HICF_LMOUSE
);
5799 if (infoPtr
->nButtonDrag
>= 0) {
5803 btnPtr
= &infoPtr
->buttons
[infoPtr
->nButtonDrag
];
5806 SetCursor(LoadCursorW(NULL
, (LPCWSTR
)IDC_ARROW
));
5808 GetClientRect(hwnd
, &rcClient
);
5809 if (PtInRect(&rcClient
, pt
))
5816 else if ((nHit
== -1) && PtInRect(&infoPtr
->buttons
[-nHit
].rect
, pt
))
5819 if (nButton
== infoPtr
->nButtonDrag
)
5821 /* if the button is moved sightly left and we have a
5822 * separator there then remove it */
5823 if (pt
.x
< (btnPtr
->rect
.left
+ (btnPtr
->rect
.right
- btnPtr
->rect
.left
)/2))
5825 if ((nButton
> 0) && (infoPtr
->buttons
[nButton
-1].fsStyle
& BTNS_SEP
))
5826 TOOLBAR_DeleteButton(hwnd
, nButton
- 1);
5828 else /* else insert a separator before the dragged button */
5831 memset(&tbb
, 0, sizeof(tbb
));
5832 tbb
.fsStyle
= BTNS_SEP
;
5834 TOOLBAR_InsertButtonT(hwnd
, nButton
, (LPARAM
)&tbb
, TRUE
);
5841 if ((infoPtr
->nNumButtons
> 0) && (pt
.x
< infoPtr
->buttons
[0].rect
.left
))
5842 TOOLBAR_MoveButton(hwnd
, infoPtr
->nButtonDrag
, 0);
5844 TOOLBAR_MoveButton(hwnd
, infoPtr
->nButtonDrag
, infoPtr
->nNumButtons
);
5847 TOOLBAR_MoveButton(hwnd
, infoPtr
->nButtonDrag
, nButton
);
5852 TRACE("button %d dragged out of toolbar\n", infoPtr
->nButtonDrag
);
5853 TOOLBAR_DeleteButton(hwnd
, (WPARAM
)infoPtr
->nButtonDrag
);
5856 /* button under cursor changed so need to re-set hot item */
5857 TOOLBAR_SetHotItemEx(infoPtr
, nHit
, HICF_MOUSE
| HICF_LMOUSE
);
5858 infoPtr
->nButtonDrag
= -1;
5860 TOOLBAR_SendNotify(&hdr
, infoPtr
, TBN_TOOLBARCHANGE
);
5862 else if (infoPtr
->nButtonDown
>= 0) {
5863 btnPtr
= &infoPtr
->buttons
[infoPtr
->nButtonDown
];
5864 btnPtr
->fsState
&= ~TBSTATE_PRESSED
;
5866 if (btnPtr
->fsStyle
& BTNS_CHECK
) {
5867 if (btnPtr
->fsStyle
& BTNS_GROUP
) {
5868 nOldIndex
= TOOLBAR_GetCheckedGroupButtonIndex (infoPtr
,
5870 if ((nOldIndex
!= nHit
) &&
5872 infoPtr
->buttons
[nOldIndex
].fsState
&= ~TBSTATE_CHECKED
;
5873 btnPtr
->fsState
|= TBSTATE_CHECKED
;
5876 if (btnPtr
->fsState
& TBSTATE_CHECKED
)
5877 btnPtr
->fsState
&= ~TBSTATE_CHECKED
;
5879 btnPtr
->fsState
|= TBSTATE_CHECKED
;
5883 if (nOldIndex
!= -1)
5884 InvalidateRect(hwnd
, &infoPtr
->buttons
[nOldIndex
].rect
, TRUE
);
5887 * now we can ReleaseCapture, which triggers CAPTURECHANGED msg,
5888 * that resets bCaptured and btn TBSTATE_PRESSED flags,
5889 * and obliterates nButtonDown and nOldHit (see TOOLBAR_CaptureChanged)
5891 if ((infoPtr
->bCaptured
) && (infoPtr
->nButtonDown
>= 0))
5893 infoPtr
->nButtonDown
= -1;
5895 /* Issue NM_RELEASEDCAPTURE to parent to let him know it is released */
5896 TOOLBAR_SendNotify (&hdr
, infoPtr
,
5897 NM_RELEASEDCAPTURE
);
5899 /* native issues TBN_ENDDRAG here, if _LBUTTONDOWN issued the
5902 memset(&nmtb
, 0, sizeof(nmtb
));
5903 nmtb
.iItem
= btnPtr
->idCommand
;
5904 TOOLBAR_SendNotify ((NMHDR
*) &nmtb
, infoPtr
,
5907 if (btnPtr
->fsState
& TBSTATE_ENABLED
)
5909 SendMessageW (infoPtr
->hwndNotify
, WM_COMMAND
,
5910 MAKEWPARAM(infoPtr
->buttons
[nHit
].idCommand
, BN_CLICKED
), (LPARAM
)hwnd
);
5912 /* In case we have just been destroyed... */
5918 /* !!! Undocumented - toolbar at 4.71 level and above sends
5919 * NM_CLICK with the NMMOUSE structure. */
5920 nmmouse
.dwHitInfo
= nHit
;
5923 nmmouse
.dwItemSpec
= -1;
5926 nmmouse
.dwItemSpec
= infoPtr
->buttons
[nmmouse
.dwHitInfo
].idCommand
;
5927 nmmouse
.dwItemData
= infoPtr
->buttons
[nmmouse
.dwHitInfo
].dwData
;
5930 ClientToScreen(hwnd
, &pt
);
5933 if (!TOOLBAR_SendNotify((LPNMHDR
)&nmmouse
, infoPtr
, NM_CLICK
))
5934 return DefWindowProcW(hwnd
, WM_LBUTTONUP
, wParam
, lParam
);
5940 TOOLBAR_RButtonUp( HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5942 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5947 pt
.x
= (short)LOWORD(lParam
);
5948 pt
.y
= (short)HIWORD(lParam
);
5950 nHit
= TOOLBAR_InternalHitTest(hwnd
, &pt
);
5951 nmmouse
.dwHitInfo
= nHit
;
5954 nmmouse
.dwItemSpec
= -1;
5956 nmmouse
.dwItemSpec
= infoPtr
->buttons
[nmmouse
.dwHitInfo
].idCommand
;
5957 nmmouse
.dwItemData
= infoPtr
->buttons
[nmmouse
.dwHitInfo
].dwData
;
5960 ClientToScreen(hwnd
, &pt
);
5963 if (!TOOLBAR_SendNotify((LPNMHDR
)&nmmouse
, infoPtr
, NM_RCLICK
))
5964 return DefWindowProcW(hwnd
, WM_RBUTTONUP
, wParam
, lParam
);
5970 TOOLBAR_RButtonDblClk( HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
5972 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5975 if (!TOOLBAR_SendNotify(&nmhdr
, infoPtr
, NM_RDBLCLK
))
5976 return DefWindowProcW(hwnd
, WM_RBUTTONDBLCLK
, wParam
, lParam
);
5982 TOOLBAR_CaptureChanged(HWND hwnd
)
5984 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
5985 TBUTTON_INFO
*btnPtr
;
5987 infoPtr
->bCaptured
= FALSE
;
5989 if (infoPtr
->nButtonDown
>= 0)
5991 btnPtr
= &infoPtr
->buttons
[infoPtr
->nButtonDown
];
5992 btnPtr
->fsState
&= ~TBSTATE_PRESSED
;
5994 infoPtr
->nOldHit
= -1;
5996 if (btnPtr
->fsState
& TBSTATE_ENABLED
)
5997 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
6003 TOOLBAR_MouseLeave (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6005 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6007 /* don't remove hot effects when in anchor highlighting mode or when a
6008 * drop-down button is pressed */
6009 if (infoPtr
->nHotItem
>= 0 && !infoPtr
->bAnchor
)
6011 TBUTTON_INFO
*hotBtnPtr
= &infoPtr
->buttons
[infoPtr
->nHotItem
];
6012 if (!hotBtnPtr
->bDropDownPressed
)
6013 TOOLBAR_SetHotItemEx(infoPtr
, TOOLBAR_NOWHERE
, HICF_MOUSE
);
6016 if (infoPtr
->nOldHit
< 0)
6019 /* If the last button we were over is depressed then make it not */
6020 /* depressed and redraw it */
6021 if(infoPtr
->nOldHit
== infoPtr
->nButtonDown
)
6023 TBUTTON_INFO
*btnPtr
;
6026 btnPtr
= &infoPtr
->buttons
[infoPtr
->nButtonDown
];
6028 btnPtr
->fsState
&= ~TBSTATE_PRESSED
;
6031 InflateRect (&rc1
, 1, 1);
6032 InvalidateRect (hwnd
, &rc1
, TRUE
);
6035 if (infoPtr
->bCaptured
&& !infoPtr
->bDragOutSent
)
6038 ZeroMemory(&nmt
, sizeof(nmt
));
6039 nmt
.iItem
= infoPtr
->buttons
[infoPtr
->nButtonDown
].idCommand
;
6040 TOOLBAR_SendNotify(&nmt
.hdr
, infoPtr
, TBN_DRAGOUT
);
6041 infoPtr
->bDragOutSent
= TRUE
;
6044 infoPtr
->nOldHit
= -1; /* reset the old hit index as we've left the toolbar */
6050 TOOLBAR_MouseMove (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6052 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6054 TRACKMOUSEEVENT trackinfo
;
6056 TBUTTON_INFO
*btnPtr
;
6058 if ((infoPtr
->dwStyle
& TBSTYLE_TOOLTIPS
) && (infoPtr
->hwndToolTip
== NULL
))
6059 TOOLBAR_TooltipCreateControl(infoPtr
);
6061 if ((infoPtr
->dwStyle
& TBSTYLE_FLAT
) || GetWindowTheme (infoPtr
->hwndSelf
)) {
6062 /* fill in the TRACKMOUSEEVENT struct */
6063 trackinfo
.cbSize
= sizeof(TRACKMOUSEEVENT
);
6064 trackinfo
.dwFlags
= TME_QUERY
;
6066 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
6067 _TrackMouseEvent(&trackinfo
);
6069 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
6070 if(trackinfo
.hwndTrack
!= hwnd
|| !(trackinfo
.dwFlags
& TME_LEAVE
)) {
6071 trackinfo
.dwFlags
= TME_LEAVE
; /* notify upon leaving */
6072 trackinfo
.hwndTrack
= hwnd
;
6074 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
6075 /* and can properly deactivate the hot toolbar button */
6076 _TrackMouseEvent(&trackinfo
);
6080 if (infoPtr
->hwndToolTip
)
6081 TOOLBAR_RelayEvent (infoPtr
->hwndToolTip
, hwnd
,
6082 WM_MOUSEMOVE
, wParam
, lParam
);
6084 pt
.x
= (short)LOWORD(lParam
);
6085 pt
.y
= (short)HIWORD(lParam
);
6087 nHit
= TOOLBAR_InternalHitTest (hwnd
, &pt
);
6089 if (((infoPtr
->dwStyle
& TBSTYLE_FLAT
) || GetWindowTheme (infoPtr
->hwndSelf
))
6090 && (!infoPtr
->bAnchor
|| (nHit
>= 0)))
6091 TOOLBAR_SetHotItemEx(infoPtr
, nHit
, HICF_MOUSE
);
6093 if (infoPtr
->nOldHit
!= nHit
)
6095 if (infoPtr
->bCaptured
)
6097 if (!infoPtr
->bDragOutSent
)
6100 ZeroMemory(&nmt
, sizeof(nmt
));
6101 nmt
.iItem
= infoPtr
->buttons
[infoPtr
->nButtonDown
].idCommand
;
6102 TOOLBAR_SendNotify(&nmt
.hdr
, infoPtr
, TBN_DRAGOUT
);
6103 infoPtr
->bDragOutSent
= TRUE
;
6106 btnPtr
= &infoPtr
->buttons
[infoPtr
->nButtonDown
];
6107 if (infoPtr
->nOldHit
== infoPtr
->nButtonDown
) {
6108 btnPtr
->fsState
&= ~TBSTATE_PRESSED
;
6109 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
6111 else if (nHit
== infoPtr
->nButtonDown
) {
6112 btnPtr
->fsState
|= TBSTATE_PRESSED
;
6113 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
6115 infoPtr
->nOldHit
= nHit
;
6123 static inline LRESULT
6124 TOOLBAR_NCActivate (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6126 /* if (wndPtr->dwStyle & CCS_NODIVIDER) */
6127 return DefWindowProcW (hwnd
, WM_NCACTIVATE
, wParam
, lParam
);
6129 /* return TOOLBAR_NCPaint (wndPtr, wParam, lParam); */
6133 static inline LRESULT
6134 TOOLBAR_NCCalcSize (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6136 if (!(GetWindowLongW(hwnd
, GWL_STYLE
) & CCS_NODIVIDER
))
6137 ((LPRECT
)lParam
)->top
+= GetSystemMetrics(SM_CYEDGE
);
6139 return DefWindowProcW (hwnd
, WM_NCCALCSIZE
, wParam
, lParam
);
6144 TOOLBAR_NCCreate (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6146 TOOLBAR_INFO
*infoPtr
;
6147 LPCREATESTRUCTA cs
= (LPCREATESTRUCTA
)lParam
;
6150 /* allocate memory for info structure */
6151 infoPtr
= Alloc (sizeof(TOOLBAR_INFO
));
6152 SetWindowLongPtrW (hwnd
, 0, (LONG_PTR
)infoPtr
);
6155 infoPtr
->dwStructSize
= sizeof(TBBUTTON
);
6157 infoPtr
->nWidth
= 0;
6159 /* fix instance handle, if the toolbar was created by CreateToolbarEx() */
6160 if (!GetWindowLongPtrW (hwnd
, GWLP_HINSTANCE
)) {
6161 HINSTANCE hInst
= (HINSTANCE
)GetWindowLongPtrW (GetParent (hwnd
), GWLP_HINSTANCE
);
6162 SetWindowLongPtrW (hwnd
, GWLP_HINSTANCE
, (LONG_PTR
)hInst
);
6165 /* native control does:
6166 * Get a lot of colors and brushes
6168 * SystemParametersInfoW(0x1f, 0x3c, adr1, 0)
6169 * CreateFontIndirectW(adr1)
6170 * CreateBitmap(0x27, 0x24, 1, 1, 0)
6171 * hdc = GetDC(toolbar)
6172 * GetSystemMetrics(0x48)
6173 * fnt2=CreateFontW(0xe, 0, 0, 0, 0x190, 0, 0, 0, 0, 2,
6174 * 0, 0, 0, 0, "MARLETT")
6175 * oldfnt = SelectObject(hdc, fnt2)
6176 * GetCharWidthW(hdc, 0x36, 0x36, adr2)
6177 * GetTextMetricsW(hdc, adr3)
6178 * SelectObject(hdc, oldfnt)
6179 * DeleteObject(fnt2)
6181 * InvalidateRect(toolbar, 0, 1)
6182 * SetWindowLongW(toolbar, 0, addr)
6183 * SetWindowLongW(toolbar, -16, xxx) **sometimes**
6186 * ie 1 0x56000a4c 0x46000a4c 0x56008a4d
6187 * ie 2 0x4600094c 0x4600094c 0x4600894d
6188 * ie 3 0x56000b4c 0x46000b4c 0x56008b4d
6189 * rebar 0x50008844 0x40008844 0x50008845
6190 * pager 0x50000844 0x40000844 0x50008845
6191 * IC35mgr 0x5400084e **nochange**
6192 * on entry to _NCCREATE 0x5400084e
6193 * rowlist 0x5400004e **nochange**
6194 * on entry to _NCCREATE 0x5400004e
6198 /* I think the code below is a bug, but it is the way that the native
6199 * controls seem to work. The effect is that if the user of TBSTYLE_FLAT
6200 * forgets to specify TBSTYLE_TRANSPARENT but does specify either
6201 * CCS_TOP or CCS_BOTTOM (_NOMOVEY and _TOP), then the control
6202 * does *not* set TBSTYLE_TRANSPARENT even though it should!!!!
6203 * Somehow, the only cases of this seem to be MFC programs.
6205 * Note also that the addition of _TRANSPARENT occurs *only* here. It
6206 * does not occur in the WM_STYLECHANGING routine.
6207 * (Guy Albertelli 9/2001)
6210 if (((infoPtr
->dwStyle
& TBSTYLE_FLAT
) || GetWindowTheme (infoPtr
->hwndSelf
))
6211 && !(cs
->style
& TBSTYLE_TRANSPARENT
))
6212 styleadd
|= TBSTYLE_TRANSPARENT
;
6213 if (!(cs
->style
& (CCS_TOP
| CCS_NOMOVEY
))) {
6214 styleadd
|= CCS_TOP
; /* default to top */
6215 SetWindowLongW (hwnd
, GWL_STYLE
, cs
->style
| styleadd
);
6218 return DefWindowProcW (hwnd
, WM_NCCREATE
, wParam
, lParam
);
6223 TOOLBAR_NCPaint (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6225 DWORD dwStyle
= GetWindowLongW(hwnd
, GWL_STYLE
);
6229 if (dwStyle
& WS_MINIMIZE
)
6230 return 0; /* Nothing to do */
6232 DefWindowProcW (hwnd
, WM_NCPAINT
, wParam
, lParam
);
6234 if (!(hdc
= GetDCEx (hwnd
, 0, DCX_USESTYLE
| DCX_WINDOW
)))
6237 if (!(dwStyle
& CCS_NODIVIDER
))
6239 GetWindowRect (hwnd
, &rcWindow
);
6240 OffsetRect (&rcWindow
, -rcWindow
.left
, -rcWindow
.top
);
6241 if( dwStyle
& WS_BORDER
)
6242 OffsetRect (&rcWindow
, 1, 1);
6243 DrawEdge (hdc
, &rcWindow
, EDGE_ETCHED
, BF_TOP
);
6246 ReleaseDC( hwnd
, hdc
);
6252 /* handles requests from the tooltip control on what text to display */
6253 static LRESULT
TOOLBAR_TTGetDispInfo (TOOLBAR_INFO
*infoPtr
, NMTTDISPINFOW
*lpnmtdi
)
6255 int index
= TOOLBAR_GetButtonIndex(infoPtr
, lpnmtdi
->hdr
.idFrom
, FALSE
);
6257 TRACE("button index = %d\n", index
);
6259 Free (infoPtr
->pszTooltipText
);
6260 infoPtr
->pszTooltipText
= NULL
;
6265 if (infoPtr
->bUnicode
)
6267 WCHAR wszBuffer
[INFOTIPSIZE
+1];
6268 NMTBGETINFOTIPW tbgit
;
6269 unsigned int len
; /* in chars */
6271 wszBuffer
[0] = '\0';
6272 wszBuffer
[INFOTIPSIZE
] = '\0';
6274 tbgit
.pszText
= wszBuffer
;
6275 tbgit
.cchTextMax
= INFOTIPSIZE
;
6276 tbgit
.iItem
= lpnmtdi
->hdr
.idFrom
;
6277 tbgit
.lParam
= infoPtr
->buttons
[index
].dwData
;
6279 TOOLBAR_SendNotify(&tbgit
.hdr
, infoPtr
, TBN_GETINFOTIPW
);
6281 TRACE("TBN_GETINFOTIPW - got string %s\n", debugstr_w(tbgit
.pszText
));
6283 len
= strlenW(tbgit
.pszText
);
6284 if (len
> sizeof(lpnmtdi
->szText
)/sizeof(lpnmtdi
->szText
[0])-1)
6286 /* need to allocate temporary buffer in infoPtr as there
6287 * isn't enough space in buffer passed to us by the
6288 * tooltip control */
6289 infoPtr
->pszTooltipText
= Alloc((len
+1)*sizeof(WCHAR
));
6290 if (infoPtr
->pszTooltipText
)
6292 memcpy(infoPtr
->pszTooltipText
, tbgit
.pszText
, (len
+1)*sizeof(WCHAR
));
6293 lpnmtdi
->lpszText
= infoPtr
->pszTooltipText
;
6299 memcpy(lpnmtdi
->lpszText
, tbgit
.pszText
, (len
+1)*sizeof(WCHAR
));
6305 CHAR szBuffer
[INFOTIPSIZE
+1];
6306 NMTBGETINFOTIPA tbgit
;
6307 unsigned int len
; /* in chars */
6310 szBuffer
[INFOTIPSIZE
] = '\0';
6312 tbgit
.pszText
= szBuffer
;
6313 tbgit
.cchTextMax
= INFOTIPSIZE
;
6314 tbgit
.iItem
= lpnmtdi
->hdr
.idFrom
;
6315 tbgit
.lParam
= infoPtr
->buttons
[index
].dwData
;
6317 TOOLBAR_SendNotify(&tbgit
.hdr
, infoPtr
, TBN_GETINFOTIPA
);
6319 TRACE("TBN_GETINFOTIPA - got string %s\n", debugstr_a(tbgit
.pszText
));
6321 len
= MultiByteToWideChar(CP_ACP
, 0, tbgit
.pszText
, -1, NULL
, 0);
6322 if (len
> sizeof(lpnmtdi
->szText
)/sizeof(lpnmtdi
->szText
[0]))
6324 /* need to allocate temporary buffer in infoPtr as there
6325 * isn't enough space in buffer passed to us by the
6326 * tooltip control */
6327 infoPtr
->pszTooltipText
= Alloc(len
*sizeof(WCHAR
));
6328 if (infoPtr
->pszTooltipText
)
6330 MultiByteToWideChar(CP_ACP
, 0, tbgit
.pszText
, -1, infoPtr
->pszTooltipText
, len
);
6331 lpnmtdi
->lpszText
= infoPtr
->pszTooltipText
;
6335 else if (tbgit
.pszText
[0])
6337 MultiByteToWideChar(CP_ACP
, 0, tbgit
.pszText
, -1,
6338 lpnmtdi
->lpszText
, sizeof(lpnmtdi
->szText
)/sizeof(lpnmtdi
->szText
[0]));
6343 /* if button has text, but it is not shown then automatically
6344 * use that text as tooltip */
6345 if ((infoPtr
->dwExStyle
& TBSTYLE_EX_MIXEDBUTTONS
) &&
6346 !(infoPtr
->buttons
[index
].fsStyle
& BTNS_SHOWTEXT
))
6348 LPWSTR pszText
= TOOLBAR_GetText(infoPtr
, &infoPtr
->buttons
[index
]);
6349 unsigned int len
= pszText
? strlenW(pszText
) : 0;
6351 TRACE("using button hidden text %s\n", debugstr_w(pszText
));
6353 if (len
> sizeof(lpnmtdi
->szText
)/sizeof(lpnmtdi
->szText
[0])-1)
6355 /* need to allocate temporary buffer in infoPtr as there
6356 * isn't enough space in buffer passed to us by the
6357 * tooltip control */
6358 infoPtr
->pszTooltipText
= Alloc((len
+1)*sizeof(WCHAR
));
6359 if (infoPtr
->pszTooltipText
)
6361 memcpy(infoPtr
->pszTooltipText
, pszText
, (len
+1)*sizeof(WCHAR
));
6362 lpnmtdi
->lpszText
= infoPtr
->pszTooltipText
;
6368 memcpy(lpnmtdi
->lpszText
, pszText
, (len
+1)*sizeof(WCHAR
));
6373 TRACE("Sending tooltip notification to %p\n", infoPtr
->hwndNotify
);
6375 /* last resort: send notification on to app */
6376 /* FIXME: find out what is really used here */
6377 return SendMessageW(infoPtr
->hwndNotify
, WM_NOTIFY
, lpnmtdi
->hdr
.idFrom
, (LPARAM
)lpnmtdi
);
6381 static inline LRESULT
6382 TOOLBAR_Notify (HWND hwnd
, LPARAM lParam
)
6384 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6385 LPNMHDR lpnmh
= (LPNMHDR
)lParam
;
6387 switch (lpnmh
->code
)
6391 LPNMPGCALCSIZE lppgc
= (LPNMPGCALCSIZE
)lParam
;
6393 if (lppgc
->dwFlag
== PGF_CALCWIDTH
) {
6394 lppgc
->iWidth
= infoPtr
->rcBound
.right
- infoPtr
->rcBound
.left
;
6395 TRACE("processed PGN_CALCSIZE, returning horz size = %d\n",
6399 lppgc
->iHeight
= infoPtr
->rcBound
.bottom
- infoPtr
->rcBound
.top
;
6400 TRACE("processed PGN_CALCSIZE, returning vert size = %d\n",
6408 LPNMPGSCROLL lppgs
= (LPNMPGSCROLL
)lParam
;
6410 lppgs
->iScroll
= (lppgs
->iDir
& (PGF_SCROLLLEFT
| PGF_SCROLLRIGHT
)) ?
6411 infoPtr
->nButtonWidth
: infoPtr
->nButtonHeight
;
6412 TRACE("processed PGN_SCROLL, returning scroll=%d, dir=%d\n",
6413 lppgs
->iScroll
, lppgs
->iDir
);
6417 case TTN_GETDISPINFOW
:
6418 return TOOLBAR_TTGetDispInfo(infoPtr
, (LPNMTTDISPINFOW
)lParam
);
6420 case TTN_GETDISPINFOA
:
6421 FIXME("TTN_GETDISPINFOA - should not be received; please report\n");
6431 TOOLBAR_NotifyFormat(const TOOLBAR_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
6435 TRACE("wParam = 0x%lx, lParam = 0x%08lx\n", wParam
, lParam
);
6437 if (lParam
== NF_QUERY
)
6440 if (lParam
== NF_REQUERY
) {
6441 format
= SendMessageW(infoPtr
->hwndNotify
,
6442 WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->hwndSelf
, NF_QUERY
);
6443 if ((format
!= NFR_ANSI
) && (format
!= NFR_UNICODE
)) {
6444 ERR("wrong response to WM_NOTIFYFORMAT (%ld), assuming ANSI\n",
6455 TOOLBAR_Paint (HWND hwnd
, WPARAM wParam
)
6457 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
6461 /* fill ps.rcPaint with a default rect */
6462 ps
.rcPaint
= infoPtr
->rcBound
;
6464 hdc
= wParam
==0 ? BeginPaint(hwnd
, &ps
) : (HDC
)wParam
;
6466 TRACE("psrect=(%s)\n", wine_dbgstr_rect(&ps
.rcPaint
));
6468 TOOLBAR_Refresh (hwnd
, hdc
, &ps
);
6469 if (!wParam
) EndPaint (hwnd
, &ps
);
6476 TOOLBAR_SetFocus (HWND hwnd
, WPARAM wParam
)
6478 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6480 TRACE("nHotItem = %d\n", infoPtr
->nHotItem
);
6482 /* make first item hot */
6483 if (infoPtr
->nNumButtons
> 0)
6484 TOOLBAR_SetHotItemEx(infoPtr
, 0, HICF_OTHER
);
6490 TOOLBAR_SetFont(HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6492 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr(hwnd
);
6494 TRACE("font=%p redraw=%ld\n", (HFONT
)wParam
, lParam
);
6497 infoPtr
->hFont
= infoPtr
->hDefaultFont
;
6499 infoPtr
->hFont
= (HFONT
)wParam
;
6501 TOOLBAR_CalcToolbar(hwnd
);
6504 InvalidateRect(hwnd
, NULL
, TRUE
);
6509 TOOLBAR_SetRedraw (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6510 /*****************************************************
6513 * Handles the WM_SETREDRAW message.
6516 * According to testing V4.71 of COMCTL32 returns the
6517 * *previous* status of the redraw flag (either 0 or 1)
6518 * instead of the MSDN documented value of 0 if handled.
6519 * (For laughs see the "consistency" with same function
6522 *****************************************************/
6524 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6525 BOOL oldredraw
= infoPtr
->bDoRedraw
;
6527 TRACE("set to %s\n",
6528 (wParam
) ? "TRUE" : "FALSE");
6529 infoPtr
->bDoRedraw
= (BOOL
) wParam
;
6531 InvalidateRect (infoPtr
->hwndSelf
, 0, TRUE
);
6533 return (oldredraw
) ? 1 : 0;
6538 TOOLBAR_Size (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
6540 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6542 TRACE("sizing toolbar!\n");
6544 if (infoPtr
->dwExStyle
& TBSTYLE_EX_HIDECLIPPEDBUTTONS
)
6546 RECT delta_width
, delta_height
, client
, dummy
;
6547 DWORD min_x
, max_x
, min_y
, max_y
;
6548 TBUTTON_INFO
*btnPtr
;
6551 GetClientRect(hwnd
, &client
);
6552 if(client
.right
> infoPtr
->client_rect
.right
)
6554 min_x
= infoPtr
->client_rect
.right
;
6555 max_x
= client
.right
;
6559 max_x
= infoPtr
->client_rect
.right
;
6560 min_x
= client
.right
;
6562 if(client
.bottom
> infoPtr
->client_rect
.bottom
)
6564 min_y
= infoPtr
->client_rect
.bottom
;
6565 max_y
= client
.bottom
;
6569 max_y
= infoPtr
->client_rect
.bottom
;
6570 min_y
= client
.bottom
;
6573 SetRect(&delta_width
, min_x
, 0, max_x
, min_y
);
6574 SetRect(&delta_height
, 0, min_y
, max_x
, max_y
);
6576 TRACE("delta_width %s delta_height %s\n", wine_dbgstr_rect(&delta_width
), wine_dbgstr_rect(&delta_height
));
6577 btnPtr
= infoPtr
->buttons
;
6578 for (i
= 0; i
< infoPtr
->nNumButtons
; i
++, btnPtr
++)
6579 if(IntersectRect(&dummy
, &delta_width
, &btnPtr
->rect
) ||
6580 IntersectRect(&dummy
, &delta_height
, &btnPtr
->rect
))
6581 InvalidateRect(hwnd
, &btnPtr
->rect
, TRUE
);
6583 GetClientRect(hwnd
, &infoPtr
->client_rect
);
6584 TOOLBAR_AutoSize(hwnd
);
6590 TOOLBAR_StyleChanged (HWND hwnd
, INT nType
, const STYLESTRUCT
*lpStyle
)
6592 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6594 if (nType
== GWL_STYLE
)
6596 DWORD dwOldStyle
= infoPtr
->dwStyle
;
6598 if (lpStyle
->styleNew
& TBSTYLE_LIST
)
6599 infoPtr
->dwDTFlags
= DT_LEFT
| DT_VCENTER
| DT_SINGLELINE
| DT_END_ELLIPSIS
;
6601 infoPtr
->dwDTFlags
= DT_CENTER
| DT_END_ELLIPSIS
;
6603 TOOLBAR_CheckStyle (hwnd
, lpStyle
->styleNew
);
6605 TRACE("new style 0x%08x\n", lpStyle
->styleNew
);
6607 infoPtr
->dwStyle
= lpStyle
->styleNew
;
6609 if ((dwOldStyle
^ lpStyle
->styleNew
) & (TBSTYLE_WRAPABLE
| CCS_VERT
))
6610 TOOLBAR_LayoutToolbar(hwnd
);
6612 /* only resize if one of the CCS_* styles was changed */
6613 if ((dwOldStyle
^ lpStyle
->styleNew
) & COMMON_STYLES
)
6615 TOOLBAR_AutoSize (hwnd
);
6617 InvalidateRect(hwnd
, NULL
, TRUE
);
6626 TOOLBAR_SysColorChange (HWND hwnd
)
6628 COMCTL32_RefreshSysColors();
6634 /* update theme after a WM_THEMECHANGED message */
6635 static LRESULT
theme_changed (HWND hwnd
)
6637 HTHEME theme
= GetWindowTheme (hwnd
);
6638 CloseThemeData (theme
);
6639 OpenThemeData (hwnd
, themeClass
);
6644 static LRESULT WINAPI
6645 ToolbarWindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
6647 TOOLBAR_INFO
*infoPtr
= TOOLBAR_GetInfoPtr (hwnd
);
6649 TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n",
6650 hwnd
, uMsg
, /* SPY_GetMsgName(uMsg), */ wParam
, lParam
);
6652 if (!infoPtr
&& (uMsg
!= WM_NCCREATE
))
6653 return DefWindowProcW( hwnd
, uMsg
, wParam
, lParam
);
6658 return TOOLBAR_AddBitmap (hwnd
, wParam
, lParam
);
6660 case TB_ADDBUTTONSA
:
6661 return TOOLBAR_AddButtonsT(hwnd
, wParam
, lParam
, FALSE
);
6663 case TB_ADDBUTTONSW
:
6664 return TOOLBAR_AddButtonsT(hwnd
, wParam
, lParam
, TRUE
);
6667 return TOOLBAR_AddStringA (hwnd
, wParam
, lParam
);
6670 return TOOLBAR_AddStringW (hwnd
, wParam
, lParam
);
6673 return TOOLBAR_AutoSize (hwnd
);
6675 case TB_BUTTONCOUNT
:
6676 return TOOLBAR_ButtonCount (hwnd
);
6678 case TB_BUTTONSTRUCTSIZE
:
6679 return TOOLBAR_ButtonStructSize (hwnd
, wParam
);
6681 case TB_CHANGEBITMAP
:
6682 return TOOLBAR_ChangeBitmap (hwnd
, wParam
, lParam
);
6684 case TB_CHECKBUTTON
:
6685 return TOOLBAR_CheckButton (hwnd
, wParam
, lParam
);
6687 case TB_COMMANDTOINDEX
:
6688 return TOOLBAR_CommandToIndex (hwnd
, wParam
);
6691 return TOOLBAR_Customize (hwnd
);
6693 case TB_DELETEBUTTON
:
6694 return TOOLBAR_DeleteButton (hwnd
, wParam
);
6696 case TB_ENABLEBUTTON
:
6697 return TOOLBAR_EnableButton (hwnd
, wParam
, lParam
);
6699 case TB_GETANCHORHIGHLIGHT
:
6700 return TOOLBAR_GetAnchorHighlight (hwnd
);
6703 return TOOLBAR_GetBitmap (hwnd
, wParam
);
6705 case TB_GETBITMAPFLAGS
:
6706 return TOOLBAR_GetBitmapFlags ();
6709 return TOOLBAR_GetButton (hwnd
, wParam
, lParam
);
6711 case TB_GETBUTTONINFOA
:
6712 return TOOLBAR_GetButtonInfoT(hwnd
, wParam
, lParam
, FALSE
);
6714 case TB_GETBUTTONINFOW
:
6715 return TOOLBAR_GetButtonInfoT(hwnd
, wParam
, lParam
, TRUE
);
6717 case TB_GETBUTTONSIZE
:
6718 return TOOLBAR_GetButtonSize (hwnd
);
6720 case TB_GETBUTTONTEXTA
:
6721 return TOOLBAR_GetButtonTextA (hwnd
, wParam
, lParam
);
6723 case TB_GETBUTTONTEXTW
:
6724 return TOOLBAR_GetButtonTextW (hwnd
, wParam
, lParam
);
6726 case TB_GETDISABLEDIMAGELIST
:
6727 return TOOLBAR_GetDisabledImageList (hwnd
, wParam
, lParam
);
6729 case TB_GETEXTENDEDSTYLE
:
6730 return TOOLBAR_GetExtendedStyle (hwnd
);
6732 case TB_GETHOTIMAGELIST
:
6733 return TOOLBAR_GetHotImageList (hwnd
, wParam
, lParam
);
6736 return TOOLBAR_GetHotItem (hwnd
);
6738 case TB_GETIMAGELIST
:
6739 return TOOLBAR_GetDefImageList (hwnd
, wParam
, lParam
);
6741 case TB_GETINSERTMARK
:
6742 return TOOLBAR_GetInsertMark (hwnd
, lParam
);
6744 case TB_GETINSERTMARKCOLOR
:
6745 return TOOLBAR_GetInsertMarkColor (hwnd
);
6747 case TB_GETITEMRECT
:
6748 return TOOLBAR_GetItemRect (hwnd
, wParam
, lParam
);
6751 return TOOLBAR_GetMaxSize (hwnd
, lParam
);
6753 /* case TB_GETOBJECT: */ /* 4.71 */
6756 return TOOLBAR_GetPadding (hwnd
);
6759 return TOOLBAR_GetRect (hwnd
, wParam
, lParam
);
6762 return TOOLBAR_GetRows (hwnd
);
6765 return TOOLBAR_GetState (hwnd
, wParam
);
6768 return TOOLBAR_GetStringA (hwnd
, wParam
, lParam
);
6771 return TOOLBAR_GetStringW (hwnd
, wParam
, lParam
);
6774 return TOOLBAR_GetStyle (hwnd
);
6776 case TB_GETTEXTROWS
:
6777 return TOOLBAR_GetTextRows (hwnd
);
6779 case TB_GETTOOLTIPS
:
6780 return TOOLBAR_GetToolTips (hwnd
);
6782 case TB_GETUNICODEFORMAT
:
6783 return TOOLBAR_GetUnicodeFormat (hwnd
);
6786 return TOOLBAR_HideButton (hwnd
, wParam
, lParam
);
6789 return TOOLBAR_HitTest (hwnd
, lParam
);
6791 case TB_INDETERMINATE
:
6792 return TOOLBAR_Indeterminate (hwnd
, wParam
, lParam
);
6794 case TB_INSERTBUTTONA
:
6795 return TOOLBAR_InsertButtonT(hwnd
, wParam
, lParam
, FALSE
);
6797 case TB_INSERTBUTTONW
:
6798 return TOOLBAR_InsertButtonT(hwnd
, wParam
, lParam
, TRUE
);
6800 /* case TB_INSERTMARKHITTEST: */ /* 4.71 */
6802 case TB_ISBUTTONCHECKED
:
6803 return TOOLBAR_IsButtonChecked (hwnd
, wParam
);
6805 case TB_ISBUTTONENABLED
:
6806 return TOOLBAR_IsButtonEnabled (hwnd
, wParam
);
6808 case TB_ISBUTTONHIDDEN
:
6809 return TOOLBAR_IsButtonHidden (hwnd
, wParam
);
6811 case TB_ISBUTTONHIGHLIGHTED
:
6812 return TOOLBAR_IsButtonHighlighted (hwnd
, wParam
);
6814 case TB_ISBUTTONINDETERMINATE
:
6815 return TOOLBAR_IsButtonIndeterminate (hwnd
, wParam
);
6817 case TB_ISBUTTONPRESSED
:
6818 return TOOLBAR_IsButtonPressed (hwnd
, wParam
);
6821 return TOOLBAR_LoadImages (hwnd
, wParam
, lParam
);
6823 case TB_MAPACCELERATORA
:
6824 case TB_MAPACCELERATORW
:
6825 return TOOLBAR_MapAccelerator (hwnd
, wParam
, lParam
);
6828 return TOOLBAR_MarkButton (hwnd
, wParam
, lParam
);
6831 return TOOLBAR_MoveButton (hwnd
, wParam
, lParam
);
6833 case TB_PRESSBUTTON
:
6834 return TOOLBAR_PressButton (hwnd
, wParam
, lParam
);
6836 case TB_REPLACEBITMAP
:
6837 return TOOLBAR_ReplaceBitmap (hwnd
, lParam
);
6839 case TB_SAVERESTOREA
:
6840 return TOOLBAR_SaveRestoreA (hwnd
, wParam
, (LPTBSAVEPARAMSA
)lParam
);
6842 case TB_SAVERESTOREW
:
6843 return TOOLBAR_SaveRestoreW (hwnd
, wParam
, (LPTBSAVEPARAMSW
)lParam
);
6845 case TB_SETANCHORHIGHLIGHT
:
6846 return TOOLBAR_SetAnchorHighlight (hwnd
, wParam
);
6848 case TB_SETBITMAPSIZE
:
6849 return TOOLBAR_SetBitmapSize (hwnd
, wParam
, lParam
);
6851 case TB_SETBUTTONINFOA
:
6852 return TOOLBAR_SetButtonInfoA (hwnd
, wParam
, lParam
);
6854 case TB_SETBUTTONINFOW
:
6855 return TOOLBAR_SetButtonInfoW (hwnd
, wParam
, lParam
);
6857 case TB_SETBUTTONSIZE
:
6858 return TOOLBAR_SetButtonSize (hwnd
, lParam
);
6860 case TB_SETBUTTONWIDTH
:
6861 return TOOLBAR_SetButtonWidth (hwnd
, lParam
);
6864 return TOOLBAR_SetCmdId (hwnd
, wParam
, lParam
);
6866 case TB_SETDISABLEDIMAGELIST
:
6867 return TOOLBAR_SetDisabledImageList (hwnd
, wParam
, lParam
);
6869 case TB_SETDRAWTEXTFLAGS
:
6870 return TOOLBAR_SetDrawTextFlags (hwnd
, wParam
, lParam
);
6872 case TB_SETEXTENDEDSTYLE
:
6873 return TOOLBAR_SetExtendedStyle (hwnd
, wParam
, lParam
);
6875 case TB_SETHOTIMAGELIST
:
6876 return TOOLBAR_SetHotImageList (hwnd
, wParam
, lParam
);
6879 return TOOLBAR_SetHotItem (hwnd
, wParam
);
6881 case TB_SETIMAGELIST
:
6882 return TOOLBAR_SetImageList (hwnd
, wParam
, lParam
);
6885 return TOOLBAR_SetIndent (hwnd
, wParam
);
6887 case TB_SETINSERTMARK
:
6888 return TOOLBAR_SetInsertMark (hwnd
, lParam
);
6890 case TB_SETINSERTMARKCOLOR
:
6891 return TOOLBAR_SetInsertMarkColor (hwnd
, lParam
);
6893 case TB_SETMAXTEXTROWS
:
6894 return TOOLBAR_SetMaxTextRows (hwnd
, wParam
);
6897 return TOOLBAR_SetPadding (hwnd
, lParam
);
6900 return TOOLBAR_SetParent (hwnd
, wParam
);
6903 return TOOLBAR_SetRows (hwnd
, wParam
, lParam
);
6906 return TOOLBAR_SetState (hwnd
, wParam
, lParam
);
6909 return TOOLBAR_SetStyle (hwnd
, lParam
);
6911 case TB_SETTOOLTIPS
:
6912 return TOOLBAR_SetToolTips (hwnd
, wParam
, lParam
);
6914 case TB_SETUNICODEFORMAT
:
6915 return TOOLBAR_SetUnicodeFormat (hwnd
, wParam
);
6918 return TOOLBAR_Unkwn45D(hwnd
, wParam
, lParam
);
6920 case TB_SETHOTITEM2
:
6921 return TOOLBAR_SetHotItem2 (hwnd
, wParam
, lParam
);
6924 return TOOLBAR_SetListGap(hwnd
, wParam
);
6926 case TB_GETIMAGELISTCOUNT
:
6927 return TOOLBAR_GetImageListCount(hwnd
, wParam
, lParam
);
6929 case TB_GETIDEALSIZE
:
6930 return TOOLBAR_GetIdealSize (hwnd
, wParam
, lParam
);
6933 return TOOLBAR_Unkwn464(hwnd
, wParam
, lParam
);
6935 /* Common Control Messages */
6937 /* case TB_GETCOLORSCHEME: */ /* identical to CCM_ */
6938 case CCM_GETCOLORSCHEME
:
6939 return TOOLBAR_GetColorScheme (hwnd
, (LPCOLORSCHEME
)lParam
);
6941 /* case TB_SETCOLORSCHEME: */ /* identical to CCM_ */
6942 case CCM_SETCOLORSCHEME
:
6943 return TOOLBAR_SetColorScheme (hwnd
, (LPCOLORSCHEME
)lParam
);
6945 case CCM_GETVERSION
:
6946 return TOOLBAR_GetVersion (hwnd
);
6948 case CCM_SETVERSION
:
6949 return TOOLBAR_SetVersion (hwnd
, (INT
)wParam
);
6955 return TOOLBAR_Create (hwnd
, lParam
);
6958 return TOOLBAR_Destroy (hwnd
, wParam
, lParam
);
6961 return TOOLBAR_EraseBackground (hwnd
, wParam
, lParam
);
6964 return TOOLBAR_GetFont (hwnd
, wParam
, lParam
);
6967 return TOOLBAR_KeyDown (hwnd
, wParam
, lParam
);
6969 /* case WM_KILLFOCUS: */
6971 case WM_LBUTTONDBLCLK
:
6972 return TOOLBAR_LButtonDblClk (hwnd
, wParam
, lParam
);
6974 case WM_LBUTTONDOWN
:
6975 return TOOLBAR_LButtonDown (hwnd
, wParam
, lParam
);
6978 return TOOLBAR_LButtonUp (hwnd
, wParam
, lParam
);
6981 return TOOLBAR_RButtonUp (hwnd
, wParam
, lParam
);
6983 case WM_RBUTTONDBLCLK
:
6984 return TOOLBAR_RButtonDblClk (hwnd
, wParam
, lParam
);
6987 return TOOLBAR_MouseMove (hwnd
, wParam
, lParam
);
6990 return TOOLBAR_MouseLeave (hwnd
, wParam
, lParam
);
6992 case WM_CAPTURECHANGED
:
6993 return TOOLBAR_CaptureChanged(hwnd
);
6996 return TOOLBAR_NCActivate (hwnd
, wParam
, lParam
);
6999 return TOOLBAR_NCCalcSize (hwnd
, wParam
, lParam
);
7002 return TOOLBAR_NCCreate (hwnd
, wParam
, lParam
);
7005 return TOOLBAR_NCPaint (hwnd
, wParam
, lParam
);
7008 return TOOLBAR_Notify (hwnd
, lParam
);
7010 case WM_NOTIFYFORMAT
:
7011 return TOOLBAR_NotifyFormat (infoPtr
, wParam
, lParam
);
7013 case WM_PRINTCLIENT
:
7015 return TOOLBAR_Paint (hwnd
, wParam
);
7018 return TOOLBAR_SetFocus (hwnd
, wParam
);
7021 return TOOLBAR_SetFont(hwnd
, wParam
, lParam
);
7024 return TOOLBAR_SetRedraw (hwnd
, wParam
, lParam
);
7027 return TOOLBAR_Size (hwnd
, wParam
, lParam
);
7029 case WM_STYLECHANGED
:
7030 return TOOLBAR_StyleChanged (hwnd
, (INT
)wParam
, (LPSTYLESTRUCT
)lParam
);
7032 case WM_SYSCOLORCHANGE
:
7033 return TOOLBAR_SysColorChange (hwnd
);
7035 case WM_THEMECHANGED
:
7036 return theme_changed (hwnd
);
7038 /* case WM_WININICHANGE: */
7043 case WM_MEASUREITEM
:
7045 return SendMessageW (infoPtr
->hwndNotify
, uMsg
, wParam
, lParam
);
7047 /* We see this in Outlook Express 5.x and just does DefWindowProc */
7048 case PGM_FORWARDMOUSE
:
7049 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
7052 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
7053 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
7054 uMsg
, wParam
, lParam
);
7055 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
7061 TOOLBAR_Register (void)
7065 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
7066 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
;
7067 wndClass
.lpfnWndProc
= ToolbarWindowProc
;
7068 wndClass
.cbClsExtra
= 0;
7069 wndClass
.cbWndExtra
= sizeof(TOOLBAR_INFO
*);
7070 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
7071 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_BTNFACE
+ 1);
7072 wndClass
.lpszClassName
= TOOLBARCLASSNAMEW
;
7074 RegisterClassW (&wndClass
);
7079 TOOLBAR_Unregister (void)
7081 UnregisterClassW (TOOLBARCLASSNAMEW
, NULL
);
7084 static HIMAGELIST
TOOLBAR_InsertImageList(PIMLENTRY
**pies
, INT
*cies
, HIMAGELIST himl
, INT id
)
7089 /* Check if the entry already exists */
7090 c
= TOOLBAR_GetImageListEntry(*pies
, *cies
, id
);
7092 /* If this is a new entry we must create it and insert into the array */
7097 c
= Alloc(sizeof(IMLENTRY
));
7100 pnies
= Alloc((*cies
+ 1) * sizeof(PIMLENTRY
));
7101 memcpy(pnies
, *pies
, ((*cies
) * sizeof(PIMLENTRY
)));
7116 static VOID
TOOLBAR_DeleteImageList(PIMLENTRY
**pies
, INT
*cies
)
7120 for (i
= 0; i
< *cies
; i
++)
7130 static PIMLENTRY
TOOLBAR_GetImageListEntry(const PIMLENTRY
*pies
, INT cies
, INT id
)
7138 for (i
= 0; i
< cies
; i
++)
7140 if (pies
[i
]->id
== id
)
7152 static HIMAGELIST
TOOLBAR_GetImageList(const PIMLENTRY
*pies
, INT cies
, INT id
)
7154 HIMAGELIST himlDef
= 0;
7155 PIMLENTRY pie
= TOOLBAR_GetImageListEntry(pies
, cies
, id
);
7158 himlDef
= pie
->himl
;
7164 static BOOL
TOOLBAR_GetButtonInfo(const TOOLBAR_INFO
*infoPtr
, NMTOOLBARW
*nmtb
)
7166 if (infoPtr
->bUnicode
)
7167 return TOOLBAR_SendNotify(&nmtb
->hdr
, infoPtr
, TBN_GETBUTTONINFOW
);
7174 nmtba
.iItem
= nmtb
->iItem
;
7175 nmtba
.pszText
= Buffer
;
7176 nmtba
.cchText
= 256;
7177 ZeroMemory(nmtba
.pszText
, nmtba
.cchText
);
7179 if (TOOLBAR_SendNotify(&nmtba
.hdr
, infoPtr
, TBN_GETBUTTONINFOA
))
7181 int ccht
= strlen(nmtba
.pszText
);
7183 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)nmtba
.pszText
, -1,
7184 nmtb
->pszText
, nmtb
->cchText
);
7186 nmtb
->tbButton
= nmtba
.tbButton
;
7195 static BOOL
TOOLBAR_IsButtonRemovable(const TOOLBAR_INFO
*infoPtr
, int iItem
, PCUSTOMBUTTON btnInfo
)
7199 /* MSDN states that iItem is the index of the button, rather than the
7200 * command ID as used by every other NMTOOLBAR notification */
7202 memcpy(&nmtb
.tbButton
, &btnInfo
->btn
, sizeof(TBBUTTON
));
7204 return TOOLBAR_SendNotify(&nmtb
.hdr
, infoPtr
, TBN_QUERYDELETE
);