4 * Copyright 1998,1999 Eric Kohl
5 * Copyright 2000 Eric Kohl for CodeWeavers
8 * - A little bug in TOOLBAR_DrawMasked()
9 * - Button wrapping (under construction).
11 * - Notifications (under construction).
13 * - Tooltip support (almost complete).
14 * - Unicode suppport (under construction).
15 * - Fix TOOLBAR_SetButtonInfo32A/W.
16 * - TBSTYLE_AUTOSIZE for toolbar and buttons.
17 * - I_IMAGECALLBACK support.
18 * - iString of -1 is undocumented
19 * - Customization dialog:
21 * - Minor buglet in 'available buttons' list:
22 * Buttons are not listed in M$-like order. M$ seems to use a single
23 * internal list to store the button information of both listboxes.
24 * - Drag list support.
25 * - Help and Reset button support.
28 * - Run tests using Waite Group Windows95 API Bible Volume 2.
29 * The second cdrom contains executables addstr.exe, btncount.exe,
30 * btnstate.exe, butstrsz.exe, chkbtn.exe, chngbmp.exe, customiz.exe,
31 * enablebtn.exe, getbmp.exe, getbtn.exe, getflags.exe, hidebtn.exe,
32 * indetbtn.exe, insbtn.exe, pressbtn.exe, setbtnsz.exe, setcmdid.exe,
33 * setparnt.exe, setrows.exe, toolwnd.exe.
34 * - Microsofts controlspy examples.
35 * - Charles Petzold's 'Programming Windows': gadgets.exe
44 #include "wine/unicode.h"
46 #include "imagelist.h"
48 #include "debugtools.h"
50 DEFAULT_DEBUG_CHANNEL(toolbar);
68 DWORD dwStructSize; /* size of TBBUTTON struct */
69 INT nHeight; /* height of the toolbar */
70 INT nWidth; /* width of the toolbar */
76 INT nRows; /* number of button rows */
77 INT nMaxTextRows; /* maximum number of text rows */
78 INT cxMin; /* minimum button width */
79 INT cxMax; /* maximum button width */
80 INT nNumButtons; /* number of buttons */
81 INT nNumBitmaps; /* number of bitmaps */
82 INT nNumStrings; /* number of strings */
83 BOOL bUnicode; /* ASCII (FALSE) or Unicode (TRUE)? */
84 BOOL bCaptured; /* mouse captured? */
87 INT nHotItem; /* index of the "hot" item */
88 HFONT hFont; /* text font */
89 HIMAGELIST himlInt; /* image list created internally */
90 HIMAGELIST himlDef; /* default image list */
91 HIMAGELIST himlHot; /* hot image list */
92 HIMAGELIST himlDis; /* disabled image list */
93 HWND hwndToolTip; /* handle to tool tip control */
94 HWND hwndNotify; /* handle to the window that gets notifications */
95 BOOL bTransparent; /* background transparency flag */
96 BOOL bAutoSize; /* auto size deadlock indicator */
97 BOOL bAnchor; /* anchor highlight enabled */
98 DWORD dwExStyle; /* extended toolbar style */
99 DWORD dwDTFlags; /* DrawText flags */
101 COLORREF clrInsertMark; /* insert mark color */
102 RECT rcBound; /* bounding rectangle */
105 TBUTTON_INFO *buttons; /* pointer to button array */
106 LPWSTR *strings; /* pointer to string array */
107 } TOOLBAR_INFO, *PTOOLBAR_INFO;
110 /* used by customization dialog */
113 PTOOLBAR_INFO tbInfo;
115 } CUSTDLG_INFO, *PCUSTDLG_INFO;
123 } CUSTOMBUTTON, *PCUSTOMBUTTON;
126 #define SEPARATOR_WIDTH 8
128 #define BOTTOM_BORDER 2
129 #define DDARROW_WIDTH 11
131 #define TOOLBAR_GetInfoPtr(hwnd) ((TOOLBAR_INFO *)GetWindowLongA(hwnd,0))
132 #define TOOLBAR_HasText(x, y) (TOOLBAR_GetText(x, y) ? TRUE : FALSE)
133 #define TOOLBAR_HasDropDownArrows(exStyle) ((exStyle & TBSTYLE_EX_DRAWDDARROWS) ? TRUE : FALSE)
136 TOOLBAR_GetText(TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr)
138 LPWSTR lpText = NULL;
140 /* FIXME: iString == -1 is undocumented */
141 if ((HIWORD(btnPtr->iString) != 0) && (btnPtr->iString != -1))
142 lpText = (LPWSTR)btnPtr->iString;
143 else if ((btnPtr->iString >= 0) && (btnPtr->iString < infoPtr->nNumStrings))
144 lpText = infoPtr->strings[btnPtr->iString];
150 TOOLBAR_IsValidBitmapIndex(TOOLBAR_INFO *infoPtr, INT index)
152 if ((index>=0) && (index < infoPtr->nNumBitmaps))
160 TOOLBAR_DrawFlatSeparator (LPRECT lpRect, HDC hdc)
162 INT x = (lpRect->left + lpRect->right) / 2 - 1;
163 INT yBottom = lpRect->bottom - 3;
164 INT yTop = lpRect->top + 1;
166 SelectObject ( hdc, GetSysColorPen (COLOR_3DSHADOW));
167 MoveToEx (hdc, x, yBottom, NULL);
168 LineTo (hdc, x, yTop);
170 SelectObject ( hdc, GetSysColorPen (COLOR_3DHILIGHT));
171 MoveToEx (hdc, x, yBottom, NULL);
172 LineTo (hdc, x, yTop);
176 TOOLBAR_DrawArrow (HDC hdc, INT left, INT top, INT colorRef)
179 SelectObject ( hdc, GetSysColorPen (colorRef));
182 MoveToEx (hdc, x, y, NULL);
183 LineTo (hdc, x+5, y++); x++;
184 MoveToEx (hdc, x, y, NULL);
185 LineTo (hdc, x+3, y++); x++;
186 MoveToEx (hdc, x, y, NULL);
187 LineTo (hdc, x+1, y++);
191 * Draw the text string for this button.
192 * note: infoPtr->himlDis *SHOULD* be non-zero when infoPtr->himlDef
193 * is non-zero, so we can simply check himlDef to see if we have
197 TOOLBAR_DrawString (TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr,
198 HDC hdc, INT nState, DWORD dwStyle)
200 RECT rcText = btnPtr->rect;
204 LPWSTR lpText = NULL;
205 HIMAGELIST himl = infoPtr->himlDef;
207 TRACE ("iString: %x\n", btnPtr->iString);
209 /* get a pointer to the text */
210 lpText = TOOLBAR_GetText(infoPtr, btnPtr);
212 TRACE ("lpText: %s\n", debugstr_w(lpText));
217 InflateRect (&rcText, -3, -3);
219 if (himl && TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap)) {
220 if ((dwStyle & TBSTYLE_LIST) &&
221 ((btnPtr->fsStyle & TBSTYLE_AUTOSIZE) == 0) &&
222 (btnPtr->iBitmap != I_IMAGENONE)) {
223 rcText.left += infoPtr->nBitmapWidth;
226 rcText.top += infoPtr->nBitmapHeight;
230 if (nState & (TBSTATE_PRESSED | TBSTATE_CHECKED))
231 OffsetRect (&rcText, 1, 1);
233 hOldFont = SelectObject (hdc, infoPtr->hFont);
234 nOldBkMode = SetBkMode (hdc, TRANSPARENT);
235 if (!(nState & TBSTATE_ENABLED)) {
236 clrOld = SetTextColor (hdc, GetSysColor (COLOR_3DHILIGHT));
237 OffsetRect (&rcText, 1, 1);
238 DrawTextW (hdc, lpText, -1, &rcText, infoPtr->dwDTFlags);
239 SetTextColor (hdc, GetSysColor (COLOR_3DSHADOW));
240 OffsetRect (&rcText, -1, -1);
241 DrawTextW (hdc, lpText, -1, &rcText, infoPtr->dwDTFlags);
243 else if (nState & TBSTATE_INDETERMINATE) {
244 clrOld = SetTextColor (hdc, GetSysColor (COLOR_3DSHADOW));
245 DrawTextW (hdc, lpText, -1, &rcText, infoPtr->dwDTFlags);
248 clrOld = SetTextColor (hdc, GetSysColor (COLOR_BTNTEXT));
249 DrawTextW (hdc, lpText, -1, &rcText, infoPtr->dwDTFlags);
252 SetTextColor (hdc, clrOld);
253 SelectObject (hdc, hOldFont);
254 if (nOldBkMode != TRANSPARENT)
255 SetBkMode (hdc, nOldBkMode);
261 TOOLBAR_DrawPattern (HDC hdc, LPRECT lpRect)
263 HBRUSH hbr = SelectObject (hdc, COMCTL32_hPattern55AABrush);
264 INT cx = lpRect->right - lpRect->left;
265 INT cy = lpRect->bottom - lpRect->top;
266 PatBlt (hdc, lpRect->left, lpRect->top, cx, cy, 0x00FA0089);
267 SelectObject (hdc, hbr);
272 TOOLBAR_DrawMasked (TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr,
273 HDC hdc, INT x, INT y)
275 /* FIXME: this function is a hack since it uses image list
276 internals directly */
278 HIMAGELIST himl = infoPtr->himlDef;
286 /* create new dc's */
287 hdcImageList = CreateCompatibleDC (0);
288 hdcMask = CreateCompatibleDC (0);
290 /* create new bitmap */
291 hbmMask = CreateBitmap (himl->cx, himl->cy, 1, 1, NULL);
292 SelectObject (hdcMask, hbmMask);
294 /* copy the mask bitmap */
295 SelectObject (hdcImageList, himl->hbmMask);
296 SetBkColor (hdcImageList, RGB(255, 255, 255));
297 SetTextColor (hdcImageList, RGB(0, 0, 0));
298 BitBlt (hdcMask, 0, 0, himl->cx, himl->cy,
299 hdcImageList, himl->cx * btnPtr->iBitmap, 0, SRCCOPY);
301 /* draw the new mask */
302 SelectObject (hdc, GetSysColorBrush (COLOR_3DHILIGHT));
303 BitBlt (hdc, x+1, y+1, himl->cx, himl->cy,
304 hdcMask, 0, 0, 0xB8074A);
306 SelectObject (hdc, GetSysColorBrush (COLOR_3DSHADOW));
307 BitBlt (hdc, x, y, himl->cx, himl->cy,
308 hdcMask, 0, 0, 0xB8074A);
310 DeleteObject (hbmMask);
312 DeleteDC (hdcImageList);
317 TOOLBAR_DrawButton (HWND hwnd, TBUTTON_INFO *btnPtr, HDC hdc)
319 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
320 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
321 BOOL hasDropDownArrow = TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle) &&
322 (btnPtr->fsStyle & TBSTYLE_DROPDOWN);
323 RECT rc, rcArrow, rcBitmap;
325 if (btnPtr->fsState & TBSTATE_HIDDEN)
329 CopyRect (&rcArrow, &rc);
330 CopyRect(&rcBitmap, &rc);
332 FillRect( hdc, &rc, GetSysColorBrush(COLOR_BTNFACE));
334 if (hasDropDownArrow)
336 if (dwStyle & TBSTYLE_FLAT)
337 rc.right = max(rc.left, rc.right - DDARROW_WIDTH);
339 rc.right = max(rc.left, rc.right - DDARROW_WIDTH - 2);
340 rcArrow.left = rc.right;
343 /* Center the bitmap horizontally and vertically */
344 rcBitmap.left+=(infoPtr->nButtonWidth - infoPtr->nBitmapWidth) / 2;
346 if(TOOLBAR_HasText(infoPtr, btnPtr))
347 rcBitmap.top+=2; /* this looks to be the correct value from vmware comparison - cmm */
349 rcBitmap.top+=(infoPtr->nButtonHeight - infoPtr->nBitmapHeight) / 2;
351 TRACE("iBitmap: %d\n", btnPtr->iBitmap);
354 if (btnPtr->fsStyle & TBSTYLE_SEP) {
355 /* with the FLAT style, iBitmap is the width and has already */
356 /* been taken into consideration in calculating the width */
357 /* so now we need to draw the vertical separator */
358 /* empirical tests show that iBitmap can/will be non-zero */
359 /* when drawing the vertical bar... */
360 if ((dwStyle & TBSTYLE_FLAT) /* && (btnPtr->iBitmap == 0) */)
361 TOOLBAR_DrawFlatSeparator (&rc, hdc);
366 if (!(btnPtr->fsState & TBSTATE_ENABLED)) {
367 if (!(dwStyle & TBSTYLE_FLAT))
369 DrawEdge (hdc, &rc, EDGE_RAISED,
370 BF_SOFT | BF_RECT | BF_MIDDLE | BF_ADJUST);
371 if (hasDropDownArrow)
372 DrawEdge (hdc, &rcArrow, EDGE_RAISED,
373 BF_SOFT | BF_RECT | BF_MIDDLE | BF_ADJUST);
376 if (hasDropDownArrow)
378 TOOLBAR_DrawArrow(hdc, rcArrow.left+1, rcArrow.top+1, COLOR_3DHIGHLIGHT);
379 TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top, COLOR_3DSHADOW);
382 if (infoPtr->himlDis &&
383 TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
384 ImageList_Draw (infoPtr->himlDis, btnPtr->iBitmap, hdc,
385 rcBitmap.left, rcBitmap.top, ILD_NORMAL);
387 TOOLBAR_DrawMasked (infoPtr, btnPtr, hdc, rcBitmap.left, rcBitmap.top);
389 TOOLBAR_DrawString (infoPtr, btnPtr, hdc, btnPtr->fsState, dwStyle);
393 /* pressed TBSTYLE_BUTTON */
394 if (btnPtr->fsState & TBSTATE_PRESSED) {
395 if (dwStyle & TBSTYLE_FLAT)
397 DrawEdge (hdc, &rc, BDR_SUNKENOUTER, BF_RECT | BF_MIDDLE | BF_ADJUST);
398 if (hasDropDownArrow)
399 DrawEdge (hdc, &rcArrow, BDR_SUNKENOUTER, BF_RECT | BF_MIDDLE | BF_ADJUST);
403 DrawEdge (hdc, &rc, EDGE_SUNKEN, BF_RECT | BF_MIDDLE | BF_ADJUST);
404 if (hasDropDownArrow)
405 DrawEdge (hdc, &rcArrow, EDGE_SUNKEN, BF_RECT | BF_MIDDLE | BF_ADJUST);
408 if (hasDropDownArrow)
409 TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top, COLOR_WINDOWFRAME);
411 if (TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
412 ImageList_Draw (infoPtr->himlDef, btnPtr->iBitmap, hdc,
413 rcBitmap.left + 1, rcBitmap.top + 1, ILD_NORMAL);
415 TOOLBAR_DrawString (infoPtr, btnPtr, hdc, btnPtr->fsState, dwStyle);
419 /* checked TBSTYLE_CHECK */
420 if ((btnPtr->fsStyle & TBSTYLE_CHECK) &&
421 (btnPtr->fsState & TBSTATE_CHECKED)) {
422 if (dwStyle & TBSTYLE_FLAT)
423 DrawEdge (hdc, &rc, BDR_SUNKENOUTER,
424 BF_RECT | BF_MIDDLE | BF_ADJUST);
426 DrawEdge (hdc, &rc, EDGE_SUNKEN,
427 BF_RECT | BF_MIDDLE | BF_ADJUST);
429 TOOLBAR_DrawPattern (hdc, &rc);
431 if (TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
432 ImageList_Draw (infoPtr->himlDef, btnPtr->iBitmap, hdc,
433 rcBitmap.left + 1, rcBitmap.top + 1, ILD_NORMAL);
434 TOOLBAR_DrawString (infoPtr, btnPtr, hdc, btnPtr->fsState, dwStyle);
439 if (btnPtr->fsState & TBSTATE_INDETERMINATE) {
440 DrawEdge (hdc, &rc, EDGE_RAISED,
441 BF_SOFT | BF_RECT | BF_MIDDLE | BF_ADJUST);
443 TOOLBAR_DrawPattern (hdc, &rc);
444 TOOLBAR_DrawMasked (infoPtr, btnPtr, hdc, rcBitmap.left, rcBitmap.top);
445 TOOLBAR_DrawString (infoPtr, btnPtr, hdc, btnPtr->fsState, dwStyle);
450 if (dwStyle & TBSTYLE_FLAT)
454 DrawEdge (hdc, &rc, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
455 if (hasDropDownArrow)
456 DrawEdge (hdc, &rcArrow, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
460 FrameRect(hdc, &rc, GetSysColorBrush(COLOR_BTNFACE));
461 if (hasDropDownArrow)
462 FrameRect(hdc, &rcArrow, GetSysColorBrush(COLOR_BTNFACE));
465 if (hasDropDownArrow)
466 TOOLBAR_DrawArrow(hdc, rcArrow.left+1, rcArrow.top, COLOR_WINDOWFRAME);
468 if (btnPtr->bHot && infoPtr->himlHot &&
469 TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
470 ImageList_Draw (infoPtr->himlHot, btnPtr->iBitmap, hdc,
471 rcBitmap.left, rcBitmap.top, ILD_NORMAL);
472 else if (TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
473 ImageList_Draw (infoPtr->himlDef, btnPtr->iBitmap, hdc,
474 rcBitmap.left, rcBitmap.top, ILD_NORMAL);
478 DrawEdge (hdc, &rc, EDGE_RAISED,
479 BF_SOFT | BF_RECT | BF_MIDDLE | BF_ADJUST);
481 if (hasDropDownArrow)
483 DrawEdge (hdc, &rcArrow, EDGE_RAISED,
484 BF_SOFT | BF_RECT | BF_MIDDLE | BF_ADJUST);
485 TOOLBAR_DrawArrow(hdc, rcArrow.left, rcArrow.top, COLOR_WINDOWFRAME);
488 if (TOOLBAR_IsValidBitmapIndex(infoPtr,btnPtr->iBitmap))
489 ImageList_Draw (infoPtr->himlDef, btnPtr->iBitmap, hdc,
490 rcBitmap.left, rcBitmap.top, ILD_NORMAL);
493 TOOLBAR_DrawString (infoPtr, btnPtr, hdc, btnPtr->fsState, dwStyle);
498 TOOLBAR_Refresh (HWND hwnd, HDC hdc, PAINTSTRUCT* ps)
500 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
501 TBUTTON_INFO *btnPtr;
505 /* redraw necessary buttons */
506 btnPtr = infoPtr->buttons;
507 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++)
509 if(IntersectRect(&rcTemp, &(ps->rcPaint), &(btnPtr->rect)))
510 TOOLBAR_DrawButton (hwnd, btnPtr, hdc);
515 TOOLBAR_MeasureString(HWND hwnd, INT index, LPSIZE lpSize)
517 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
518 TBUTTON_INFO *btnPtr;
525 hOldFont = SelectObject (hdc, infoPtr->hFont);
527 btnPtr = &infoPtr->buttons[index];
529 if (!(btnPtr->fsState & TBSTATE_HIDDEN) &&
530 (btnPtr->iString > -1) &&
531 (btnPtr->iString < infoPtr->nNumStrings))
533 LPWSTR lpText = infoPtr->strings[btnPtr->iString];
534 GetTextExtentPoint32W (hdc, lpText, strlenW (lpText), lpSize);
537 SelectObject (hdc, hOldFont);
540 TRACE("string size %ld x %ld!\n", lpSize->cx, lpSize->cy);
544 TOOLBAR_CalcStrings (HWND hwnd, LPSIZE lpSize)
546 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
547 TBUTTON_INFO *btnPtr;
555 btnPtr = infoPtr->buttons;
556 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
557 if(TOOLBAR_HasText(infoPtr, btnPtr))
559 TOOLBAR_MeasureString(hwnd,i,&sz);
560 if (sz.cx > lpSize->cx)
562 if (sz.cy > lpSize->cy)
567 TRACE("string size %ld x %ld!\n", lpSize->cx, lpSize->cy);
570 /***********************************************************************
571 * TOOLBAR_WrapToolbar
573 * This function walks through the buttons and seperators in the
574 * toolbar, and sets the TBSTATE_WRAP flag only on those items where
575 * wrapping should occur based on the width of the toolbar window.
576 * It does *not* calculate button placement itself. That task
577 * takes place in TOOLBAR_CalcToolbar. If the program wants to manage
578 * the toolbar wrapping on it's own, it can use the TBSTYLE_WRAPPABLE
579 * flag, and set the TBSTATE_WRAP flags manually on the appropriate items.
583 TOOLBAR_WrapToolbar( HWND hwnd, DWORD dwStyle )
585 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
586 TBUTTON_INFO *btnPtr;
589 BOOL bWrap, bButtonWrap;
591 /* When the toolbar window style is not TBSTYLE_WRAPABLE, */
592 /* no layout is necessary. Applications may use this style */
593 /* to perform their own layout on the toolbar. */
594 if( !(dwStyle & TBSTYLE_WRAPABLE) )
597 btnPtr = infoPtr->buttons;
598 x = infoPtr->nIndent;
600 /* this can get the parents width, to know how far we can extend
601 * this toolbar. We cannot use its height, as there may be multiple
602 * toolbars in a rebar control
604 GetClientRect( GetParent(hwnd), &rc );
605 infoPtr->nWidth = rc.right - rc.left;
608 for (i = 0; i < infoPtr->nNumButtons; i++ )
611 btnPtr[i].fsState &= ~TBSTATE_WRAP;
613 if (btnPtr[i].fsState & TBSTATE_HIDDEN)
616 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
617 /* it is the actual width of the separator. This is used for */
618 /* custom controls in toolbars. */
619 if (btnPtr[i].fsStyle & TBSTYLE_SEP)
620 cx = (btnPtr[i].iBitmap > 0) ?
621 btnPtr[i].iBitmap : SEPARATOR_WIDTH;
623 cx = infoPtr->nButtonWidth;
625 /* Two or more adjacent separators form a separator group. */
626 /* The first separator in a group should be wrapped to the */
627 /* next row if the previous wrapping is on a button. */
629 (btnPtr[i].fsStyle & TBSTYLE_SEP) &&
630 (i + 1 < infoPtr->nNumButtons ) &&
631 (btnPtr[i + 1].fsStyle & TBSTYLE_SEP) )
633 btnPtr[i].fsState |= TBSTATE_WRAP;
634 x = infoPtr->nIndent;
640 /* The layout makes sure the bitmap is visible, but not the button. */
641 if ( x + cx - (infoPtr->nButtonWidth - infoPtr->nBitmapWidth) / 2
646 /* If the current button is a separator and not hidden, */
647 /* go to the next until it reaches a non separator. */
648 /* Wrap the last separator if it is before a button. */
649 while( ( (btnPtr[i].fsStyle & TBSTYLE_SEP) ||
650 (btnPtr[i].fsState & TBSTATE_HIDDEN) ) &&
651 i < infoPtr->nNumButtons )
657 if( bFound && i < infoPtr->nNumButtons )
660 btnPtr[i].fsState |= TBSTATE_WRAP;
661 x = infoPtr->nIndent;
665 else if ( i >= infoPtr->nNumButtons)
668 /* If the current button is not a separator, find the last */
669 /* separator and wrap it. */
670 for ( j = i - 1; j >= 0 && !(btnPtr[j].fsState & TBSTATE_WRAP); j--)
672 if ((btnPtr[j].fsStyle & TBSTYLE_SEP) &&
673 !(btnPtr[j].fsState & TBSTATE_HIDDEN))
677 x = infoPtr->nIndent;
678 btnPtr[j].fsState |= TBSTATE_WRAP;
684 /* If no separator available for wrapping, wrap one of */
685 /* non-hidden previous button. */
689 j >= 0 && !(btnPtr[j].fsState & TBSTATE_WRAP); j--)
691 if (btnPtr[j].fsState & TBSTATE_HIDDEN)
696 x = infoPtr->nIndent;
697 btnPtr[j].fsState |= TBSTATE_WRAP;
703 /* If all above failed, wrap the current button. */
706 btnPtr[i].fsState |= TBSTATE_WRAP;
708 x = infoPtr->nIndent;
709 if (btnPtr[i].fsState & TBSTYLE_SEP )
721 /***********************************************************************
722 * TOOLBAR_CalcToolbar
724 * This function calculates button and separator placement. It first
725 * calculates the button sizes, gets the toolbar window width and then
726 * calls TOOLBAR_WrapToolbar to determine which buttons we need to wrap
727 * on. It assigns a new location to each item and sends this location to
728 * the tooltip window if appropriate. Finally, it updates the rcBound
729 * rect and calculates the new required toolbar window height.
733 TOOLBAR_CalcToolbar (HWND hwnd)
735 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
736 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
737 TBUTTON_INFO *btnPtr;
738 INT i, nRows, nSepRows;
742 BOOL usesBitmaps = FALSE;
743 BOOL hasDropDownArrows = TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle);
745 TOOLBAR_CalcStrings (hwnd, &sizeString);
747 if (dwStyle & TBSTYLE_LIST)
749 infoPtr->nButtonHeight = max(infoPtr->nBitmapHeight, sizeString.cy) + 6;
750 infoPtr->nButtonWidth = infoPtr->nBitmapWidth + sizeString.cx + 6;
753 for (i = 0; i < infoPtr->nNumButtons && !usesBitmaps; i++)
755 if (TOOLBAR_IsValidBitmapIndex(infoPtr,infoPtr->buttons[i].iBitmap))
759 if (sizeString.cy > 0)
762 infoPtr->nButtonHeight = sizeString.cy +
763 infoPtr->nBitmapHeight + 6;
765 infoPtr->nButtonHeight = sizeString.cy + 6;
767 else if (infoPtr->nButtonHeight < infoPtr->nBitmapHeight + 6)
768 infoPtr->nButtonHeight = infoPtr->nBitmapHeight + 6;
770 if (sizeString.cx > infoPtr->nBitmapWidth)
771 infoPtr->nButtonWidth = sizeString.cx + 6;
772 else if (infoPtr->nButtonWidth < infoPtr->nBitmapWidth + 6)
773 infoPtr->nButtonWidth = infoPtr->nBitmapWidth + 6;
776 if ( infoPtr->cxMin >= 0 && infoPtr->nButtonWidth < infoPtr->cxMin )
777 infoPtr->nButtonWidth = infoPtr->cxMin;
778 if ( infoPtr->cxMax >= 0 && infoPtr->nButtonWidth > infoPtr->cxMax )
779 infoPtr->nButtonWidth = infoPtr->cxMax;
781 TOOLBAR_WrapToolbar( hwnd, dwStyle );
783 x = infoPtr->nIndent;
784 y = (dwStyle & TBSTYLE_FLAT) ? 0 : TOP_BORDER;
787 * We will set the height below, and we set the width on entry
788 * so we do not reset them here..
791 GetClientRect( hwnd, &rc );
792 /* get initial values for toolbar */
793 infoPtr->nWidth = rc.right - rc.left;
794 infoPtr->nHeight = rc.bottom - rc.top;
797 /* from above, minimum is a button, and possible text */
798 cx = infoPtr->nButtonWidth;
800 /* cannot use just ButtonHeight, we may have no buttons! */
801 if (infoPtr->nNumButtons > 0)
802 infoPtr->nHeight = infoPtr->nButtonHeight;
804 cy = infoPtr->nHeight;
806 nRows = nSepRows = 0;
808 infoPtr->rcBound.top = y;
809 infoPtr->rcBound.left = x;
810 infoPtr->rcBound.bottom = y + cy;
811 infoPtr->rcBound.right = x;
813 btnPtr = infoPtr->buttons;
815 /* do not base height/width on parent, if the parent is a */
816 /* rebar control it could have multiple rows of toolbars */
817 /* GetClientRect( GetParent(hwnd), &rc ); */
818 /* cx = rc.right - rc.left; */
819 /* cy = rc.bottom - rc.top; */
821 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++ )
824 if (btnPtr->fsState & TBSTATE_HIDDEN)
826 SetRectEmpty (&btnPtr->rect);
830 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
831 /* it is the actual width of the separator. This is used for */
832 /* custom controls in toolbars. */
833 if (btnPtr->fsStyle & TBSTYLE_SEP)
834 cx = (btnPtr->iBitmap > 0) ?
835 btnPtr->iBitmap : SEPARATOR_WIDTH;
838 if (btnPtr->fsStyle & TBSTYLE_AUTOSIZE)
841 TOOLBAR_MeasureString(hwnd,i,&sz);
845 cx = infoPtr->nButtonWidth;
847 if (hasDropDownArrows && (btnPtr->fsStyle & TBSTYLE_DROPDOWN))
850 cy = infoPtr->nHeight;
852 if (btnPtr->fsState & TBSTATE_WRAP )
855 SetRect (&btnPtr->rect, x, y, x + cx, y + cy);
857 if (infoPtr->rcBound.left > x)
858 infoPtr->rcBound.left = x;
859 if (infoPtr->rcBound.right < x + cx)
860 infoPtr->rcBound.right = x + cx;
861 if (infoPtr->rcBound.bottom < y + cy)
862 infoPtr->rcBound.bottom = y + cy;
864 /* Set the toolTip only for non-hidden, non-separator button */
865 if (infoPtr->hwndToolTip && !(btnPtr->fsStyle & TBSTYLE_SEP ))
869 ZeroMemory (&ti, sizeof(TTTOOLINFOA));
870 ti.cbSize = sizeof(TTTOOLINFOA);
872 ti.uId = btnPtr->idCommand;
873 ti.rect = btnPtr->rect;
874 SendMessageA (infoPtr->hwndToolTip, TTM_NEWTOOLRECTA,
878 /* btnPtr->nRow is zero based. The space between the rows is */
879 /* also considered as a row. */
880 btnPtr->nRow = nRows + nSepRows;
883 if ( !(btnPtr->fsStyle & TBSTYLE_SEP) )
887 /* UNDOCUMENTED: If a separator has a non zero bitmap index, */
888 /* it is the actual width of the separator. This is used for */
889 /* custom controls in toolbars. */
890 y += cy + ( (btnPtr->iBitmap > 0 ) ?
891 btnPtr->iBitmap : SEPARATOR_WIDTH) * 2 /3;
893 /* nSepRows is used to calculate the extra height follwoing */
897 x = infoPtr->nIndent;
904 /* infoPtr->nRows is the number of rows on the toolbar */
905 infoPtr->nRows = nRows + nSepRows + 1;
907 /* nSepRows * (infoPtr->nBitmapHeight + 1) is the space following */
909 infoPtr->nHeight = TOP_BORDER + (nRows + 1) * infoPtr->nButtonHeight +
910 nSepRows * (SEPARATOR_WIDTH * 2 / 3) +
911 nSepRows * (infoPtr->nBitmapHeight + 1) +
913 TRACE("toolbar height %d, button width %d\n", infoPtr->nHeight, infoPtr->nButtonWidth);
918 TOOLBAR_InternalHitTest (HWND hwnd, LPPOINT lpPt)
920 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
921 TBUTTON_INFO *btnPtr;
924 btnPtr = infoPtr->buttons;
925 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
926 if (btnPtr->fsState & TBSTATE_HIDDEN)
929 if (btnPtr->fsStyle & TBSTYLE_SEP) {
930 if (PtInRect (&btnPtr->rect, *lpPt)) {
931 TRACE(" ON SEPARATOR %d!\n", i);
936 if (PtInRect (&btnPtr->rect, *lpPt)) {
937 TRACE(" ON BUTTON %d!\n", i);
943 TRACE(" NOWHERE!\n");
949 TOOLBAR_GetButtonIndex (TOOLBAR_INFO *infoPtr, INT idCommand)
951 TBUTTON_INFO *btnPtr;
954 btnPtr = infoPtr->buttons;
955 for (i = 0; i < infoPtr->nNumButtons; i++, btnPtr++) {
956 if (btnPtr->idCommand == idCommand) {
957 TRACE("command=%d index=%d\n", idCommand, i);
961 TRACE("no index found for command=%d\n", idCommand);
967 TOOLBAR_GetCheckedGroupButtonIndex (TOOLBAR_INFO *infoPtr, INT nIndex)
969 TBUTTON_INFO *btnPtr;
972 if ((nIndex < 0) || (nIndex > infoPtr->nNumButtons))
975 /* check index button */
976 btnPtr = &infoPtr->buttons[nIndex];
977 if ((btnPtr->fsStyle & TBSTYLE_CHECKGROUP) == TBSTYLE_CHECKGROUP) {
978 if (btnPtr->fsState & TBSTATE_CHECKED)
982 /* check previous buttons */
983 nRunIndex = nIndex - 1;
984 while (nRunIndex >= 0) {
985 btnPtr = &infoPtr->buttons[nRunIndex];
986 if ((btnPtr->fsStyle & TBSTYLE_CHECKGROUP) == TBSTYLE_CHECKGROUP) {
987 if (btnPtr->fsState & TBSTATE_CHECKED)
995 /* check next buttons */
996 nRunIndex = nIndex + 1;
997 while (nRunIndex < infoPtr->nNumButtons) {
998 btnPtr = &infoPtr->buttons[nRunIndex];
999 if ((btnPtr->fsStyle & TBSTYLE_CHECKGROUP) == TBSTYLE_CHECKGROUP) {
1000 if (btnPtr->fsState & TBSTATE_CHECKED)
1013 TOOLBAR_RelayEvent (HWND hwndTip, HWND hwndMsg, UINT uMsg,
1014 WPARAM wParam, LPARAM lParam)
1020 msg.wParam = wParam;
1021 msg.lParam = lParam;
1022 msg.time = GetMessageTime ();
1023 msg.pt.x = LOWORD(GetMessagePos ());
1024 msg.pt.y = HIWORD(GetMessagePos ());
1026 SendMessageA (hwndTip, TTM_RELAYEVENT, 0, (LPARAM)&msg);
1030 /***********************************************************************
1031 * TOOLBAR_CustomizeDialogProc
1032 * This function implements the toolbar customization dialog.
1035 TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1037 PCUSTDLG_INFO custInfo = (PCUSTDLG_INFO)GetWindowLongA (hwnd, DWL_USER);
1038 PCUSTOMBUTTON btnInfo;
1044 custInfo = (PCUSTDLG_INFO)lParam;
1045 SetWindowLongA (hwnd, DWL_USER, (DWORD)custInfo);
1053 /* send TBN_QUERYINSERT notification */
1054 nmtb.hdr.hwndFrom = hwnd;
1055 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1056 nmtb.hdr.code = TBN_QUERYINSERT;
1057 nmtb.iItem = custInfo->tbInfo->nNumButtons;
1059 if (!SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1060 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb))
1063 /* add items to 'toolbar buttons' list and check if removable */
1064 for (i = 0; i < custInfo->tbInfo->nNumButtons; i++)
1066 btnInfo = (PCUSTOMBUTTON)COMCTL32_Alloc(sizeof(CUSTOMBUTTON));
1067 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
1068 btnInfo->btn.fsStyle = TBSTYLE_SEP;
1069 btnInfo->bVirtual = FALSE;
1070 LoadStringA (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
1072 /* send TBN_QUERYDELETE notification */
1073 nmtb.hdr.hwndFrom = hwnd;
1074 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1075 nmtb.hdr.code = TBN_QUERYDELETE;
1078 btnInfo->bRemovable = SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1079 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb);
1081 index = (int)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_ADDSTRING, 0, 0);
1082 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1085 /* insert separator button into 'available buttons' list */
1086 btnInfo = (PCUSTOMBUTTON)COMCTL32_Alloc(sizeof(CUSTOMBUTTON));
1087 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
1088 btnInfo->btn.fsStyle = TBSTYLE_SEP;
1089 btnInfo->bVirtual = FALSE;
1090 btnInfo->bRemovable = TRUE;
1091 LoadStringA (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
1092 index = (int)SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_ADDSTRING, 0, (LPARAM)btnInfo);
1093 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1095 /* insert all buttons into dsa */
1098 /* send TBN_GETBUTTONINFO notification */
1099 nmtb.hdr.hwndFrom = hwnd;
1100 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1101 nmtb.hdr.code = TBN_GETBUTTONINFOA;
1103 nmtb.pszText = Buffer;
1106 if (!SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1107 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb))
1110 TRACE("style: %x\n", nmtb.tbButton.fsStyle);
1112 /* insert button into the apropriate list */
1113 index = TOOLBAR_GetButtonIndex (custInfo->tbInfo, nmtb.tbButton.idCommand);
1116 btnInfo = (PCUSTOMBUTTON)COMCTL32_Alloc(sizeof(CUSTOMBUTTON));
1117 memcpy (&btnInfo->btn, &nmtb.tbButton, sizeof(TBBUTTON));
1118 btnInfo->bVirtual = FALSE;
1119 btnInfo->bRemovable = TRUE;
1120 if (!(nmtb.tbButton.fsStyle & TBSTYLE_SEP))
1121 strcpy (btnInfo->text, nmtb.pszText);
1123 index = SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_ADDSTRING, 0, 0);
1124 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1128 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
1129 memcpy (&btnInfo->btn, &nmtb.tbButton, sizeof(TBBUTTON));
1130 if (!(nmtb.tbButton.fsStyle & TBSTYLE_SEP))
1131 strcpy (btnInfo->text, nmtb.pszText);
1133 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1137 /* select first item in the 'available' list */
1138 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETCURSEL, 0, 0);
1140 /* append 'virtual' separator button to the 'toolbar buttons' list */
1141 btnInfo = (PCUSTOMBUTTON)COMCTL32_Alloc(sizeof(CUSTOMBUTTON));
1142 memset (&btnInfo->btn, 0, sizeof(TBBUTTON));
1143 btnInfo->btn.fsStyle = TBSTYLE_SEP;
1144 btnInfo->bVirtual = TRUE;
1145 btnInfo->bRemovable = FALSE;
1146 LoadStringA (COMCTL32_hModule, IDS_SEPARATOR, btnInfo->text, 64);
1147 index = (int)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_ADDSTRING, 0, (LPARAM)btnInfo);
1148 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1150 /* select last item in the 'toolbar' list */
1151 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETCURSEL, index, 0);
1152 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETTOPINDEX, index, 0);
1154 /* set focus and disable buttons */
1155 PostMessageA (hwnd, WM_USER, 0, 0);
1160 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
1161 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
1162 EnableWindow (GetDlgItem (hwnd,IDC_REMOVE_BTN), FALSE);
1163 SetFocus (GetDlgItem (hwnd, IDC_TOOLBARBTN_LBOX));
1167 EndDialog(hwnd, FALSE);
1171 switch (LOWORD(wParam))
1173 case IDC_TOOLBARBTN_LBOX:
1174 if (HIWORD(wParam) == LBN_SELCHANGE)
1176 PCUSTOMBUTTON btnInfo;
1181 count = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
1182 index = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
1184 /* send TBN_QUERYINSERT notification */
1185 nmtb.hdr.hwndFrom = hwnd;
1186 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1187 nmtb.hdr.code = TBN_QUERYINSERT;
1190 SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1191 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb);
1193 /* get list box item */
1194 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
1196 if (index == (count - 1))
1198 /* last item (virtual separator) */
1199 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
1200 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
1202 else if (index == (count - 2))
1204 /* second last item (last non-virtual item) */
1205 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
1206 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
1208 else if (index == 0)
1211 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
1212 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
1216 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
1217 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
1220 EnableWindow (GetDlgItem (hwnd,IDC_REMOVE_BTN), btnInfo->bRemovable);
1224 case IDC_MOVEUP_BTN:
1226 PCUSTOMBUTTON btnInfo;
1230 count = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
1231 index = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
1232 TRACE("Move up: index %d\n", index);
1234 /* send TBN_QUERYINSERT notification */
1235 nmtb.hdr.hwndFrom = hwnd;
1236 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1237 nmtb.hdr.code = TBN_QUERYINSERT;
1240 if (SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1241 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb))
1243 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
1245 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_DELETESTRING, index, 0);
1246 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_INSERTSTRING, index-1, 0);
1247 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index-1, (LPARAM)btnInfo);
1248 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETCURSEL, index-1 , 0);
1251 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), FALSE);
1252 else if (index >= (count - 3))
1253 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), TRUE);
1255 SendMessageA (custInfo->tbHwnd, TB_DELETEBUTTON, index, 0);
1256 SendMessageA (custInfo->tbHwnd, TB_INSERTBUTTONA, index-1, (LPARAM)&(btnInfo->btn));
1261 case IDC_MOVEDN_BTN: /* move down */
1263 PCUSTOMBUTTON btnInfo;
1267 count = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
1268 index = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
1269 TRACE("Move up: index %d\n", index);
1271 /* send TBN_QUERYINSERT notification */
1272 nmtb.hdr.hwndFrom = hwnd;
1273 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1274 nmtb.hdr.code = TBN_QUERYINSERT;
1277 if (SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1278 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb))
1280 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
1282 /* move button down */
1283 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_DELETESTRING, index, 0);
1284 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_INSERTSTRING, index+1, 0);
1285 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index+1, (LPARAM)btnInfo);
1286 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETCURSEL, index+1 , 0);
1289 EnableWindow (GetDlgItem (hwnd,IDC_MOVEUP_BTN), TRUE);
1290 else if (index >= (count - 3))
1291 EnableWindow (GetDlgItem (hwnd,IDC_MOVEDN_BTN), FALSE);
1293 SendMessageA (custInfo->tbHwnd, TB_DELETEBUTTON, index, 0);
1294 SendMessageA (custInfo->tbHwnd, TB_INSERTBUTTONA, index+1, (LPARAM)&(btnInfo->btn));
1299 case IDC_REMOVE_BTN: /* remove button */
1301 PCUSTOMBUTTON btnInfo;
1304 index = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
1305 TRACE("Remove: index %d\n", index);
1307 /* send TBN_QUERYDELETE notification */
1308 nmtb.hdr.hwndFrom = hwnd;
1309 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1310 nmtb.hdr.code = TBN_QUERYDELETE;
1313 if (SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1314 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb))
1316 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, index, 0);
1317 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_DELETESTRING, index, 0);
1318 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETCURSEL, index , 0);
1320 SendMessageA (custInfo->tbHwnd, TB_DELETEBUTTON, index, 0);
1322 /* insert into 'available button' list */
1323 if (!(btnInfo->btn.fsStyle & TBSTYLE_SEP))
1325 index = (int)SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_ADDSTRING, 0, 0);
1326 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1329 COMCTL32_Free (btnInfo);
1334 case IDOK: /* Add button */
1339 count = SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_GETCOUNT, 0, 0);
1340 index = SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_GETCURSEL, 0, 0);
1341 TRACE("Add: index %d\n", index);
1343 /* send TBN_QUERYINSERT notification */
1344 nmtb.hdr.hwndFrom = hwnd;
1345 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
1346 nmtb.hdr.code = TBN_QUERYINSERT;
1349 if (SendMessageA (custInfo->tbInfo->hwndNotify, WM_NOTIFY,
1350 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb))
1352 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_GETITEMDATA, index, 0);
1356 /* remove from 'available buttons' list */
1357 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_DELETESTRING, index, 0);
1358 if (index == count-1)
1359 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETCURSEL, index-1 , 0);
1361 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETCURSEL, index , 0);
1365 PCUSTOMBUTTON btnNew;
1367 /* duplicate 'separator' button */
1368 btnNew = (PCUSTOMBUTTON)COMCTL32_Alloc (sizeof(CUSTOMBUTTON));
1369 memcpy (btnNew, btnInfo, sizeof(CUSTOMBUTTON));
1373 /* insert into 'toolbar button' list */
1374 index = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCURSEL, 0, 0);
1375 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_INSERTSTRING, index, 0);
1376 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, index, (LPARAM)btnInfo);
1378 SendMessageA (custInfo->tbHwnd, TB_INSERTBUTTONA, index, (LPARAM)&(btnInfo->btn));
1384 EndDialog(hwnd, FALSE);
1394 /* delete items from 'toolbar buttons' listbox*/
1395 count = SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETCOUNT, 0, 0);
1396 for (i = 0; i < count; i++)
1398 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_GETITEMDATA, i, 0);
1399 COMCTL32_Free(btnInfo);
1400 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_SETITEMDATA, 0, 0);
1402 SendDlgItemMessageA (hwnd, IDC_TOOLBARBTN_LBOX, LB_RESETCONTENT, 0, 0);
1405 /* delete items from 'available buttons' listbox*/
1406 count = SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_GETCOUNT, 0, 0);
1407 for (i = 0; i < count; i++)
1409 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_GETITEMDATA, i, 0);
1410 COMCTL32_Free(btnInfo);
1411 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_SETITEMDATA, i, 0);
1413 SendDlgItemMessageA (hwnd, IDC_AVAILBTN_LBOX, LB_RESETCONTENT, 0, 0);
1418 if (wParam == IDC_AVAILBTN_LBOX || wParam == IDC_TOOLBARBTN_LBOX)
1420 LPDRAWITEMSTRUCT lpdis = (LPDRAWITEMSTRUCT)lParam;
1425 COLORREF oldText = 0;
1429 btnInfo = (PCUSTOMBUTTON)SendDlgItemMessageA (hwnd, wParam, LB_GETITEMDATA, (WPARAM)lpdis->itemID, 0);
1430 if (btnInfo == NULL)
1432 FIXME("btnInfo invalid!\n");
1436 /* set colors and select objects */
1437 oldBk = SetBkColor (lpdis->hDC, GetSysColor((lpdis->itemState & ODS_FOCUS)?COLOR_HIGHLIGHT:COLOR_WINDOW));
1438 if (btnInfo->bVirtual)
1439 oldText = SetTextColor (lpdis->hDC, GetSysColor(COLOR_GRAYTEXT));
1441 oldText = SetTextColor (lpdis->hDC, GetSysColor((lpdis->itemState & ODS_FOCUS)?COLOR_HIGHLIGHTTEXT:COLOR_WINDOWTEXT));
1442 hOldPen = SelectObject (lpdis->hDC, GetSysColorPen ((lpdis->itemState & ODS_SELECTED)?COLOR_HIGHLIGHT:COLOR_WINDOW));
1443 hOldBrush = SelectObject (lpdis->hDC, GetSysColorBrush ((lpdis->itemState & ODS_FOCUS)?COLOR_HIGHLIGHT:COLOR_WINDOW));
1445 /* fill background rectangle */
1446 Rectangle (lpdis->hDC, lpdis->rcItem.left, lpdis->rcItem.top,
1447 lpdis->rcItem.right, lpdis->rcItem.bottom);
1449 /* calculate button and text rectangles */
1450 CopyRect (&rcButton, &lpdis->rcItem);
1451 InflateRect (&rcButton, -1, -1);
1452 CopyRect (&rcText, &rcButton);
1453 rcButton.right = rcButton.left + custInfo->tbInfo->nBitmapWidth + 6;
1454 rcText.left = rcButton.right + 2;
1456 /* draw focus rectangle */
1457 if (lpdis->itemState & ODS_FOCUS)
1458 DrawFocusRect (lpdis->hDC, &lpdis->rcItem);
1461 DrawEdge (lpdis->hDC, &rcButton, EDGE_RAISED, BF_RECT|BF_MIDDLE|BF_SOFT);
1463 /* draw image and text */
1464 if ((btnInfo->btn.fsStyle & TBSTYLE_SEP) == 0)
1465 ImageList_Draw (custInfo->tbInfo->himlDef, btnInfo->btn.iBitmap, lpdis->hDC,
1466 rcButton.left+3, rcButton.top+3, ILD_NORMAL);
1467 DrawTextA (lpdis->hDC, btnInfo->text, -1, &rcText,
1468 DT_LEFT | DT_VCENTER | DT_SINGLELINE);
1470 /* delete objects and reset colors */
1471 SelectObject (lpdis->hDC, hOldBrush);
1472 SelectObject (lpdis->hDC, hOldPen);
1473 SetBkColor (lpdis->hDC, oldBk);
1474 SetTextColor (lpdis->hDC, oldText);
1480 case WM_MEASUREITEM:
1481 if (wParam == IDC_AVAILBTN_LBOX || wParam == IDC_TOOLBARBTN_LBOX)
1483 MEASUREITEMSTRUCT *lpmis = (MEASUREITEMSTRUCT*)lParam;
1485 if (custInfo && custInfo->tbInfo)
1486 lpmis->itemHeight = custInfo->tbInfo->nBitmapHeight + 8;
1488 lpmis->itemHeight = 15 + 8; /* default height */
1500 /***********************************************************************
1501 * TOOLBAR_AddBitmap: Add the bitmaps to the default image list.
1505 TOOLBAR_AddBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
1507 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1508 LPTBADDBITMAP lpAddBmp = (LPTBADDBITMAP)lParam;
1509 INT nIndex = 0, nButtons, nCount;
1512 TRACE("hwnd=%x wParam=%x lParam=%lx\n", hwnd, wParam, lParam);
1516 if (lpAddBmp->hInst == HINST_COMMCTRL)
1518 if ((lpAddBmp->nID & ~1) == IDB_STD_SMALL_COLOR)
1520 else if ((lpAddBmp->nID & ~1) == IDB_VIEW_SMALL_COLOR)
1522 else if ((lpAddBmp->nID & ~1) == IDB_HIST_SMALL_COLOR)
1527 TRACE ("adding %d internal bitmaps!\n", nButtons);
1529 /* Windows resize all the buttons to the size of a newly added standard image */
1530 if (lpAddBmp->nID & 1)
1533 /* FIXME: on windows the size of the images is 25x24 but the size of the bitmap
1534 * in rsrc is only 24x24. Fix the bitmap (how?) and then fix this
1536 SendMessageA (hwnd, TB_SETBITMAPSIZE, 0,
1537 MAKELPARAM((WORD)24, (WORD)24));
1538 SendMessageA (hwnd, TB_SETBUTTONSIZE, 0,
1539 MAKELPARAM((WORD)31, (WORD)30));
1544 SendMessageA (hwnd, TB_SETBITMAPSIZE, 0,
1545 MAKELPARAM((WORD)16, (WORD)16));
1546 SendMessageA (hwnd, TB_SETBUTTONSIZE, 0,
1547 MAKELPARAM((WORD)22, (WORD)22));
1550 TOOLBAR_CalcToolbar (hwnd);
1554 nButtons = (INT)wParam;
1558 TRACE ("adding %d bitmaps!\n", nButtons);
1561 if (!(infoPtr->himlDef)) {
1562 /* create new default image list */
1563 TRACE ("creating default image list!\n");
1566 ImageList_Create (infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
1567 ILC_COLOR | ILC_MASK, nButtons, 2);
1568 infoPtr->himlInt = infoPtr->himlDef;
1571 nCount = ImageList_GetImageCount(infoPtr->himlDef);
1573 /* Add bitmaps to the default image list */
1574 if (lpAddBmp->hInst == (HINSTANCE)0)
1577 ImageList_AddMasked (infoPtr->himlDef, (HBITMAP)lpAddBmp->nID,
1580 else if (lpAddBmp->hInst == HINST_COMMCTRL)
1582 /* Add system bitmaps */
1583 switch (lpAddBmp->nID)
1585 case IDB_STD_SMALL_COLOR:
1586 hbmLoad = LoadBitmapA (COMCTL32_hModule,
1587 MAKEINTRESOURCEA(IDB_STD_SMALL));
1588 nIndex = ImageList_AddMasked (infoPtr->himlDef,
1589 hbmLoad, CLR_DEFAULT);
1590 DeleteObject (hbmLoad);
1593 case IDB_STD_LARGE_COLOR:
1594 hbmLoad = LoadBitmapA (COMCTL32_hModule,
1595 MAKEINTRESOURCEA(IDB_STD_LARGE));
1596 nIndex = ImageList_AddMasked (infoPtr->himlDef,
1597 hbmLoad, CLR_DEFAULT);
1598 DeleteObject (hbmLoad);
1601 case IDB_VIEW_SMALL_COLOR:
1602 hbmLoad = LoadBitmapA (COMCTL32_hModule,
1603 MAKEINTRESOURCEA(IDB_VIEW_SMALL));
1604 nIndex = ImageList_AddMasked (infoPtr->himlDef,
1605 hbmLoad, CLR_DEFAULT);
1606 DeleteObject (hbmLoad);
1609 case IDB_VIEW_LARGE_COLOR:
1610 hbmLoad = LoadBitmapA (COMCTL32_hModule,
1611 MAKEINTRESOURCEA(IDB_VIEW_LARGE));
1612 nIndex = ImageList_AddMasked (infoPtr->himlDef,
1613 hbmLoad, CLR_DEFAULT);
1614 DeleteObject (hbmLoad);
1617 case IDB_HIST_SMALL_COLOR:
1618 hbmLoad = LoadBitmapA (COMCTL32_hModule,
1619 MAKEINTRESOURCEA(IDB_HIST_SMALL));
1620 nIndex = ImageList_AddMasked (infoPtr->himlDef,
1621 hbmLoad, CLR_DEFAULT);
1622 DeleteObject (hbmLoad);
1625 case IDB_HIST_LARGE_COLOR:
1626 hbmLoad = LoadBitmapA (COMCTL32_hModule,
1627 MAKEINTRESOURCEA(IDB_HIST_LARGE));
1628 nIndex = ImageList_AddMasked (infoPtr->himlDef,
1629 hbmLoad, CLR_DEFAULT);
1630 DeleteObject (hbmLoad);
1634 nIndex = ImageList_GetImageCount (infoPtr->himlDef);
1635 ERR ("invalid imagelist!\n");
1641 hbmLoad = LoadBitmapA (lpAddBmp->hInst, (LPSTR)lpAddBmp->nID);
1642 nIndex = ImageList_AddMasked (infoPtr->himlDef, hbmLoad, CLR_DEFAULT);
1643 DeleteObject (hbmLoad);
1648 INT imagecount = ImageList_GetImageCount(infoPtr->himlDef);
1650 if (infoPtr->nNumBitmaps + nButtons != imagecount)
1652 WARN("Desired images do not match received images : Previous image number %i Previous images in list %i added %i expecting total %i, Images in list %i\n",
1653 infoPtr->nNumBitmaps, nCount, imagecount - nCount,
1654 infoPtr->nNumBitmaps+nButtons,imagecount);
1656 infoPtr->nNumBitmaps = imagecount;
1659 infoPtr->nNumBitmaps += nButtons;
1662 InvalidateRect(hwnd, NULL, FALSE);
1669 TOOLBAR_AddButtonsA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1671 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1672 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
1673 INT nOldButtons, nNewButtons, nAddButtons, nCount;
1675 TRACE("adding %d buttons!\n", wParam);
1677 nAddButtons = (UINT)wParam;
1678 nOldButtons = infoPtr->nNumButtons;
1679 nNewButtons = nOldButtons + nAddButtons;
1681 if (infoPtr->nNumButtons == 0) {
1683 COMCTL32_Alloc (sizeof(TBUTTON_INFO) * nNewButtons);
1686 TBUTTON_INFO *oldButtons = infoPtr->buttons;
1688 COMCTL32_Alloc (sizeof(TBUTTON_INFO) * nNewButtons);
1689 memcpy (&infoPtr->buttons[0], &oldButtons[0],
1690 nOldButtons * sizeof(TBUTTON_INFO));
1691 COMCTL32_Free (oldButtons);
1694 infoPtr->nNumButtons = nNewButtons;
1696 /* insert new button data */
1697 for (nCount = 0; nCount < nAddButtons; nCount++) {
1698 TBUTTON_INFO *btnPtr = &infoPtr->buttons[nOldButtons+nCount];
1699 btnPtr->iBitmap = lpTbb[nCount].iBitmap;
1700 btnPtr->idCommand = lpTbb[nCount].idCommand;
1701 btnPtr->fsState = lpTbb[nCount].fsState;
1702 btnPtr->fsStyle = lpTbb[nCount].fsStyle;
1703 btnPtr->dwData = lpTbb[nCount].dwData;
1704 btnPtr->iString = lpTbb[nCount].iString;
1705 btnPtr->bHot = FALSE;
1707 if ((infoPtr->hwndToolTip) && !(btnPtr->fsStyle & TBSTYLE_SEP)) {
1710 ZeroMemory (&ti, sizeof(TTTOOLINFOA));
1711 ti.cbSize = sizeof (TTTOOLINFOA);
1713 ti.uId = btnPtr->idCommand;
1715 ti.lpszText = LPSTR_TEXTCALLBACKA;
1717 SendMessageA (infoPtr->hwndToolTip, TTM_ADDTOOLA,
1722 TOOLBAR_CalcToolbar (hwnd);
1724 InvalidateRect(hwnd, NULL, FALSE);
1731 TOOLBAR_AddButtonsW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1733 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1734 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
1735 INT nOldButtons, nNewButtons, nAddButtons, nCount;
1737 TRACE("adding %d buttons!\n", wParam);
1739 nAddButtons = (UINT)wParam;
1740 nOldButtons = infoPtr->nNumButtons;
1741 nNewButtons = nOldButtons + nAddButtons;
1743 if (infoPtr->nNumButtons == 0) {
1745 COMCTL32_Alloc (sizeof(TBUTTON_INFO) * nNewButtons);
1748 TBUTTON_INFO *oldButtons = infoPtr->buttons;
1750 COMCTL32_Alloc (sizeof(TBUTTON_INFO) * nNewButtons);
1751 memcpy (&infoPtr->buttons[0], &oldButtons[0],
1752 nOldButtons * sizeof(TBUTTON_INFO));
1753 COMCTL32_Free (oldButtons);
1756 infoPtr->nNumButtons = nNewButtons;
1758 /* insert new button data */
1759 for (nCount = 0; nCount < nAddButtons; nCount++) {
1760 TBUTTON_INFO *btnPtr = &infoPtr->buttons[nOldButtons+nCount];
1761 btnPtr->iBitmap = lpTbb[nCount].iBitmap;
1762 btnPtr->idCommand = lpTbb[nCount].idCommand;
1763 btnPtr->fsState = lpTbb[nCount].fsState;
1764 btnPtr->fsStyle = lpTbb[nCount].fsStyle;
1765 btnPtr->dwData = lpTbb[nCount].dwData;
1766 btnPtr->iString = lpTbb[nCount].iString;
1767 btnPtr->bHot = FALSE;
1769 if ((infoPtr->hwndToolTip) && !(btnPtr->fsStyle & TBSTYLE_SEP)) {
1772 ZeroMemory (&ti, sizeof(TTTOOLINFOW));
1773 ti.cbSize = sizeof (TTTOOLINFOW);
1775 ti.uId = btnPtr->idCommand;
1777 ti.lpszText = LPSTR_TEXTCALLBACKW;
1779 SendMessageW (infoPtr->hwndToolTip, TTM_ADDTOOLW,
1784 TOOLBAR_CalcToolbar (hwnd);
1786 InvalidateRect(hwnd, NULL, FALSE);
1793 TOOLBAR_AddStringA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1795 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1798 if ((wParam) && (HIWORD(lParam) == 0)) {
1801 TRACE("adding string from resource!\n");
1803 len = LoadStringA ((HINSTANCE)wParam, (UINT)lParam,
1806 TRACE("len=%d \"%s\"\n", len, szString);
1807 nIndex = infoPtr->nNumStrings;
1808 if (infoPtr->nNumStrings == 0) {
1810 COMCTL32_Alloc (sizeof(LPWSTR));
1813 LPWSTR *oldStrings = infoPtr->strings;
1815 COMCTL32_Alloc (sizeof(LPWSTR) * (infoPtr->nNumStrings + 1));
1816 memcpy (&infoPtr->strings[0], &oldStrings[0],
1817 sizeof(LPWSTR) * infoPtr->nNumStrings);
1818 COMCTL32_Free (oldStrings);
1821 lenW = MultiByteToWideChar( CP_ACP, 0, szString, -1, NULL, 0 );
1822 infoPtr->strings[infoPtr->nNumStrings] = COMCTL32_Alloc (sizeof(WCHAR)*lenW);
1823 MultiByteToWideChar( CP_ACP, 0, szString, -1,
1824 infoPtr->strings[infoPtr->nNumStrings], lenW );
1825 infoPtr->nNumStrings++;
1828 LPSTR p = (LPSTR)lParam;
1833 TRACE("adding string(s) from array!\n");
1835 nIndex = infoPtr->nNumStrings;
1838 TRACE("len=%d \"%s\"\n", len, p);
1840 if (infoPtr->nNumStrings == 0) {
1842 COMCTL32_Alloc (sizeof(LPWSTR));
1845 LPWSTR *oldStrings = infoPtr->strings;
1847 COMCTL32_Alloc (sizeof(LPWSTR) * (infoPtr->nNumStrings + 1));
1848 memcpy (&infoPtr->strings[0], &oldStrings[0],
1849 sizeof(LPWSTR) * infoPtr->nNumStrings);
1850 COMCTL32_Free (oldStrings);
1853 lenW = MultiByteToWideChar( CP_ACP, 0, p, -1, NULL, 0 );
1854 infoPtr->strings[infoPtr->nNumStrings] = COMCTL32_Alloc (sizeof(WCHAR)*lenW);
1855 MultiByteToWideChar( CP_ACP, 0, p, -1,
1856 infoPtr->strings[infoPtr->nNumStrings], lenW );
1857 infoPtr->nNumStrings++;
1868 TOOLBAR_AddStringW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1870 #define MAX_RESOURCE_STRING_LENGTH 512
1871 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1874 if ((wParam) && (HIWORD(lParam) == 0)) {
1875 WCHAR szString[MAX_RESOURCE_STRING_LENGTH];
1877 TRACE("adding string from resource!\n");
1879 len = LoadStringW ((HINSTANCE)wParam, (UINT)lParam,
1880 szString, MAX_RESOURCE_STRING_LENGTH);
1882 TRACE("len=%d %s\n", len, debugstr_w(szString));
1883 TRACE("First char: 0x%x\n", *szString);
1884 if (szString[0] == L'|')
1886 PWSTR p = szString + 1;
1888 nIndex = infoPtr->nNumStrings;
1889 while (*p != L'|') {
1891 if (infoPtr->nNumStrings == 0) {
1893 COMCTL32_Alloc (sizeof(LPWSTR));
1896 LPWSTR *oldStrings = infoPtr->strings;
1898 COMCTL32_Alloc (sizeof(LPWSTR) * (infoPtr->nNumStrings + 1));
1899 memcpy (&infoPtr->strings[0], &oldStrings[0],
1900 sizeof(LPWSTR) * infoPtr->nNumStrings);
1901 COMCTL32_Free (oldStrings);
1904 len = COMCTL32_StrChrW (p, L'|') - p;
1905 TRACE("len=%d %s\n", len, debugstr_w(p));
1906 infoPtr->strings[infoPtr->nNumStrings] =
1907 COMCTL32_Alloc (sizeof(WCHAR)*(len+1));
1908 lstrcpynW (infoPtr->strings[infoPtr->nNumStrings], p, len);
1909 infoPtr->nNumStrings++;
1916 nIndex = infoPtr->nNumStrings;
1917 if (infoPtr->nNumStrings == 0) {
1919 COMCTL32_Alloc (sizeof(LPWSTR));
1922 LPWSTR *oldStrings = infoPtr->strings;
1924 COMCTL32_Alloc (sizeof(LPWSTR) * (infoPtr->nNumStrings + 1));
1925 memcpy (&infoPtr->strings[0], &oldStrings[0],
1926 sizeof(LPWSTR) * infoPtr->nNumStrings);
1927 COMCTL32_Free (oldStrings);
1930 infoPtr->strings[infoPtr->nNumStrings] =
1931 COMCTL32_Alloc (sizeof(WCHAR)*(len+1));
1932 strcpyW (infoPtr->strings[infoPtr->nNumStrings], szString);
1933 infoPtr->nNumStrings++;
1937 LPWSTR p = (LPWSTR)lParam;
1942 TRACE("adding string(s) from array!\n");
1943 nIndex = infoPtr->nNumStrings;
1947 TRACE("len=%d %s\n", len, debugstr_w(p));
1948 if (infoPtr->nNumStrings == 0) {
1950 COMCTL32_Alloc (sizeof(LPWSTR));
1953 LPWSTR *oldStrings = infoPtr->strings;
1955 COMCTL32_Alloc (sizeof(LPWSTR) * (infoPtr->nNumStrings + 1));
1956 memcpy (&infoPtr->strings[0], &oldStrings[0],
1957 sizeof(LPWSTR) * infoPtr->nNumStrings);
1958 COMCTL32_Free (oldStrings);
1961 infoPtr->strings[infoPtr->nNumStrings] =
1962 COMCTL32_Alloc (sizeof(WCHAR)*(len+1));
1963 strcpyW (infoPtr->strings[infoPtr->nNumStrings], p);
1964 infoPtr->nNumStrings++;
1975 TOOLBAR_AutoSize (HWND hwnd)
1977 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
1978 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
1984 UINT uPosFlags = SWP_NOZORDER;
1986 TRACE("resize forced, style=%lx!\n", dwStyle);
1988 parent = GetParent (hwnd);
1989 GetClientRect(parent, &parent_rect);
1991 x = parent_rect.left;
1992 y = parent_rect.top;
1994 /* FIXME: we should be able to early out if nothing */
1995 /* has changed with nWidth != parent_rect width */
1997 if (dwStyle & CCS_NORESIZE) {
1998 uPosFlags |= (SWP_NOSIZE | SWP_NOMOVE);
2003 infoPtr->nWidth = parent_rect.right - parent_rect.left;
2004 TOOLBAR_CalcToolbar (hwnd);
2005 InvalidateRect( hwnd, NULL, TRUE );
2006 cy = infoPtr->nHeight;
2007 cx = infoPtr->nWidth;
2009 if (dwStyle & CCS_NOMOVEY) {
2010 GetWindowRect(hwnd, &window_rect);
2011 ScreenToClient(parent, (LPPOINT)&window_rect.left);
2012 y = window_rect.top;
2016 if (dwStyle & CCS_NOPARENTALIGN)
2017 uPosFlags |= SWP_NOMOVE;
2019 if (!(dwStyle & CCS_NODIVIDER))
2020 cy += GetSystemMetrics(SM_CYEDGE);
2022 if (dwStyle & WS_BORDER)
2025 cy += GetSystemMetrics(SM_CYEDGE);
2026 cx += GetSystemMetrics(SM_CYEDGE);
2029 infoPtr->bAutoSize = TRUE;
2030 SetWindowPos (hwnd, HWND_TOP, parent_rect.left - x, parent_rect.top - y,
2032 /* The following line makes sure that the infoPtr->bAutoSize is turned off after
2033 * the setwindowpos calls */
2034 infoPtr->bAutoSize = FALSE;
2041 TOOLBAR_ButtonCount (HWND hwnd, WPARAM wParam, LPARAM lParam)
2043 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2045 return infoPtr->nNumButtons;
2050 TOOLBAR_ButtonStructSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
2052 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2054 if (infoPtr == NULL) {
2055 ERR("(0x%x, 0x%x, 0x%lx)\n", hwnd, wParam, lParam);
2056 ERR("infoPtr == NULL!\n");
2060 infoPtr->dwStructSize = (DWORD)wParam;
2067 TOOLBAR_ChangeBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
2069 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2070 TBUTTON_INFO *btnPtr;
2073 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2077 btnPtr = &infoPtr->buttons[nIndex];
2078 btnPtr->iBitmap = LOWORD(lParam);
2080 /* we HAVE to erase the background, the new bitmap could be */
2082 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
2089 TOOLBAR_CheckButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
2091 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2092 TBUTTON_INFO *btnPtr;
2095 BOOL bChecked = FALSE;
2097 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2101 btnPtr = &infoPtr->buttons[nIndex];
2103 if (!(btnPtr->fsStyle & TBSTYLE_CHECK))
2106 bChecked = (btnPtr->fsState & TBSTATE_CHECKED) ? TRUE : FALSE;
2108 if (LOWORD(lParam) == FALSE)
2109 btnPtr->fsState &= ~TBSTATE_CHECKED;
2111 if (btnPtr->fsStyle & TBSTYLE_GROUP) {
2113 TOOLBAR_GetCheckedGroupButtonIndex (infoPtr, nIndex);
2114 if (nOldIndex == nIndex)
2116 if (nOldIndex != -1)
2117 infoPtr->buttons[nOldIndex].fsState &= ~TBSTATE_CHECKED;
2119 btnPtr->fsState |= TBSTATE_CHECKED;
2122 if( bChecked != LOWORD(lParam) )
2124 if (nOldIndex != -1)
2126 InvalidateRect(hwnd, &infoPtr->buttons[nOldIndex].rect,
2127 TOOLBAR_HasText(infoPtr, &infoPtr->buttons[nOldIndex]));
2129 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
2132 /* FIXME: Send a WM_NOTIFY?? */
2139 TOOLBAR_CommandToIndex (HWND hwnd, WPARAM wParam, LPARAM lParam)
2141 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2143 return TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2148 TOOLBAR_Customize (HWND hwnd)
2150 CUSTDLG_INFO custInfo;
2156 custInfo.tbInfo = TOOLBAR_GetInfoPtr (hwnd);
2157 custInfo.tbHwnd = hwnd;
2159 /* send TBN_BEGINADJUST notification */
2160 nmhdr.hwndFrom = hwnd;
2161 nmhdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
2162 nmhdr.code = TBN_BEGINADJUST;
2164 SendMessageA (custInfo.tbInfo->hwndNotify, WM_NOTIFY,
2165 (WPARAM)nmhdr.idFrom, (LPARAM)&nmhdr);
2167 if (!(hRes = FindResourceA (COMCTL32_hModule,
2168 MAKEINTRESOURCEA(IDD_TBCUSTOMIZE),
2172 if(!(template = (LPVOID)LoadResource (COMCTL32_hModule, hRes)))
2175 ret = DialogBoxIndirectParamA (GetWindowLongA (hwnd, GWL_HINSTANCE),
2176 (LPDLGTEMPLATEA)template,
2178 (DLGPROC)TOOLBAR_CustomizeDialogProc,
2181 /* send TBN_ENDADJUST notification */
2182 nmhdr.code = TBN_ENDADJUST;
2183 SendMessageA (custInfo.tbInfo->hwndNotify, WM_NOTIFY,
2184 (WPARAM)nmhdr.idFrom, (LPARAM)&nmhdr);
2191 TOOLBAR_DeleteButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
2193 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2194 INT nIndex = (INT)wParam;
2196 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
2199 if ((infoPtr->hwndToolTip) &&
2200 !(infoPtr->buttons[nIndex].fsStyle & TBSTYLE_SEP)) {
2203 ZeroMemory (&ti, sizeof(TTTOOLINFOA));
2204 ti.cbSize = sizeof (TTTOOLINFOA);
2206 ti.uId = infoPtr->buttons[nIndex].idCommand;
2208 SendMessageA (infoPtr->hwndToolTip, TTM_DELTOOLA, 0, (LPARAM)&ti);
2211 if (infoPtr->nNumButtons == 1) {
2212 TRACE(" simple delete!\n");
2213 COMCTL32_Free (infoPtr->buttons);
2214 infoPtr->buttons = NULL;
2215 infoPtr->nNumButtons = 0;
2218 TBUTTON_INFO *oldButtons = infoPtr->buttons;
2219 TRACE("complex delete! [nIndex=%d]\n", nIndex);
2221 infoPtr->nNumButtons--;
2222 infoPtr->buttons = COMCTL32_Alloc (sizeof (TBUTTON_INFO) * infoPtr->nNumButtons);
2224 memcpy (&infoPtr->buttons[0], &oldButtons[0],
2225 nIndex * sizeof(TBUTTON_INFO));
2228 if (nIndex < infoPtr->nNumButtons) {
2229 memcpy (&infoPtr->buttons[nIndex], &oldButtons[nIndex+1],
2230 (infoPtr->nNumButtons - nIndex) * sizeof(TBUTTON_INFO));
2233 COMCTL32_Free (oldButtons);
2236 TOOLBAR_CalcToolbar (hwnd);
2238 InvalidateRect (hwnd, NULL, TRUE);
2245 TOOLBAR_EnableButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
2247 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2248 TBUTTON_INFO *btnPtr;
2252 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2256 btnPtr = &infoPtr->buttons[nIndex];
2258 bState = btnPtr->fsState & TBSTATE_ENABLED;
2260 /* update the toolbar button state */
2261 if(LOWORD(lParam) == FALSE) {
2262 btnPtr->fsState &= ~(TBSTATE_ENABLED | TBSTATE_PRESSED);
2264 btnPtr->fsState |= TBSTATE_ENABLED;
2267 /* redraw the button only if the state of the button changed */
2268 if(bState != (btnPtr->fsState & TBSTATE_ENABLED))
2270 InvalidateRect(hwnd, &btnPtr->rect,
2271 TOOLBAR_HasText(infoPtr, btnPtr));
2278 static inline LRESULT
2279 TOOLBAR_GetAnchorHighlight (HWND hwnd)
2281 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2283 return infoPtr->bAnchor;
2288 TOOLBAR_GetBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
2290 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2293 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2297 return infoPtr->buttons[nIndex].iBitmap;
2301 static inline LRESULT
2302 TOOLBAR_GetBitmapFlags (HWND hwnd, WPARAM wParam, LPARAM lParam)
2304 return (GetDeviceCaps (0, LOGPIXELSX) >= 120) ? TBBF_LARGE : 0;
2309 TOOLBAR_GetButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
2311 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2312 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
2313 INT nIndex = (INT)wParam;
2314 TBUTTON_INFO *btnPtr;
2316 if (infoPtr == NULL)
2322 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
2325 btnPtr = &infoPtr->buttons[nIndex];
2326 lpTbb->iBitmap = btnPtr->iBitmap;
2327 lpTbb->idCommand = btnPtr->idCommand;
2328 lpTbb->fsState = btnPtr->fsState;
2329 lpTbb->fsStyle = btnPtr->fsStyle;
2330 lpTbb->dwData = btnPtr->dwData;
2331 lpTbb->iString = btnPtr->iString;
2338 TOOLBAR_GetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2340 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2341 LPTBBUTTONINFOA lpTbInfo = (LPTBBUTTONINFOA)lParam;
2342 TBUTTON_INFO *btnPtr;
2345 if (infoPtr == NULL)
2347 if (lpTbInfo == NULL)
2349 if (lpTbInfo->cbSize < sizeof(TBBUTTONINFOA))
2352 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2356 btnPtr = &infoPtr->buttons[nIndex];
2358 if (lpTbInfo->dwMask & TBIF_COMMAND)
2359 lpTbInfo->idCommand = btnPtr->idCommand;
2360 if (lpTbInfo->dwMask & TBIF_IMAGE)
2361 lpTbInfo->iImage = btnPtr->iBitmap;
2362 if (lpTbInfo->dwMask & TBIF_LPARAM)
2363 lpTbInfo->lParam = btnPtr->dwData;
2364 if (lpTbInfo->dwMask & TBIF_SIZE)
2365 lpTbInfo->cx = (WORD)(btnPtr->rect.right - btnPtr->rect.left);
2366 if (lpTbInfo->dwMask & TBIF_STATE)
2367 lpTbInfo->fsState = btnPtr->fsState;
2368 if (lpTbInfo->dwMask & TBIF_STYLE)
2369 lpTbInfo->fsStyle = btnPtr->fsStyle;
2370 if (lpTbInfo->dwMask & TBIF_TEXT) {
2371 if ((btnPtr->iString >= 0) && (btnPtr->iString < infoPtr->nNumStrings))
2373 if (!WideCharToMultiByte( CP_ACP, 0, (LPWSTR)infoPtr->strings[btnPtr->iString], -1,
2374 lpTbInfo->pszText, lpTbInfo->cchText, NULL, NULL ))
2375 lpTbInfo->pszText[lpTbInfo->cchText-1] = 0;
2377 else lpTbInfo->pszText[0]=0;
2384 TOOLBAR_GetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2386 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2387 LPTBBUTTONINFOW lpTbInfo = (LPTBBUTTONINFOW)lParam;
2388 TBUTTON_INFO *btnPtr;
2391 if (infoPtr == NULL)
2393 if (lpTbInfo == NULL)
2395 if (lpTbInfo->cbSize < sizeof(TBBUTTONINFOW))
2398 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2402 btnPtr = &infoPtr->buttons[nIndex];
2404 if (lpTbInfo->dwMask & TBIF_COMMAND)
2405 lpTbInfo->idCommand = btnPtr->idCommand;
2406 if (lpTbInfo->dwMask & TBIF_IMAGE)
2407 lpTbInfo->iImage = btnPtr->iBitmap;
2408 if (lpTbInfo->dwMask & TBIF_LPARAM)
2409 lpTbInfo->lParam = btnPtr->dwData;
2410 if (lpTbInfo->dwMask & TBIF_SIZE)
2411 lpTbInfo->cx = (WORD)(btnPtr->rect.right - btnPtr->rect.left);
2412 if (lpTbInfo->dwMask & TBIF_STATE)
2413 lpTbInfo->fsState = btnPtr->fsState;
2414 if (lpTbInfo->dwMask & TBIF_STYLE)
2415 lpTbInfo->fsStyle = btnPtr->fsStyle;
2416 if (lpTbInfo->dwMask & TBIF_TEXT) {
2417 if ((btnPtr->iString >= 0) || (btnPtr->iString < infoPtr->nNumStrings))
2418 lstrcpynW (lpTbInfo->pszText,
2419 (LPWSTR)infoPtr->strings[btnPtr->iString],
2428 TOOLBAR_GetButtonSize (HWND hwnd)
2430 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2432 return MAKELONG((WORD)infoPtr->nButtonWidth,
2433 (WORD)infoPtr->nButtonHeight);
2438 TOOLBAR_GetButtonTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2440 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2441 INT nIndex, nStringIndex;
2443 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2447 nStringIndex = infoPtr->buttons[nIndex].iString;
2449 TRACE("index=%d stringIndex=%d\n", nIndex, nStringIndex);
2451 if ((nStringIndex < 0) || (nStringIndex >= infoPtr->nNumStrings))
2457 return WideCharToMultiByte( CP_ACP, 0, (LPWSTR)infoPtr->strings[nStringIndex], -1,
2458 (LPSTR)lParam, 0x7fffffff, NULL, NULL ) - 1;
2463 TOOLBAR_GetButtonTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2465 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2466 INT nIndex, nStringIndex;
2468 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2472 nStringIndex = infoPtr->buttons[nIndex].iString;
2474 TRACE("index=%d stringIndex=%d\n", nIndex, nStringIndex);
2476 if ((nStringIndex < 0) || (nStringIndex >= infoPtr->nNumStrings))
2482 strcpyW ((LPWSTR)lParam, (LPWSTR)infoPtr->strings[nStringIndex]);
2484 return strlenW ((LPWSTR)infoPtr->strings[nStringIndex]);
2488 /* << TOOLBAR_GetColorScheme >> */
2492 TOOLBAR_GetDisabledImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
2494 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2496 return (LRESULT)infoPtr->himlDis;
2500 inline static LRESULT
2501 TOOLBAR_GetExtendedStyle (HWND hwnd)
2503 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2505 return infoPtr->dwExStyle;
2510 TOOLBAR_GetHotImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
2512 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2514 return (LRESULT)infoPtr->himlHot;
2519 TOOLBAR_GetHotItem (HWND hwnd)
2521 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2523 if (!(GetWindowLongA (hwnd, GWL_STYLE) & TBSTYLE_FLAT))
2526 if (infoPtr->nHotItem < 0)
2529 return (LRESULT)infoPtr->nHotItem;
2534 TOOLBAR_GetImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
2536 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2538 return (LRESULT)infoPtr->himlDef;
2542 /* << TOOLBAR_GetInsertMark >> */
2543 /* << TOOLBAR_GetInsertMarkColor >> */
2547 TOOLBAR_GetItemRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
2549 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2550 TBUTTON_INFO *btnPtr;
2554 if (infoPtr == NULL)
2556 nIndex = (INT)wParam;
2557 btnPtr = &infoPtr->buttons[nIndex];
2558 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
2560 lpRect = (LPRECT)lParam;
2563 if (btnPtr->fsState & TBSTATE_HIDDEN)
2566 lpRect->left = btnPtr->rect.left;
2567 lpRect->right = btnPtr->rect.right;
2568 lpRect->bottom = btnPtr->rect.bottom;
2569 lpRect->top = btnPtr->rect.top;
2576 TOOLBAR_GetMaxSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
2578 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2579 LPSIZE lpSize = (LPSIZE)lParam;
2584 lpSize->cx = infoPtr->rcBound.right - infoPtr->rcBound.left;
2585 lpSize->cy = infoPtr->rcBound.bottom - infoPtr->rcBound.top;
2587 TRACE("maximum size %d x %d\n",
2588 infoPtr->rcBound.right - infoPtr->rcBound.left,
2589 infoPtr->rcBound.bottom - infoPtr->rcBound.top);
2595 /* << TOOLBAR_GetObject >> */
2596 /* << TOOLBAR_GetPadding >> */
2600 TOOLBAR_GetRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
2602 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2603 TBUTTON_INFO *btnPtr;
2607 if (infoPtr == NULL)
2609 nIndex = (INT)wParam;
2610 btnPtr = &infoPtr->buttons[nIndex];
2611 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
2613 lpRect = (LPRECT)lParam;
2617 lpRect->left = btnPtr->rect.left;
2618 lpRect->right = btnPtr->rect.right;
2619 lpRect->bottom = btnPtr->rect.bottom;
2620 lpRect->top = btnPtr->rect.top;
2627 TOOLBAR_GetRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
2629 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2631 if (GetWindowLongA (hwnd, GWL_STYLE) & TBSTYLE_WRAPABLE)
2632 return infoPtr->nRows;
2639 TOOLBAR_GetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
2641 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2644 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2648 return infoPtr->buttons[nIndex].fsState;
2653 TOOLBAR_GetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
2655 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2658 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2662 return infoPtr->buttons[nIndex].fsStyle;
2667 TOOLBAR_GetTextRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
2669 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2671 if (infoPtr == NULL)
2674 return infoPtr->nMaxTextRows;
2679 TOOLBAR_GetToolTips (HWND hwnd, WPARAM wParam, LPARAM lParam)
2681 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2683 if (infoPtr == NULL)
2685 return infoPtr->hwndToolTip;
2690 TOOLBAR_GetUnicodeFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
2692 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2694 TRACE("%s hwnd=0x%x stub!\n",
2695 infoPtr->bUnicode ? "TRUE" : "FALSE", hwnd);
2697 return infoPtr->bUnicode;
2701 inline static LRESULT
2702 TOOLBAR_GetVersion (HWND hwnd)
2704 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2705 return infoPtr->iVersion;
2710 TOOLBAR_HideButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
2712 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2713 TBUTTON_INFO *btnPtr;
2718 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2722 btnPtr = &infoPtr->buttons[nIndex];
2723 if (LOWORD(lParam) == FALSE)
2724 btnPtr->fsState &= ~TBSTATE_HIDDEN;
2726 btnPtr->fsState |= TBSTATE_HIDDEN;
2728 TOOLBAR_CalcToolbar (hwnd);
2730 InvalidateRect (hwnd, NULL, TRUE);
2736 inline static LRESULT
2737 TOOLBAR_HitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
2739 return TOOLBAR_InternalHitTest (hwnd, (LPPOINT)lParam);
2744 TOOLBAR_Indeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
2746 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2747 TBUTTON_INFO *btnPtr;
2750 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2754 btnPtr = &infoPtr->buttons[nIndex];
2755 if (LOWORD(lParam) == FALSE)
2756 btnPtr->fsState &= ~TBSTATE_INDETERMINATE;
2758 btnPtr->fsState |= TBSTATE_INDETERMINATE;
2760 InvalidateRect(hwnd, &btnPtr->rect, TOOLBAR_HasText(infoPtr, btnPtr));
2767 TOOLBAR_InsertButtonA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2769 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2770 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
2771 INT nIndex = (INT)wParam;
2772 TBUTTON_INFO *oldButtons;
2778 /* EPP: this seems to be an undocumented call (from my IE4)
2779 * I assume in that case that:
2780 * - lpTbb->iString is a string pointer (not a string index in strings[] table
2781 * - index of insertion is at the end of existing buttons
2782 * I only see this happen with nIndex == -1, but it could have a special
2783 * meaning (like -nIndex (or ~nIndex) to get the real position of insertion).
2788 /* FIXME: iString == -1 is undocumented */
2789 if(lpTbb->iString && lpTbb->iString!=-1) {
2790 len = strlen((char*)lpTbb->iString) + 2;
2791 ptr = COMCTL32_Alloc(len);
2792 nIndex = infoPtr->nNumButtons;
2793 strcpy(ptr, (char*)lpTbb->iString);
2794 ptr[len - 1] = 0; /* ended by two '\0' */
2795 lpTbb->iString = TOOLBAR_AddStringA(hwnd, 0, (LPARAM)ptr);
2799 ERR("lpTbb->iString is NULL\n");
2803 } else if (nIndex < 0)
2806 TRACE("inserting button index=%d\n", nIndex);
2807 if (nIndex > infoPtr->nNumButtons) {
2808 nIndex = infoPtr->nNumButtons;
2809 TRACE("adjust index=%d\n", nIndex);
2812 oldButtons = infoPtr->buttons;
2813 infoPtr->nNumButtons++;
2814 infoPtr->buttons = COMCTL32_Alloc (sizeof (TBUTTON_INFO) * infoPtr->nNumButtons);
2815 /* pre insert copy */
2817 memcpy (&infoPtr->buttons[0], &oldButtons[0],
2818 nIndex * sizeof(TBUTTON_INFO));
2821 /* insert new button */
2822 infoPtr->buttons[nIndex].iBitmap = lpTbb->iBitmap;
2823 infoPtr->buttons[nIndex].idCommand = lpTbb->idCommand;
2824 infoPtr->buttons[nIndex].fsState = lpTbb->fsState;
2825 infoPtr->buttons[nIndex].fsStyle = lpTbb->fsStyle;
2826 infoPtr->buttons[nIndex].dwData = lpTbb->dwData;
2827 infoPtr->buttons[nIndex].iString = lpTbb->iString;
2829 if ((infoPtr->hwndToolTip) && !(lpTbb->fsStyle & TBSTYLE_SEP)) {
2832 ZeroMemory (&ti, sizeof(TTTOOLINFOA));
2833 ti.cbSize = sizeof (TTTOOLINFOA);
2835 ti.uId = lpTbb->idCommand;
2837 ti.lpszText = LPSTR_TEXTCALLBACKA;
2839 SendMessageA (infoPtr->hwndToolTip, TTM_ADDTOOLA,
2843 /* post insert copy */
2844 if (nIndex < infoPtr->nNumButtons - 1) {
2845 memcpy (&infoPtr->buttons[nIndex+1], &oldButtons[nIndex],
2846 (infoPtr->nNumButtons - nIndex - 1) * sizeof(TBUTTON_INFO));
2849 COMCTL32_Free (oldButtons);
2851 TOOLBAR_CalcToolbar (hwnd);
2853 InvalidateRect (hwnd, NULL, FALSE);
2860 TOOLBAR_InsertButtonW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2862 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2863 LPTBBUTTON lpTbb = (LPTBBUTTON)lParam;
2864 INT nIndex = (INT)wParam;
2865 TBUTTON_INFO *oldButtons;
2872 TRACE("inserting button index=%d\n", nIndex);
2873 if (nIndex > infoPtr->nNumButtons) {
2874 nIndex = infoPtr->nNumButtons;
2875 TRACE("adjust index=%d\n", nIndex);
2878 oldButtons = infoPtr->buttons;
2879 infoPtr->nNumButtons++;
2880 infoPtr->buttons = COMCTL32_Alloc (sizeof (TBUTTON_INFO) * infoPtr->nNumButtons);
2881 /* pre insert copy */
2883 memcpy (&infoPtr->buttons[0], &oldButtons[0],
2884 nIndex * sizeof(TBUTTON_INFO));
2887 /* insert new button */
2888 infoPtr->buttons[nIndex].iBitmap = lpTbb->iBitmap;
2889 infoPtr->buttons[nIndex].idCommand = lpTbb->idCommand;
2890 infoPtr->buttons[nIndex].fsState = lpTbb->fsState;
2891 infoPtr->buttons[nIndex].fsStyle = lpTbb->fsStyle;
2892 infoPtr->buttons[nIndex].dwData = lpTbb->dwData;
2893 infoPtr->buttons[nIndex].iString = lpTbb->iString;
2895 if ((infoPtr->hwndToolTip) && !(lpTbb->fsStyle & TBSTYLE_SEP)) {
2898 ZeroMemory (&ti, sizeof(TTTOOLINFOW));
2899 ti.cbSize = sizeof (TTTOOLINFOW);
2901 ti.uId = lpTbb->idCommand;
2903 ti.lpszText = LPSTR_TEXTCALLBACKW;
2905 SendMessageW (infoPtr->hwndToolTip, TTM_ADDTOOLW,
2909 /* post insert copy */
2910 if (nIndex < infoPtr->nNumButtons - 1) {
2911 memcpy (&infoPtr->buttons[nIndex+1], &oldButtons[nIndex],
2912 (infoPtr->nNumButtons - nIndex - 1) * sizeof(TBUTTON_INFO));
2915 COMCTL32_Free (oldButtons);
2917 InvalidateRect (hwnd, NULL, FALSE);
2923 /* << TOOLBAR_InsertMarkHitTest >> */
2927 TOOLBAR_IsButtonChecked (HWND hwnd, WPARAM wParam, LPARAM lParam)
2929 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2932 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2936 return (infoPtr->buttons[nIndex].fsState & TBSTATE_CHECKED);
2941 TOOLBAR_IsButtonEnabled (HWND hwnd, WPARAM wParam, LPARAM lParam)
2943 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2946 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2950 return (infoPtr->buttons[nIndex].fsState & TBSTATE_ENABLED);
2955 TOOLBAR_IsButtonHidden (HWND hwnd, WPARAM wParam, LPARAM lParam)
2957 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2960 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2964 return (infoPtr->buttons[nIndex].fsState & TBSTATE_HIDDEN);
2969 TOOLBAR_IsButtonHighlighted (HWND hwnd, WPARAM wParam, LPARAM lParam)
2971 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2974 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2978 return (infoPtr->buttons[nIndex].fsState & TBSTATE_MARKED);
2983 TOOLBAR_IsButtonIndeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
2985 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
2988 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
2992 return (infoPtr->buttons[nIndex].fsState & TBSTATE_INDETERMINATE);
2997 TOOLBAR_IsButtonPressed (HWND hwnd, WPARAM wParam, LPARAM lParam)
2999 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3002 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
3006 return (infoPtr->buttons[nIndex].fsState & TBSTATE_PRESSED);
3010 /* << TOOLBAR_LoadImages >> */
3011 /* << TOOLBAR_MapAccelerator >> */
3012 /* << TOOLBAR_MarkButton >> */
3013 /* << TOOLBAR_MoveButton >> */
3017 TOOLBAR_PressButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
3019 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3020 TBUTTON_INFO *btnPtr;
3023 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
3027 btnPtr = &infoPtr->buttons[nIndex];
3028 if (LOWORD(lParam) == FALSE)
3029 btnPtr->fsState &= ~TBSTATE_PRESSED;
3031 btnPtr->fsState |= TBSTATE_PRESSED;
3033 InvalidateRect(hwnd, &btnPtr->rect, TOOLBAR_HasText(infoPtr, btnPtr));
3039 /* << TOOLBAR_ReplaceBitmap >> */
3043 TOOLBAR_SaveRestoreA (HWND hwnd, WPARAM wParam, LPARAM lParam)
3046 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3047 LPTBSAVEPARAMSA lpSave = (LPTBSAVEPARAMSA)lParam;
3049 if (lpSave == NULL) return 0;
3052 /* save toolbar information */
3053 FIXME("save to \"%s\" \"%s\"\n",
3054 lpSave->pszSubKey, lpSave->pszValueName);
3059 /* restore toolbar information */
3061 FIXME("restore from \"%s\" \"%s\"\n",
3062 lpSave->pszSubKey, lpSave->pszValueName);
3073 TOOLBAR_SaveRestoreW (HWND hwnd, WPARAM wParam, LPARAM lParam)
3076 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3077 LPTBSAVEPARAMSW lpSave = (LPTBSAVEPARAMSW)lParam;
3083 /* save toolbar information */
3084 FIXME("save to \"%s\" \"%s\"\n",
3085 lpSave->pszSubKey, lpSave->pszValueName);
3090 /* restore toolbar information */
3092 FIXME("restore from \"%s\" \"%s\"\n",
3093 lpSave->pszSubKey, lpSave->pszValueName);
3104 TOOLBAR_SetAnchorHighlight (HWND hwnd, WPARAM wParam)
3106 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3107 BOOL bOldAnchor = infoPtr->bAnchor;
3109 infoPtr->bAnchor = (BOOL)wParam;
3111 return (LRESULT)bOldAnchor;
3116 TOOLBAR_SetBitmapSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
3118 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3120 if ((LOWORD(lParam) <= 0) || (HIWORD(lParam)<=0))
3123 if (infoPtr->nNumButtons > 0)
3124 WARN("%d buttons, undoc increase to bitmap size : %d-%d -> %d-%d\n",
3125 infoPtr->nNumButtons,
3126 infoPtr->nBitmapWidth, infoPtr->nBitmapHeight,
3127 LOWORD(lParam), HIWORD(lParam));
3129 infoPtr->nBitmapWidth = (INT)LOWORD(lParam);
3130 infoPtr->nBitmapHeight = (INT)HIWORD(lParam);
3132 /* uses image list internals directly */
3133 if (infoPtr->himlDef) {
3134 infoPtr->himlDef->cx = infoPtr->nBitmapWidth;
3135 infoPtr->himlDef->cy = infoPtr->nBitmapHeight;
3143 TOOLBAR_SetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
3145 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3146 LPTBBUTTONINFOA lptbbi = (LPTBBUTTONINFOA)lParam;
3147 TBUTTON_INFO *btnPtr;
3152 if (lptbbi->cbSize < sizeof(TBBUTTONINFOA))
3155 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
3159 btnPtr = &infoPtr->buttons[nIndex];
3160 if (lptbbi->dwMask & TBIF_COMMAND)
3161 btnPtr->idCommand = lptbbi->idCommand;
3162 if (lptbbi->dwMask & TBIF_IMAGE)
3163 btnPtr->iBitmap = lptbbi->iImage;
3164 if (lptbbi->dwMask & TBIF_LPARAM)
3165 btnPtr->dwData = lptbbi->lParam;
3166 /* if (lptbbi->dwMask & TBIF_SIZE) */
3167 /* btnPtr->cx = lptbbi->cx; */
3168 if (lptbbi->dwMask & TBIF_STATE)
3169 btnPtr->fsState = lptbbi->fsState;
3170 if (lptbbi->dwMask & TBIF_STYLE)
3171 btnPtr->fsStyle = lptbbi->fsStyle;
3173 if (lptbbi->dwMask & TBIF_TEXT) {
3174 if ((btnPtr->iString >= 0) ||
3175 (btnPtr->iString < infoPtr->nNumStrings)) {
3176 TRACE("Ooooooch\n");
3178 WCHAR **lpString = &infoPtr->strings[btnPtr->iString];
3179 INT len = lstrlenA (lptbbi->pszText);
3180 *lpString = COMCTL32_ReAlloc (lpString, sizeof(WCHAR)*(len+1));
3183 /* this is the ultimate sollution */
3184 /* Str_SetPtrA (&infoPtr->strings[btnPtr->iString], lptbbi->pszText); */
3193 TOOLBAR_SetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
3195 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3196 LPTBBUTTONINFOW lptbbi = (LPTBBUTTONINFOW)lParam;
3197 TBUTTON_INFO *btnPtr;
3202 if (lptbbi->cbSize < sizeof(TBBUTTONINFOW))
3205 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
3209 btnPtr = &infoPtr->buttons[nIndex];
3210 if (lptbbi->dwMask & TBIF_COMMAND)
3211 btnPtr->idCommand = lptbbi->idCommand;
3212 if (lptbbi->dwMask & TBIF_IMAGE)
3213 btnPtr->iBitmap = lptbbi->iImage;
3214 if (lptbbi->dwMask & TBIF_LPARAM)
3215 btnPtr->dwData = lptbbi->lParam;
3216 /* if (lptbbi->dwMask & TBIF_SIZE) */
3217 /* btnPtr->cx = lptbbi->cx; */
3218 if (lptbbi->dwMask & TBIF_STATE)
3219 btnPtr->fsState = lptbbi->fsState;
3220 if (lptbbi->dwMask & TBIF_STYLE)
3221 btnPtr->fsStyle = lptbbi->fsStyle;
3223 if (lptbbi->dwMask & TBIF_TEXT) {
3224 if ((btnPtr->iString >= 0) ||
3225 (btnPtr->iString < infoPtr->nNumStrings)) {
3227 WCHAR **lpString = &infoPtr->strings[btnPtr->iString];
3228 INT len = lstrlenW (lptbbi->pszText);
3229 *lpString = COMCTL32_ReAlloc (lpString, sizeof(WCHAR)*(len+1));
3232 /* this is the ultimate solution */
3233 /* Str_SetPtrA (&infoPtr->strings[btnPtr->iString], lptbbi->pszText); */
3242 TOOLBAR_SetButtonSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
3244 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3246 if ((LOWORD(lParam) <= 0) || (HIWORD(lParam)<=0))
3248 ERR("invalid parameter\n");
3252 /* The documentation claims you can only change the button size before
3253 * any button has been added. But this is wrong.
3254 * WINZIP32.EXE (ver 8) calls this on one of its buttons after adding
3255 * it to the toolbar, and it checks that the return value is nonzero - mjm
3256 * Further testing shows that we must actually perform the change too.
3258 infoPtr->nButtonWidth = (INT)LOWORD(lParam);
3259 infoPtr->nButtonHeight = (INT)HIWORD(lParam);
3265 TOOLBAR_SetButtonWidth (HWND hwnd, WPARAM wParam, LPARAM lParam)
3267 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3269 if (infoPtr == NULL)
3272 infoPtr->cxMin = (INT)LOWORD(lParam);
3273 infoPtr->cxMax = (INT)HIWORD(lParam);
3280 TOOLBAR_SetCmdId (HWND hwnd, WPARAM wParam, LPARAM lParam)
3282 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3283 INT nIndex = (INT)wParam;
3285 if ((nIndex < 0) || (nIndex >= infoPtr->nNumButtons))
3288 infoPtr->buttons[nIndex].idCommand = (INT)lParam;
3290 if (infoPtr->hwndToolTip) {
3292 FIXME("change tool tip!\n");
3300 /* << TOOLBAR_SetColorScheme >> */
3304 TOOLBAR_SetDisabledImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3306 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3307 HIMAGELIST himlTemp;
3310 himlTemp = infoPtr->himlDis;
3311 infoPtr->himlDis = (HIMAGELIST)lParam;
3313 /* FIXME: redraw ? */
3315 return (LRESULT)himlTemp;
3320 TOOLBAR_SetDrawTextFlags (HWND hwnd, WPARAM wParam, LPARAM lParam)
3322 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3325 dwTemp = infoPtr->dwDTFlags;
3326 infoPtr->dwDTFlags =
3327 (infoPtr->dwDTFlags & (DWORD)wParam) | (DWORD)lParam;
3329 return (LRESULT)dwTemp;
3334 TOOLBAR_SetExtendedStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
3336 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3339 dwTemp = infoPtr->dwExStyle;
3340 infoPtr->dwExStyle = (DWORD)lParam;
3342 return (LRESULT)dwTemp;
3347 TOOLBAR_SetHotImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3349 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
3350 HIMAGELIST himlTemp;
3352 himlTemp = infoPtr->himlHot;
3353 infoPtr->himlHot = (HIMAGELIST)lParam;
3355 /* FIXME: redraw ? */
3357 return (LRESULT)himlTemp;
3362 TOOLBAR_SetHotItem (HWND hwnd, WPARAM wParam)
3364 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
3365 INT nOldHotItem = infoPtr->nHotItem;
3366 TBUTTON_INFO *btnPtr;
3368 if ((INT) wParam < 0 || (INT)wParam > infoPtr->nNumButtons)
3371 if (GetWindowLongA (hwnd, GWL_STYLE) & TBSTYLE_FLAT)
3374 infoPtr->nHotItem = (INT)wParam;
3375 if ((INT)wParam >=0)
3377 btnPtr = &infoPtr->buttons[(INT)wParam];
3378 btnPtr->bHot = TRUE;
3379 InvalidateRect (hwnd, &btnPtr->rect,
3380 TOOLBAR_HasText(infoPtr, btnPtr));
3384 btnPtr = &infoPtr->buttons[nOldHotItem];
3385 btnPtr->bHot = FALSE;
3386 InvalidateRect (hwnd, &btnPtr->rect,
3387 TOOLBAR_HasText(infoPtr, btnPtr));
3391 if (nOldHotItem < 0)
3394 return (LRESULT)nOldHotItem;
3399 TOOLBAR_SetImageList (HWND hwnd, WPARAM wParam, LPARAM lParam)
3401 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3402 HIMAGELIST himlTemp;
3404 himlTemp = infoPtr->himlDef;
3405 infoPtr->himlDef = (HIMAGELIST)lParam;
3407 infoPtr->nNumBitmaps = ImageList_GetImageCount(infoPtr->himlDef);
3408 /* FIXME: redraw ? */
3410 return (LRESULT)himlTemp;
3415 TOOLBAR_SetIndent (HWND hwnd, WPARAM wParam, LPARAM lParam)
3417 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3419 infoPtr->nIndent = (INT)wParam;
3423 /* process only on indent changing */
3424 if(infoPtr->nIndent != (INT)wParam)
3426 infoPtr->nIndent = (INT)wParam;
3427 TOOLBAR_CalcToolbar (hwnd);
3428 InvalidateRect(hwnd, NULL, FALSE);
3435 /* << TOOLBAR_SetInsertMark >> */
3439 TOOLBAR_SetInsertMarkColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
3441 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3443 infoPtr->clrInsertMark = (COLORREF)lParam;
3445 /* FIXME : redraw ??*/
3452 TOOLBAR_SetMaxTextRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
3454 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3456 if (infoPtr == NULL)
3459 infoPtr->nMaxTextRows = (INT)wParam;
3465 /* << TOOLBAR_SetPadding >> */
3469 TOOLBAR_SetParent (HWND hwnd, WPARAM wParam, LPARAM lParam)
3471 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3476 if (infoPtr == NULL)
3478 hwndOldNotify = infoPtr->hwndNotify;
3479 infoPtr->hwndNotify = (HWND)wParam;
3481 return hwndOldNotify;
3486 TOOLBAR_SetRows (HWND hwnd, WPARAM wParam, LPARAM lParam)
3488 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3489 LPRECT lprc = (LPRECT)lParam;
3493 if (LOWORD(wParam) > 1) {
3494 FIXME("multiple rows not supported!\n");
3497 if(infoPtr->nRows != LOWORD(wParam))
3499 infoPtr->nRows = LOWORD(wParam);
3501 /* recalculate toolbar */
3502 TOOLBAR_CalcToolbar (hwnd);
3504 /* repaint toolbar */
3505 InvalidateRect(hwnd, NULL, FALSE);
3508 /* return bounding rectangle */
3510 lprc->left = infoPtr->rcBound.left;
3511 lprc->right = infoPtr->rcBound.right;
3512 lprc->top = infoPtr->rcBound.top;
3513 lprc->bottom = infoPtr->rcBound.bottom;
3521 TOOLBAR_SetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
3523 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3524 TBUTTON_INFO *btnPtr;
3527 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
3531 btnPtr = &infoPtr->buttons[nIndex];
3533 /* process state changing if current state doesn't match new state */
3534 if(btnPtr->fsState != LOWORD(lParam))
3536 btnPtr->fsState = LOWORD(lParam);
3537 InvalidateRect(hwnd, &btnPtr->rect, TOOLBAR_HasText(infoPtr,
3546 TOOLBAR_SetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
3548 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3549 TBUTTON_INFO *btnPtr;
3552 nIndex = TOOLBAR_GetButtonIndex (infoPtr, (INT)wParam);
3556 btnPtr = &infoPtr->buttons[nIndex];
3558 /* process style change if current style doesn't match new style */
3559 if(btnPtr->fsStyle != LOWORD(lParam))
3561 btnPtr->fsStyle = LOWORD(lParam);
3562 InvalidateRect(hwnd, &btnPtr->rect, TOOLBAR_HasText(infoPtr,
3565 if (infoPtr->hwndToolTip) {
3566 FIXME("change tool tip!\n");
3574 inline static LRESULT
3575 TOOLBAR_SetToolTips (HWND hwnd, WPARAM wParam, LPARAM lParam)
3577 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3579 if (infoPtr == NULL)
3581 infoPtr->hwndToolTip = (HWND)wParam;
3587 TOOLBAR_SetUnicodeFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
3589 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3592 TRACE("%s hwnd=0x%04x stub!\n",
3593 ((BOOL)wParam) ? "TRUE" : "FALSE", hwnd);
3595 bTemp = infoPtr->bUnicode;
3596 infoPtr->bUnicode = (BOOL)wParam;
3603 TOOLBAR_SetVersion (HWND hwnd, INT iVersion)
3605 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3606 INT iOldVersion = infoPtr->iVersion;
3608 infoPtr->iVersion = iVersion;
3615 TOOLBAR_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
3617 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3618 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
3621 /* initialize info structure */
3622 infoPtr->nButtonHeight = 22;
3623 infoPtr->nButtonWidth = 24;
3624 infoPtr->nBitmapHeight = 15;
3625 infoPtr->nBitmapWidth = 16;
3627 infoPtr->nHeight = infoPtr->nButtonHeight + TOP_BORDER + BOTTOM_BORDER;
3629 infoPtr->nMaxTextRows = 1;
3630 infoPtr->cxMin = -1;
3631 infoPtr->cxMax = -1;
3632 infoPtr->nNumBitmaps = 0;
3633 infoPtr->nNumStrings = 0;
3635 infoPtr->bCaptured = FALSE;
3636 infoPtr->bUnicode = IsWindowUnicode (hwnd);
3637 infoPtr->nButtonDown = -1;
3638 infoPtr->nOldHit = -1;
3639 infoPtr->nHotItem = -2; /* It has to be initially different from nOldHit */
3640 infoPtr->hwndNotify = GetParent (hwnd);
3641 infoPtr->bTransparent = (dwStyle & TBSTYLE_FLAT);
3642 infoPtr->dwDTFlags = (dwStyle & TBSTYLE_LIST) ? DT_LEFT | DT_VCENTER | DT_SINGLELINE : DT_CENTER;
3643 infoPtr->bAnchor = FALSE; /* no anchor highlighting */
3644 infoPtr->iVersion = 0;
3646 SystemParametersInfoA (SPI_GETICONTITLELOGFONT, 0, &logFont, 0);
3647 infoPtr->hFont = CreateFontIndirectA (&logFont);
3649 if (dwStyle & TBSTYLE_TOOLTIPS) {
3650 /* Create tooltip control */
3651 infoPtr->hwndToolTip =
3652 CreateWindowExA (0, TOOLTIPS_CLASSA, NULL, 0,
3653 CW_USEDEFAULT, CW_USEDEFAULT,
3654 CW_USEDEFAULT, CW_USEDEFAULT,
3657 /* Send NM_TOOLTIPSCREATED notification */
3658 if (infoPtr->hwndToolTip) {
3659 NMTOOLTIPSCREATED nmttc;
3661 nmttc.hdr.hwndFrom = hwnd;
3662 nmttc.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
3663 nmttc.hdr.code = NM_TOOLTIPSCREATED;
3664 nmttc.hwndToolTips = infoPtr->hwndToolTip;
3666 SendMessageA (infoPtr->hwndNotify, WM_NOTIFY,
3667 (WPARAM)nmttc.hdr.idFrom, (LPARAM)&nmttc);
3671 TOOLBAR_CalcToolbar(hwnd);
3678 TOOLBAR_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
3680 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3682 /* delete tooltip control */
3683 if (infoPtr->hwndToolTip)
3684 DestroyWindow (infoPtr->hwndToolTip);
3686 /* delete button data */
3687 if (infoPtr->buttons)
3688 COMCTL32_Free (infoPtr->buttons);
3690 /* delete strings */
3691 if (infoPtr->strings) {
3693 for (i = 0; i < infoPtr->nNumStrings; i++)
3694 if (infoPtr->strings[i])
3695 COMCTL32_Free (infoPtr->strings[i]);
3697 COMCTL32_Free (infoPtr->strings);
3700 /* destroy internal image list */
3701 if (infoPtr->himlInt)
3702 ImageList_Destroy (infoPtr->himlInt);
3704 /* delete default font */
3706 DeleteObject (infoPtr->hFont);
3708 /* free toolbar info data */
3709 COMCTL32_Free (infoPtr);
3710 SetWindowLongA (hwnd, 0, 0);
3717 TOOLBAR_EraseBackground (HWND hwnd, WPARAM wParam, LPARAM lParam)
3719 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3721 if (infoPtr->bTransparent)
3722 return SendMessageA (GetParent (hwnd), WM_ERASEBKGND, wParam, lParam);
3724 return DefWindowProcA (hwnd, WM_ERASEBKGND, wParam, lParam);
3729 TOOLBAR_GetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
3731 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3733 return infoPtr->hFont;
3738 TOOLBAR_LButtonDblClk (HWND hwnd, WPARAM wParam, LPARAM lParam)
3740 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3741 TBUTTON_INFO *btnPtr;
3745 pt.x = (INT)LOWORD(lParam);
3746 pt.y = (INT)HIWORD(lParam);
3747 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
3750 btnPtr = &infoPtr->buttons[nHit];
3751 if (!(btnPtr->fsState & TBSTATE_ENABLED))
3754 infoPtr->bCaptured = TRUE;
3755 infoPtr->nButtonDown = nHit;
3757 btnPtr->fsState |= TBSTATE_PRESSED;
3759 InvalidateRect(hwnd, &btnPtr->rect, TOOLBAR_HasText(infoPtr,
3762 else if (GetWindowLongA (hwnd, GWL_STYLE) & CCS_ADJUSTABLE)
3763 TOOLBAR_Customize (hwnd);
3770 TOOLBAR_LButtonDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
3772 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3773 TBUTTON_INFO *btnPtr;
3777 if (infoPtr->hwndToolTip)
3778 TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
3779 WM_LBUTTONDOWN, wParam, lParam);
3781 pt.x = (INT)LOWORD(lParam);
3782 pt.y = (INT)HIWORD(lParam);
3783 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
3787 btnPtr = &infoPtr->buttons[nHit];
3788 if (!(btnPtr->fsState & TBSTATE_ENABLED))
3791 infoPtr->nOldHit = nHit;
3793 CopyRect(&arrowRect, &btnPtr->rect);
3794 arrowRect.left = max(btnPtr->rect.left, btnPtr->rect.right - DDARROW_WIDTH);
3796 /* for EX_DRAWDDARROWS style, click must be in the drop-down arrow rect */
3797 if ((btnPtr->fsStyle & TBSTYLE_DROPDOWN) &&
3798 ((TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle) && PtInRect(&arrowRect, pt)) ||
3799 (!TOOLBAR_HasDropDownArrows(infoPtr->dwExStyle))))
3803 * this time we must force a Redraw, so the btn is
3804 * painted down before CaptureChanged repaints it up
3806 RedrawWindow(hwnd,&btnPtr->rect,0,
3807 RDW_ERASE|RDW_INVALIDATE|RDW_UPDATENOW);
3809 nmtb.hdr.hwndFrom = hwnd;
3810 nmtb.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
3811 nmtb.hdr.code = TBN_DROPDOWN;
3812 nmtb.iItem = btnPtr->idCommand;
3814 SendMessageA (infoPtr->hwndNotify, WM_NOTIFY,
3815 (WPARAM)nmtb.hdr.idFrom, (LPARAM)&nmtb);
3820 infoPtr->bCaptured = TRUE;
3821 infoPtr->nButtonDown = nHit;
3823 btnPtr->fsState |= TBSTATE_PRESSED;
3824 btnPtr->bHot = FALSE;
3826 InvalidateRect(hwnd, &btnPtr->rect,
3827 TOOLBAR_HasText(infoPtr, btnPtr));
3835 TOOLBAR_LButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
3837 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3838 TBUTTON_INFO *btnPtr;
3842 BOOL bSendMessage = TRUE;
3844 if (infoPtr->hwndToolTip)
3845 TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
3846 WM_LBUTTONUP, wParam, lParam);
3848 pt.x = (INT)LOWORD(lParam);
3849 pt.y = (INT)HIWORD(lParam);
3850 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
3852 /* restore hot effect to hot button disabled by TOOLBAR_LButtonDown() */
3853 /* if the cursor is still inside of the toolbar */
3854 if((infoPtr->nHotItem >= 0) && (nHit != -1))
3855 infoPtr->buttons[infoPtr->nHotItem].bHot = TRUE;
3857 if ((infoPtr->bCaptured) && (infoPtr->nButtonDown >= 0)) {
3858 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
3859 btnPtr->fsState &= ~TBSTATE_PRESSED;
3861 if (nHit == infoPtr->nButtonDown) {
3862 if (btnPtr->fsStyle & TBSTYLE_CHECK) {
3863 if (btnPtr->fsStyle & TBSTYLE_GROUP) {
3864 nOldIndex = TOOLBAR_GetCheckedGroupButtonIndex (infoPtr,
3865 infoPtr->nButtonDown);
3866 if (nOldIndex == infoPtr->nButtonDown)
3867 bSendMessage = FALSE;
3868 if ((nOldIndex != infoPtr->nButtonDown) &&
3870 infoPtr->buttons[nOldIndex].fsState &= ~TBSTATE_CHECKED;
3871 btnPtr->fsState |= TBSTATE_CHECKED;
3874 if (btnPtr->fsState & TBSTATE_CHECKED)
3875 btnPtr->fsState &= ~TBSTATE_CHECKED;
3877 btnPtr->fsState |= TBSTATE_CHECKED;
3882 bSendMessage = FALSE;
3884 if (nOldIndex != -1)
3886 InvalidateRect(hwnd, &infoPtr->buttons[nOldIndex].rect,
3887 TOOLBAR_HasText(infoPtr, &infoPtr->buttons[nOldIndex]));
3891 * now we can ReleaseCapture, which triggers CAPTURECHANGED msg,
3892 * that resets bCaptured and btn TBSTATE_PRESSED flags,
3893 * and obliterates nButtonDown and nOldHit (see TOOLBAR_CaptureChanged)
3898 SendMessageA (GetParent(hwnd), WM_COMMAND,
3899 MAKEWPARAM(btnPtr->idCommand, 0), (LPARAM)hwnd);
3906 TOOLBAR_CaptureChanged(HWND hwnd)
3908 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3909 TBUTTON_INFO *btnPtr;
3911 infoPtr->bCaptured = FALSE;
3913 if (infoPtr->nButtonDown >= 0)
3915 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
3916 btnPtr->fsState &= ~TBSTATE_PRESSED;
3918 infoPtr->nButtonDown = -1;
3919 infoPtr->nOldHit = -1;
3921 InvalidateRect(hwnd, &btnPtr->rect, TOOLBAR_HasText(infoPtr,
3928 TOOLBAR_MouseLeave (HWND hwnd, WPARAM wParam, LPARAM lParam)
3930 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3931 TBUTTON_INFO *hotBtnPtr, *btnPtr;
3933 if (infoPtr->nOldHit < 0)
3936 hotBtnPtr = &infoPtr->buttons[infoPtr->nOldHit];
3938 /* Redraw the button if the last button we were over is the hot button and it
3940 if((infoPtr->nOldHit == infoPtr->nHotItem) && (hotBtnPtr->fsState & TBSTATE_ENABLED))
3942 hotBtnPtr->bHot = FALSE;
3944 InvalidateRect (hwnd, &hotBtnPtr->rect, TOOLBAR_HasText(infoPtr,
3948 /* If the last button we were over is depressed then make it not */
3949 /* depressed and redraw it */
3950 if(infoPtr->nOldHit == infoPtr->nButtonDown)
3952 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
3954 btnPtr->fsState &= ~TBSTATE_PRESSED;
3956 InvalidateRect (hwnd, &(btnPtr->rect), TRUE);
3959 infoPtr->nOldHit = -1; /* reset the old hit index as we've left the toolbar */
3960 infoPtr->nHotItem = -2; /* It has to be initially different from nOldHit */
3966 TOOLBAR_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
3968 TBUTTON_INFO *btnPtr, *oldBtnPtr;
3969 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
3972 TRACKMOUSEEVENT trackinfo;
3974 /* fill in the TRACKMOUSEEVENT struct */
3975 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
3976 trackinfo.dwFlags = TME_QUERY;
3977 trackinfo.hwndTrack = hwnd;
3978 trackinfo.dwHoverTime = HOVER_DEFAULT;
3980 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
3981 _TrackMouseEvent(&trackinfo);
3983 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
3984 if(!(trackinfo.dwFlags & TME_LEAVE)) {
3985 trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
3987 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
3988 /* and can properly deactivate the hot toolbar button */
3989 _TrackMouseEvent(&trackinfo);
3992 if (infoPtr->hwndToolTip)
3993 TOOLBAR_RelayEvent (infoPtr->hwndToolTip, hwnd,
3994 WM_MOUSEMOVE, wParam, lParam);
3996 pt.x = (INT)LOWORD(lParam);
3997 pt.y = (INT)HIWORD(lParam);
3999 nHit = TOOLBAR_InternalHitTest (hwnd, &pt);
4001 if (infoPtr->nOldHit != nHit)
4003 /* Remove the effect of an old hot button if the button was enabled and was
4004 drawn with the hot button effect */
4005 if(infoPtr->nOldHit >= 0 && infoPtr->nOldHit == infoPtr->nHotItem &&
4006 (infoPtr->buttons[infoPtr->nOldHit].fsState & TBSTATE_ENABLED))
4008 oldBtnPtr = &infoPtr->buttons[infoPtr->nOldHit];
4009 oldBtnPtr->bHot = FALSE;
4011 InvalidateRect (hwnd, &oldBtnPtr->rect,
4012 TOOLBAR_HasText(infoPtr, oldBtnPtr));
4015 /* It's not a separator or in nowhere. It's a hot button. */
4018 btnPtr = &infoPtr->buttons[nHit];
4019 btnPtr->bHot = TRUE;
4021 infoPtr->nHotItem = nHit;
4023 /* only enabled buttons show hot effect */
4024 if(infoPtr->buttons[nHit].fsState & TBSTATE_ENABLED)
4026 InvalidateRect(hwnd, &btnPtr->rect,
4027 TOOLBAR_HasText(infoPtr, btnPtr));
4032 if (infoPtr->bCaptured) {
4033 btnPtr = &infoPtr->buttons[infoPtr->nButtonDown];
4034 if (infoPtr->nOldHit == infoPtr->nButtonDown) {
4035 btnPtr->fsState &= ~TBSTATE_PRESSED;
4036 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4038 else if (nHit == infoPtr->nButtonDown) {
4039 btnPtr->fsState |= TBSTATE_PRESSED;
4040 InvalidateRect(hwnd, &btnPtr->rect, TRUE);
4043 infoPtr->nOldHit = nHit;
4049 inline static LRESULT
4050 TOOLBAR_NCActivate (HWND hwnd, WPARAM wParam, LPARAM lParam)
4052 /* if (wndPtr->dwStyle & CCS_NODIVIDER) */
4053 return DefWindowProcA (hwnd, WM_NCACTIVATE, wParam, lParam);
4055 /* return TOOLBAR_NCPaint (wndPtr, wParam, lParam); */
4059 inline static LRESULT
4060 TOOLBAR_NCCalcSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
4062 if (!(GetWindowLongA (hwnd, GWL_STYLE) & CCS_NODIVIDER))
4063 ((LPRECT)lParam)->top += GetSystemMetrics(SM_CYEDGE);
4065 return DefWindowProcA (hwnd, WM_NCCALCSIZE, wParam, lParam);
4070 TOOLBAR_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
4072 TOOLBAR_INFO *infoPtr;
4074 /* allocate memory for info structure */
4075 infoPtr = (TOOLBAR_INFO *)COMCTL32_Alloc (sizeof(TOOLBAR_INFO));
4076 SetWindowLongA (hwnd, 0, (DWORD)infoPtr);
4079 infoPtr->dwStructSize = sizeof(TBBUTTON);
4081 /* fix instance handle, if the toolbar was created by CreateToolbarEx() */
4082 if (!GetWindowLongA (hwnd, GWL_HINSTANCE)) {
4083 HINSTANCE hInst = (HINSTANCE)GetWindowLongA (GetParent (hwnd), GWL_HINSTANCE);
4084 SetWindowLongA (hwnd, GWL_HINSTANCE, (DWORD)hInst);
4087 return DefWindowProcA (hwnd, WM_NCCREATE, wParam, lParam);
4092 TOOLBAR_NCPaint (HWND hwnd, WPARAM wParam, LPARAM lParam)
4094 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
4098 if (dwStyle & WS_MINIMIZE)
4099 return 0; /* Nothing to do */
4101 DefWindowProcA (hwnd, WM_NCPAINT, wParam, lParam);
4103 if (!(hdc = GetDCEx (hwnd, 0, DCX_USESTYLE | DCX_WINDOW)))
4106 if (!(dwStyle & CCS_NODIVIDER))
4108 GetWindowRect (hwnd, &rcWindow);
4109 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
4110 if( dwStyle & WS_BORDER )
4111 OffsetRect (&rcWindow, 1, 1);
4112 DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_TOP);
4115 ReleaseDC( hwnd, hdc );
4121 inline static LRESULT
4122 TOOLBAR_Notify (HWND hwnd, WPARAM wParam, LPARAM lParam)
4124 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4125 LPNMHDR lpnmh = (LPNMHDR)lParam;
4127 TRACE("passing WM_NOTIFY!\n");
4129 if ((infoPtr->hwndToolTip) && (lpnmh->hwndFrom == infoPtr->hwndToolTip)) {
4130 SendMessageA (infoPtr->hwndNotify, WM_NOTIFY, wParam, lParam);
4133 if (lpnmh->code == TTN_GETDISPINFOA) {
4134 LPNMTTDISPINFOA lpdi = (LPNMTTDISPINFOA)lParam;
4136 FIXME("retrieving ASCII string\n");
4139 else if (lpnmh->code == TTN_GETDISPINFOW) {
4140 LPNMTTDISPINFOW lpdi = (LPNMTTDISPINFOW)lParam;
4142 FIXME("retrieving UNICODE string\n");
4153 TOOLBAR_Paint (HWND hwnd, WPARAM wParam)
4155 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr(hwnd);
4161 /* fill ps.rcPaint with a default rect */
4162 memcpy(&(ps.rcPaint), &(infoPtr->rcBound), sizeof(infoPtr->rcBound));
4164 hdc = wParam==0 ? BeginPaint(hwnd, &ps) : (HDC)wParam;
4165 TOOLBAR_Refresh (hwnd, hdc, &ps);
4166 if (!wParam) EndPaint (hwnd, &ps);
4173 TOOLBAR_Size (HWND hwnd, WPARAM wParam, LPARAM lParam)
4175 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4176 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
4185 /* Resize deadlock check */
4186 if (infoPtr->bAutoSize) {
4187 infoPtr->bAutoSize = FALSE;
4191 /* FIXME: optimize to only update size if the new size doesn't */
4192 /* match the current size */
4194 flags = (INT) wParam;
4196 /* FIXME for flags =
4197 * SIZE_MAXIMIZED, SIZE_MAXSHOW, SIZE_MINIMIZED
4200 TRACE("sizing toolbar!\n");
4202 if (flags == SIZE_RESTORED) {
4203 /* width and height don't apply */
4204 parent = GetParent (hwnd);
4205 GetClientRect(parent, &parent_rect);
4206 x = parent_rect.left;
4207 y = parent_rect.top;
4209 if (dwStyle & CCS_NORESIZE) {
4210 uPosFlags |= (SWP_NOSIZE | SWP_NOMOVE);
4213 * this sets the working width of the toolbar, and
4214 * Calc Toolbar will not adjust it, only the height
4216 infoPtr->nWidth = parent_rect.right - parent_rect.left;
4217 cy = infoPtr->nHeight;
4218 cx = infoPtr->nWidth;
4219 TOOLBAR_CalcToolbar (hwnd);
4220 infoPtr->nWidth = cx;
4221 infoPtr->nHeight = cy;
4224 infoPtr->nWidth = parent_rect.right - parent_rect.left;
4225 TOOLBAR_CalcToolbar (hwnd);
4226 cy = infoPtr->nHeight;
4227 cx = infoPtr->nWidth;
4229 if (dwStyle & CCS_NOMOVEY) {
4230 GetWindowRect(hwnd, &window_rect);
4231 ScreenToClient(parent, (LPPOINT)&window_rect.left);
4232 y = window_rect.top;
4236 if (dwStyle & CCS_NOPARENTALIGN) {
4237 uPosFlags |= SWP_NOMOVE;
4238 cy = infoPtr->nHeight;
4239 cx = infoPtr->nWidth;
4242 if (!(dwStyle & CCS_NODIVIDER))
4243 cy += GetSystemMetrics(SM_CYEDGE);
4245 if (dwStyle & WS_BORDER)
4248 cy += GetSystemMetrics(SM_CYEDGE);
4249 cx += GetSystemMetrics(SM_CYEDGE);
4252 SetWindowPos (hwnd, 0, parent_rect.left - x, parent_rect.top - y,
4253 cx, cy, uPosFlags | SWP_NOZORDER);
4260 TOOLBAR_StyleChanged (HWND hwnd, INT nType, LPSTYLESTRUCT lpStyle)
4262 TOOLBAR_INFO *infoPtr = TOOLBAR_GetInfoPtr (hwnd);
4264 if (nType == GWL_STYLE) {
4265 if (lpStyle->styleNew & TBSTYLE_LIST) {
4266 infoPtr->dwDTFlags = DT_LEFT | DT_VCENTER | DT_SINGLELINE;
4269 infoPtr->dwDTFlags = DT_CENTER;
4273 TOOLBAR_AutoSize (hwnd);
4275 InvalidateRect(hwnd, NULL, FALSE);
4282 static LRESULT WINAPI
4283 ToolbarWindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
4285 if (!TOOLBAR_GetInfoPtr(hwnd) && (uMsg != WM_NCCREATE))
4286 return DefWindowProcA( hwnd, uMsg, wParam, lParam );
4291 return TOOLBAR_AddBitmap (hwnd, wParam, lParam);
4293 case TB_ADDBUTTONSA:
4294 return TOOLBAR_AddButtonsA (hwnd, wParam, lParam);
4296 case TB_ADDBUTTONSW:
4297 return TOOLBAR_AddButtonsW (hwnd, wParam, lParam);
4300 return TOOLBAR_AddStringA (hwnd, wParam, lParam);
4303 return TOOLBAR_AddStringW (hwnd, wParam, lParam);
4306 return TOOLBAR_AutoSize (hwnd);
4308 case TB_BUTTONCOUNT:
4309 return TOOLBAR_ButtonCount (hwnd, wParam, lParam);
4311 case TB_BUTTONSTRUCTSIZE:
4312 return TOOLBAR_ButtonStructSize (hwnd, wParam, lParam);
4314 case TB_CHANGEBITMAP:
4315 return TOOLBAR_ChangeBitmap (hwnd, wParam, lParam);
4317 case TB_CHECKBUTTON:
4318 return TOOLBAR_CheckButton (hwnd, wParam, lParam);
4320 case TB_COMMANDTOINDEX:
4321 return TOOLBAR_CommandToIndex (hwnd, wParam, lParam);
4324 return TOOLBAR_Customize (hwnd);
4326 case TB_DELETEBUTTON:
4327 return TOOLBAR_DeleteButton (hwnd, wParam, lParam);
4329 case TB_ENABLEBUTTON:
4330 return TOOLBAR_EnableButton (hwnd, wParam, lParam);
4332 case TB_GETANCHORHIGHLIGHT:
4333 return TOOLBAR_GetAnchorHighlight (hwnd);
4336 return TOOLBAR_GetBitmap (hwnd, wParam, lParam);
4338 case TB_GETBITMAPFLAGS:
4339 return TOOLBAR_GetBitmapFlags (hwnd, wParam, lParam);
4342 return TOOLBAR_GetButton (hwnd, wParam, lParam);
4344 case TB_GETBUTTONINFOA:
4345 return TOOLBAR_GetButtonInfoA (hwnd, wParam, lParam);
4347 case TB_GETBUTTONINFOW:
4348 return TOOLBAR_GetButtonInfoW (hwnd, wParam, lParam);
4350 case TB_GETBUTTONSIZE:
4351 return TOOLBAR_GetButtonSize (hwnd);
4353 case TB_GETBUTTONTEXTA:
4354 return TOOLBAR_GetButtonTextA (hwnd, wParam, lParam);
4356 case TB_GETBUTTONTEXTW:
4357 return TOOLBAR_GetButtonTextW (hwnd, wParam, lParam);
4359 /* case TB_GETCOLORSCHEME: */ /* 4.71 */
4361 case TB_GETDISABLEDIMAGELIST:
4362 return TOOLBAR_GetDisabledImageList (hwnd, wParam, lParam);
4364 case TB_GETEXTENDEDSTYLE:
4365 return TOOLBAR_GetExtendedStyle (hwnd);
4367 case TB_GETHOTIMAGELIST:
4368 return TOOLBAR_GetHotImageList (hwnd, wParam, lParam);
4371 return TOOLBAR_GetHotItem (hwnd);
4373 case TB_GETIMAGELIST:
4374 return TOOLBAR_GetImageList (hwnd, wParam, lParam);
4376 /* case TB_GETINSERTMARK: */ /* 4.71 */
4377 /* case TB_GETINSERTMARKCOLOR: */ /* 4.71 */
4379 case TB_GETITEMRECT:
4380 return TOOLBAR_GetItemRect (hwnd, wParam, lParam);
4383 return TOOLBAR_GetMaxSize (hwnd, wParam, lParam);
4385 /* case TB_GETOBJECT: */ /* 4.71 */
4386 /* case TB_GETPADDING: */ /* 4.71 */
4389 return TOOLBAR_GetRect (hwnd, wParam, lParam);
4392 return TOOLBAR_GetRows (hwnd, wParam, lParam);
4395 return TOOLBAR_GetState (hwnd, wParam, lParam);
4398 return TOOLBAR_GetStyle (hwnd, wParam, lParam);
4400 case TB_GETTEXTROWS:
4401 return TOOLBAR_GetTextRows (hwnd, wParam, lParam);
4403 case TB_GETTOOLTIPS:
4404 return TOOLBAR_GetToolTips (hwnd, wParam, lParam);
4406 case TB_GETUNICODEFORMAT:
4407 return TOOLBAR_GetUnicodeFormat (hwnd, wParam, lParam);
4409 case CCM_GETVERSION:
4410 return TOOLBAR_GetVersion (hwnd);
4413 return TOOLBAR_HideButton (hwnd, wParam, lParam);
4416 return TOOLBAR_HitTest (hwnd, wParam, lParam);
4418 case TB_INDETERMINATE:
4419 return TOOLBAR_Indeterminate (hwnd, wParam, lParam);
4421 case TB_INSERTBUTTONA:
4422 return TOOLBAR_InsertButtonA (hwnd, wParam, lParam);
4424 case TB_INSERTBUTTONW:
4425 return TOOLBAR_InsertButtonW (hwnd, wParam, lParam);
4427 /* case TB_INSERTMARKHITTEST: */ /* 4.71 */
4429 case TB_ISBUTTONCHECKED:
4430 return TOOLBAR_IsButtonChecked (hwnd, wParam, lParam);
4432 case TB_ISBUTTONENABLED:
4433 return TOOLBAR_IsButtonEnabled (hwnd, wParam, lParam);
4435 case TB_ISBUTTONHIDDEN:
4436 return TOOLBAR_IsButtonHidden (hwnd, wParam, lParam);
4438 case TB_ISBUTTONHIGHLIGHTED:
4439 return TOOLBAR_IsButtonHighlighted (hwnd, wParam, lParam);
4441 case TB_ISBUTTONINDETERMINATE:
4442 return TOOLBAR_IsButtonIndeterminate (hwnd, wParam, lParam);
4444 case TB_ISBUTTONPRESSED:
4445 return TOOLBAR_IsButtonPressed (hwnd, wParam, lParam);
4447 case TB_LOADIMAGES: /* 4.70 */
4448 FIXME("missing standard imagelists\n");
4451 /* case TB_MAPACCELERATORA: */ /* 4.71 */
4452 /* case TB_MAPACCELERATORW: */ /* 4.71 */
4453 /* case TB_MARKBUTTON: */ /* 4.71 */
4454 /* case TB_MOVEBUTTON: */ /* 4.71 */
4456 case TB_PRESSBUTTON:
4457 return TOOLBAR_PressButton (hwnd, wParam, lParam);
4459 /* case TB_REPLACEBITMAP: */
4461 case TB_SAVERESTOREA:
4462 return TOOLBAR_SaveRestoreA (hwnd, wParam, lParam);
4464 case TB_SAVERESTOREW:
4465 return TOOLBAR_SaveRestoreW (hwnd, wParam, lParam);
4467 case TB_SETANCHORHIGHLIGHT:
4468 return TOOLBAR_SetAnchorHighlight (hwnd, wParam);
4470 case TB_SETBITMAPSIZE:
4471 return TOOLBAR_SetBitmapSize (hwnd, wParam, lParam);
4473 case TB_SETBUTTONINFOA:
4474 return TOOLBAR_SetButtonInfoA (hwnd, wParam, lParam);
4476 case TB_SETBUTTONINFOW:
4477 return TOOLBAR_SetButtonInfoW (hwnd, wParam, lParam);
4479 case TB_SETBUTTONSIZE:
4480 return TOOLBAR_SetButtonSize (hwnd, wParam, lParam);
4482 case TB_SETBUTTONWIDTH:
4483 return TOOLBAR_SetButtonWidth (hwnd, wParam, lParam);
4486 return TOOLBAR_SetCmdId (hwnd, wParam, lParam);
4488 /* case TB_SETCOLORSCHEME: */ /* 4.71 */
4490 case TB_SETDISABLEDIMAGELIST:
4491 return TOOLBAR_SetDisabledImageList (hwnd, wParam, lParam);
4493 case TB_SETDRAWTEXTFLAGS:
4494 return TOOLBAR_SetDrawTextFlags (hwnd, wParam, lParam);
4496 case TB_SETEXTENDEDSTYLE:
4497 return TOOLBAR_SetExtendedStyle (hwnd, wParam, lParam);
4499 case TB_SETHOTIMAGELIST:
4500 return TOOLBAR_SetHotImageList (hwnd, wParam, lParam);
4503 return TOOLBAR_SetHotItem (hwnd, wParam);
4505 case TB_SETIMAGELIST:
4506 return TOOLBAR_SetImageList (hwnd, wParam, lParam);
4509 return TOOLBAR_SetIndent (hwnd, wParam, lParam);
4511 /* case TB_SETINSERTMARK: */ /* 4.71 */
4513 case TB_SETINSERTMARKCOLOR:
4514 return TOOLBAR_SetInsertMarkColor (hwnd, wParam, lParam);
4516 case TB_SETMAXTEXTROWS:
4517 return TOOLBAR_SetMaxTextRows (hwnd, wParam, lParam);
4519 /* case TB_SETPADDING: */ /* 4.71 */
4522 return TOOLBAR_SetParent (hwnd, wParam, lParam);
4525 return TOOLBAR_SetRows (hwnd, wParam, lParam);
4528 return TOOLBAR_SetState (hwnd, wParam, lParam);
4531 return TOOLBAR_SetStyle (hwnd, wParam, lParam);
4533 case TB_SETTOOLTIPS:
4534 return TOOLBAR_SetToolTips (hwnd, wParam, lParam);
4536 case TB_SETUNICODEFORMAT:
4537 return TOOLBAR_SetUnicodeFormat (hwnd, wParam, lParam);
4539 case CCM_SETVERSION:
4540 return TOOLBAR_SetVersion (hwnd, (INT)wParam);
4546 return TOOLBAR_Create (hwnd, wParam, lParam);
4549 return TOOLBAR_Destroy (hwnd, wParam, lParam);
4552 return TOOLBAR_EraseBackground (hwnd, wParam, lParam);
4555 return TOOLBAR_GetFont (hwnd, wParam, lParam);
4557 /* case WM_KEYDOWN: */
4558 /* case WM_KILLFOCUS: */
4560 case WM_LBUTTONDBLCLK:
4561 return TOOLBAR_LButtonDblClk (hwnd, wParam, lParam);
4563 case WM_LBUTTONDOWN:
4564 return TOOLBAR_LButtonDown (hwnd, wParam, lParam);
4567 return TOOLBAR_LButtonUp (hwnd, wParam, lParam);
4570 return TOOLBAR_MouseMove (hwnd, wParam, lParam);
4573 return TOOLBAR_MouseLeave (hwnd, wParam, lParam);
4575 case WM_CAPTURECHANGED:
4576 return TOOLBAR_CaptureChanged(hwnd);
4579 return TOOLBAR_NCActivate (hwnd, wParam, lParam);
4582 return TOOLBAR_NCCalcSize (hwnd, wParam, lParam);
4585 return TOOLBAR_NCCreate (hwnd, wParam, lParam);
4588 return TOOLBAR_NCPaint (hwnd, wParam, lParam);
4591 return TOOLBAR_Notify (hwnd, wParam, lParam);
4593 /* case WM_NOTIFYFORMAT: */
4596 return TOOLBAR_Paint (hwnd, wParam);
4599 return TOOLBAR_Size (hwnd, wParam, lParam);
4601 case WM_STYLECHANGED:
4602 return TOOLBAR_StyleChanged (hwnd, (INT)wParam, (LPSTYLESTRUCT)lParam);
4604 /* case WM_SYSCOLORCHANGE: */
4606 /* case WM_WININICHANGE: */
4611 case WM_MEASUREITEM:
4613 return SendMessageA (GetParent (hwnd), uMsg, wParam, lParam);
4616 if (uMsg >= WM_USER)
4617 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
4618 uMsg, wParam, lParam);
4619 return DefWindowProcA (hwnd, uMsg, wParam, lParam);
4626 TOOLBAR_Register (void)
4630 ZeroMemory (&wndClass, sizeof(WNDCLASSA));
4631 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
4632 wndClass.lpfnWndProc = (WNDPROC)ToolbarWindowProc;
4633 wndClass.cbClsExtra = 0;
4634 wndClass.cbWndExtra = sizeof(TOOLBAR_INFO *);
4635 wndClass.hCursor = LoadCursorA (0, IDC_ARROWA);
4636 wndClass.hbrBackground = (HBRUSH)(COLOR_3DFACE + 1);
4637 wndClass.lpszClassName = TOOLBARCLASSNAMEA;
4639 RegisterClassA (&wndClass);
4644 TOOLBAR_Unregister (void)
4646 UnregisterClassA (TOOLBARCLASSNAMEA, (HINSTANCE)NULL);