4 * Copyright 1998, 1999 Eric Kohl
5 * Copyright 2007, 2008 Mikolaj Zalewski
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * This code was audited for completeness against the documented features
24 * of Comctl32.dll version 6.0 on Oct. 19, 2004, by Robert Shearman.
26 * Unless otherwise noted, we believe this code to be complete, as per
27 * the specification mentioned above.
28 * If you discover missing features or bugs please note them below.
51 * - WM_QUERYNEWPALETTE
59 * - NM_RELEASEDCAPTURE
65 * Native uses (on each draw!!) SM_CYBORDER (or SM_CXBORDER for CCS_VERT)
66 * to set the size of the separator width (the value SEP_WIDTH_SIZE
67 * in here). Should be fixed!!
71 * Testing: set to 1 to make background brush *always* green
76 * 3. REBAR_MoveChildWindows should have a loop because more than
77 * one pass (together with the RBN_CHILDSIZEs) is made on
78 * at least RB_INSERTBAND
89 #include "wine/unicode.h"
96 #include "wine/debug.h"
98 WINE_DEFAULT_DEBUG_CHANNEL(rebar
);
108 UINT cxMinChild
; /* valid if _CHILDSIZE */
109 UINT cyMinChild
; /* valid if _CHILDSIZE */
110 UINT cx
; /* valid if _SIZE */
113 UINT cyChild
; /* valid if _CHILDSIZE */
114 UINT cyMaxChild
; /* valid if _CHILDSIZE */
115 UINT cyIntegral
; /* valid if _CHILDSIZE */
120 INT cxEffective
; /* current cx for band */
121 UINT cyHeader
; /* the height of the header */
122 UINT cxMinBand
; /* minimum cx for band */
123 UINT cyMinBand
; /* minimum cy for band */
125 UINT cyRowSoFar
; /* for RBS_VARHEIGHT - the height of the row if it would break on this band (set by _Layout) */
126 INT iRow
; /* zero-based index of the row this band assigned to */
127 UINT fStatus
; /* status flags, reset only by _Validate */
128 UINT fDraw
; /* drawing flags, reset only by _Layout */
129 UINT uCDret
; /* last return from NM_CUSTOMDRAW */
130 RECT rcBand
; /* calculated band rectangle - coordinates swapped for CCS_VERT */
131 RECT rcGripper
; /* calculated gripper rectangle */
132 RECT rcCapImage
; /* calculated caption image rectangle */
133 RECT rcCapText
; /* calculated caption text rectangle */
134 RECT rcChild
; /* calculated child rectangle */
135 RECT rcChevron
; /* calculated chevron rectangle */
142 #define HAS_GRIPPER 0x00000001
143 #define HAS_IMAGE 0x00000002
144 #define HAS_TEXT 0x00000004
147 #define DRAW_GRIPPER 0x00000001
148 #define DRAW_IMAGE 0x00000002
149 #define DRAW_TEXT 0x00000004
150 #define DRAW_CHEVRONHOT 0x00000040
151 #define DRAW_CHEVRONPUSHED 0x00000080
152 #define NTF_INVALIDATE 0x01000000
156 COLORREF clrBk
; /* background color */
157 COLORREF clrText
; /* text color */
158 COLORREF clrBtnText
; /* system color for BTNTEXT */
159 COLORREF clrBtnFace
; /* system color for BTNFACE */
160 HIMAGELIST himl
; /* handle to imagelist */
161 UINT uNumBands
; /* # of bands in rebar (first=0, last=uNumBands-1 */
162 UINT uNumRows
; /* # of rows of bands (first=1, last=uNumRows */
163 HWND hwndSelf
; /* handle of REBAR window itself */
164 HWND hwndToolTip
; /* handle to the tool tip control */
165 HWND hwndNotify
; /* notification window (parent) */
167 HFONT hFont
; /* handle to the rebar's font */
168 SIZE imageSize
; /* image size (image list) */
169 DWORD dwStyle
; /* window style */
170 DWORD orgStyle
; /* original style (dwStyle may change) */
171 SIZE calcSize
; /* calculated rebar size - coordinates swapped for CCS_VERT */
172 BOOL bUnicode
; /* TRUE if parent wants notify in W format */
173 BOOL DoRedraw
; /* TRUE to actually draw bands */
174 UINT fStatus
; /* Status flags (see below) */
175 HCURSOR hcurArrow
; /* handle to the arrow cursor */
176 HCURSOR hcurHorz
; /* handle to the EW cursor */
177 HCURSOR hcurVert
; /* handle to the NS cursor */
178 HCURSOR hcurDrag
; /* handle to the drag cursor */
179 INT iVersion
; /* version number */
180 POINT dragStart
; /* x,y of button down */
181 POINT dragNow
; /* x,y of this MouseMove */
182 INT iOldBand
; /* last band that had the mouse cursor over it */
183 INT ihitoffset
; /* offset of hotspot from gripper.left */
184 INT ichevronhotBand
; /* last band that had a hot chevron */
185 INT iGrabbedBand
;/* band number of band whose gripper was grabbed */
187 HDPA bands
; /* pointer to the array of rebar bands */
191 #define BEGIN_DRAG_ISSUED 0x00000001
192 #define SELF_RESIZE 0x00000002
193 #define BAND_NEEDS_REDRAW 0x00000020
195 /* used by Windows to mark that the header size has been set by the user and shouldn't be changed */
196 #define RBBS_UNDOC_FIXEDHEADER 0x40000000
198 /* ---- REBAR layout constants. Mostly determined by ---- */
199 /* ---- experiment on WIN 98. ---- */
201 /* Width (or height) of separators between bands (either horz. or */
202 /* vert.). True only if RBS_BANDBORDERS is set */
203 #define SEP_WIDTH_SIZE 2
204 #define SEP_WIDTH ((infoPtr->dwStyle & RBS_BANDBORDERS) ? SEP_WIDTH_SIZE : 0)
206 /* Blank (background color) space between Gripper (if present) */
207 /* and next item (image, text, or window). Always present */
208 #define REBAR_ALWAYS_SPACE 4
210 /* Blank (background color) space after Image (if present). */
211 #define REBAR_POST_IMAGE 2
213 /* Blank (background color) space after Text (if present). */
214 #define REBAR_POST_TEXT 4
216 /* Height of vertical gripper in a CCS_VERT rebar. */
217 #define GRIPPER_HEIGHT 16
219 /* Blank (background color) space before Gripper (if present). */
220 #define REBAR_PRE_GRIPPER 2
222 /* Width (of normal vertical gripper) or height (of horz. gripper) */
224 #define GRIPPER_WIDTH 3
226 /* Width of the chevron button if present */
227 #define CHEVRON_WIDTH 10
229 /* the gap between the child and the next band */
230 #define REBAR_POST_CHILD 4
232 /* Height of divider for Rebar if not disabled (CCS_NODIVIDER) */
233 /* either top or bottom */
234 #define REBAR_DIVIDER 2
236 /* height of a rebar without a child */
237 #define REBAR_NO_CHILD_HEIGHT 4
239 /* minimum vertical height of a normal bar */
240 /* or minimum width of a CCS_VERT bar - from experiment on Win2k */
241 #define REBAR_MINSIZE 23
243 /* This is the increment that is used over the band height */
244 #define REBARSPACE(a) ((a->fStyle & RBBS_CHILDEDGE) ? 2*REBAR_DIVIDER : 0)
246 /* ---- End of REBAR layout constants. ---- */
248 #define RB_GETBANDINFO_OLD (WM_USER+5) /* obsoleted after IE3, but we have to support it anyway */
250 /* The following define determines if a given band is hidden */
251 #define HIDDENBAND(a) (((a)->fStyle & RBBS_HIDDEN) || \
252 ((infoPtr->dwStyle & CCS_VERT) && \
253 ((a)->fStyle & RBBS_NOVERT)))
255 #define REBAR_GetInfoPtr(wndPtr) ((REBAR_INFO *)GetWindowLongPtrW (hwnd, 0))
257 static LRESULT
REBAR_NotifyFormat(REBAR_INFO
*infoPtr
, LPARAM lParam
);
258 static void REBAR_AutoSize(REBAR_INFO
*infoPtr
, BOOL needsLayout
);
260 /* no index check here */
261 static inline REBAR_BAND
* REBAR_GetBand(const REBAR_INFO
*infoPtr
, INT i
)
263 assert(i
>= 0 && i
< infoPtr
->uNumBands
);
264 return DPA_GetPtr(infoPtr
->bands
, i
);
267 /* "constant values" retrieved when DLL was initialized */
268 /* FIXME we do this when the classes are registered. */
269 static UINT mindragx
= 0;
270 static UINT mindragy
= 0;
272 static const char * const band_stylename
[] = {
273 "RBBS_BREAK", /* 0001 */
274 "RBBS_FIXEDSIZE", /* 0002 */
275 "RBBS_CHILDEDGE", /* 0004 */
276 "RBBS_HIDDEN", /* 0008 */
277 "RBBS_NOVERT", /* 0010 */
278 "RBBS_FIXEDBMP", /* 0020 */
279 "RBBS_VARIABLEHEIGHT", /* 0040 */
280 "RBBS_GRIPPERALWAYS", /* 0080 */
281 "RBBS_NOGRIPPER", /* 0100 */
284 static const char * const band_maskname
[] = {
285 "RBBIM_STYLE", /* 0x00000001 */
286 "RBBIM_COLORS", /* 0x00000002 */
287 "RBBIM_TEXT", /* 0x00000004 */
288 "RBBIM_IMAGE", /* 0x00000008 */
289 "RBBIM_CHILD", /* 0x00000010 */
290 "RBBIM_CHILDSIZE", /* 0x00000020 */
291 "RBBIM_SIZE", /* 0x00000040 */
292 "RBBIM_BACKGROUND", /* 0x00000080 */
293 "RBBIM_ID", /* 0x00000100 */
294 "RBBIM_IDEALSIZE", /* 0x00000200 */
295 "RBBIM_LPARAM", /* 0x00000400 */
296 "RBBIM_HEADERSIZE", /* 0x00000800 */
300 static CHAR line
[200];
302 static const WCHAR themeClass
[] = { 'R','e','b','a','r',0 };
305 REBAR_FmtStyle( UINT style
)
310 while (band_stylename
[i
]) {
311 if (style
& (1<<i
)) {
312 if (*line
!= 0) strcat(line
, " | ");
313 strcat(line
, band_stylename
[i
]);
322 REBAR_FmtMask( UINT mask
)
327 while (band_maskname
[i
]) {
329 if (*line
!= 0) strcat(line
, " | ");
330 strcat(line
, band_maskname
[i
]);
339 REBAR_DumpBandInfo(const REBARBANDINFOW
*pB
)
341 if( !TRACE_ON(rebar
) ) return;
342 TRACE("band info: ");
343 if (pB
->fMask
& RBBIM_ID
)
344 TRACE("ID=%u, ", pB
->wID
);
345 TRACE("size=%u, child=%p", pB
->cbSize
, pB
->hwndChild
);
346 if (pB
->fMask
& RBBIM_COLORS
)
347 TRACE(", clrF=0x%06x, clrB=0x%06x", pB
->clrFore
, pB
->clrBack
);
350 TRACE("band info: mask=0x%08x (%s)\n", pB
->fMask
, REBAR_FmtMask(pB
->fMask
));
351 if (pB
->fMask
& RBBIM_STYLE
)
352 TRACE("band info: style=0x%08x (%s)\n", pB
->fStyle
, REBAR_FmtStyle(pB
->fStyle
));
353 if (pB
->fMask
& (RBBIM_SIZE
| RBBIM_IDEALSIZE
| RBBIM_HEADERSIZE
| RBBIM_LPARAM
)) {
355 if (pB
->fMask
& RBBIM_SIZE
)
356 TRACE(" cx=%u", pB
->cx
);
357 if (pB
->fMask
& RBBIM_IDEALSIZE
)
358 TRACE(" xIdeal=%u", pB
->cxIdeal
);
359 if (pB
->fMask
& RBBIM_HEADERSIZE
)
360 TRACE(" xHeader=%u", pB
->cxHeader
);
361 if (pB
->fMask
& RBBIM_LPARAM
)
362 TRACE(" lParam=0x%08lx", pB
->lParam
);
365 if (pB
->fMask
& RBBIM_CHILDSIZE
)
366 TRACE("band info: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
368 pB
->cyMinChild
, pB
->cyChild
, pB
->cyMaxChild
, pB
->cyIntegral
);
372 REBAR_DumpBand (const REBAR_INFO
*iP
)
377 if(! TRACE_ON(rebar
) ) return;
379 TRACE("hwnd=%p: color=%08x/%08x, bands=%u, rows=%u, cSize=%d,%d\n",
380 iP
->hwndSelf
, iP
->clrText
, iP
->clrBk
, iP
->uNumBands
, iP
->uNumRows
,
381 iP
->calcSize
.cx
, iP
->calcSize
.cy
);
382 TRACE("hwnd=%p: flags=%08x, dragStart=%d,%d, dragNow=%d,%d, iGrabbedBand=%d\n",
383 iP
->hwndSelf
, iP
->fStatus
, iP
->dragStart
.x
, iP
->dragStart
.y
,
384 iP
->dragNow
.x
, iP
->dragNow
.y
,
386 TRACE("hwnd=%p: style=%08x, notify in Unicode=%s, redraw=%s\n",
387 iP
->hwndSelf
, iP
->dwStyle
, (iP
->bUnicode
)?"TRUE":"FALSE",
388 (iP
->DoRedraw
)?"TRUE":"FALSE");
389 for (i
= 0; i
< iP
->uNumBands
; i
++) {
390 pB
= REBAR_GetBand(iP
, i
);
391 TRACE("band # %u:", i
);
392 if (pB
->fMask
& RBBIM_ID
)
393 TRACE(" ID=%u", pB
->wID
);
394 if (pB
->fMask
& RBBIM_CHILD
)
395 TRACE(" child=%p", pB
->hwndChild
);
396 if (pB
->fMask
& RBBIM_COLORS
)
397 TRACE(" clrF=0x%06x clrB=0x%06x", pB
->clrFore
, pB
->clrBack
);
399 TRACE("band # %u: mask=0x%08x (%s)\n", i
, pB
->fMask
, REBAR_FmtMask(pB
->fMask
));
400 if (pB
->fMask
& RBBIM_STYLE
)
401 TRACE("band # %u: style=0x%08x (%s)\n",
402 i
, pB
->fStyle
, REBAR_FmtStyle(pB
->fStyle
));
403 TRACE("band # %u: xHeader=%u",
405 if (pB
->fMask
& (RBBIM_SIZE
| RBBIM_IDEALSIZE
| RBBIM_LPARAM
)) {
406 if (pB
->fMask
& RBBIM_SIZE
)
407 TRACE(" cx=%u", pB
->cx
);
408 if (pB
->fMask
& RBBIM_IDEALSIZE
)
409 TRACE(" xIdeal=%u", pB
->cxIdeal
);
410 if (pB
->fMask
& RBBIM_LPARAM
)
411 TRACE(" lParam=0x%08lx", pB
->lParam
);
415 TRACE("band # %u: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
416 i
, pB
->cxMinChild
, pB
->cyMinChild
, pB
->cyChild
, pB
->cyMaxChild
, pB
->cyIntegral
);
417 if (pB
->fMask
& RBBIM_TEXT
)
418 TRACE("band # %u: text=%s\n",
419 i
, (pB
->lpText
) ? debugstr_w(pB
->lpText
) : "(null)");
420 TRACE("band # %u: cxMinBand=%u, cxEffective=%u, cyMinBand=%u\n",
421 i
, pB
->cxMinBand
, pB
->cxEffective
, pB
->cyMinBand
);
422 TRACE("band # %u: fStatus=%08x, fDraw=%08x, Band=(%s), Grip=(%s)\n",
423 i
, pB
->fStatus
, pB
->fDraw
, wine_dbgstr_rect(&pB
->rcBand
),
424 wine_dbgstr_rect(&pB
->rcGripper
));
425 TRACE("band # %u: Img=(%s), Txt=(%s), Child=(%s)\n",
426 i
, wine_dbgstr_rect(&pB
->rcCapImage
),
427 wine_dbgstr_rect(&pB
->rcCapText
), wine_dbgstr_rect(&pB
->rcChild
));
432 /* dest can be equal to src */
433 static void translate_rect(const REBAR_INFO
*infoPtr
, RECT
*dest
, const RECT
*src
)
435 if (infoPtr
->dwStyle
& CCS_VERT
) {
438 dest
->left
= src
->top
;
442 dest
->right
= src
->bottom
;
449 static int get_rect_cx(const REBAR_INFO
*infoPtr
, const RECT
*lpRect
)
451 if (infoPtr
->dwStyle
& CCS_VERT
)
452 return lpRect
->bottom
- lpRect
->top
;
453 return lpRect
->right
- lpRect
->left
;
456 static int get_rect_cy(const REBAR_INFO
*infoPtr
, const RECT
*lpRect
)
458 if (infoPtr
->dwStyle
& CCS_VERT
)
459 return lpRect
->right
- lpRect
->left
;
460 return lpRect
->bottom
- lpRect
->top
;
463 static int round_child_height(const REBAR_BAND
*lpBand
, int cyHeight
)
466 if (lpBand
->cyIntegral
== 0)
468 cy
= max(cyHeight
- (int)lpBand
->cyMinChild
, 0);
469 cy
= lpBand
->cyMinChild
+ (cy
/lpBand
->cyIntegral
) * lpBand
->cyIntegral
;
470 cy
= min(cy
, lpBand
->cyMaxChild
);
474 static void update_min_band_height(const REBAR_INFO
*infoPtr
, REBAR_BAND
*lpBand
)
476 lpBand
->cyMinBand
= max(lpBand
->cyHeader
,
477 (lpBand
->hwndChild
? lpBand
->cyChild
+ REBARSPACE(lpBand
) : REBAR_NO_CHILD_HEIGHT
));
481 REBAR_DrawChevron (HDC hdc
, INT left
, INT top
, INT colorRef
)
486 if (!(hPen
= CreatePen( PS_SOLID
, 1, GetSysColor( colorRef
)))) return;
487 hOldPen
= SelectObject ( hdc
, hPen
);
490 MoveToEx (hdc
, x
, y
, NULL
);
491 LineTo (hdc
, x
+5, y
++); x
++;
492 MoveToEx (hdc
, x
, y
, NULL
);
493 LineTo (hdc
, x
+3, y
++); x
++;
494 MoveToEx (hdc
, x
, y
, NULL
);
495 LineTo (hdc
, x
+1, y
);
496 SelectObject( hdc
, hOldPen
);
497 DeleteObject( hPen
);
501 REBAR_GetNotifyParent (const REBAR_INFO
*infoPtr
)
505 parent
= infoPtr
->hwndNotify
;
507 parent
= GetParent (infoPtr
->hwndSelf
);
508 owner
= GetWindow (infoPtr
->hwndSelf
, GW_OWNER
);
509 if (owner
) parent
= owner
;
516 REBAR_Notify (NMHDR
*nmhdr
, const REBAR_INFO
*infoPtr
, UINT code
)
520 parent
= REBAR_GetNotifyParent (infoPtr
);
521 nmhdr
->idFrom
= GetDlgCtrlID (infoPtr
->hwndSelf
);
522 nmhdr
->hwndFrom
= infoPtr
->hwndSelf
;
525 TRACE("window %p, code=%08x, via %s\n", parent
, code
, (infoPtr
->bUnicode
)?"Unicode":"ANSI");
527 return SendMessageW(parent
, WM_NOTIFY
, nmhdr
->idFrom
, (LPARAM
)nmhdr
);
531 REBAR_Notify_NMREBAR (const REBAR_INFO
*infoPtr
, UINT uBand
, UINT code
)
533 NMREBAR notify_rebar
;
535 notify_rebar
.dwMask
= 0;
537 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, uBand
);
539 if (lpBand
->fMask
& RBBIM_ID
) {
540 notify_rebar
.dwMask
|= RBNM_ID
;
541 notify_rebar
.wID
= lpBand
->wID
;
543 if (lpBand
->fMask
& RBBIM_LPARAM
) {
544 notify_rebar
.dwMask
|= RBNM_LPARAM
;
545 notify_rebar
.lParam
= lpBand
->lParam
;
547 if (lpBand
->fMask
& RBBIM_STYLE
) {
548 notify_rebar
.dwMask
|= RBNM_STYLE
;
549 notify_rebar
.fStyle
= lpBand
->fStyle
;
552 notify_rebar
.uBand
= uBand
;
553 return REBAR_Notify ((NMHDR
*)¬ify_rebar
, infoPtr
, code
);
557 REBAR_DrawBand (HDC hdc
, const REBAR_INFO
*infoPtr
, REBAR_BAND
*lpBand
)
562 HTHEME theme
= GetWindowTheme (infoPtr
->hwndSelf
);
565 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
567 if (lpBand
->fDraw
& DRAW_TEXT
) {
568 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
569 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
572 /* should test for CDRF_NOTIFYITEMDRAW here */
573 nmcd
.dwDrawStage
= CDDS_ITEMPREPAINT
;
576 nmcd
.rc
.right
= lpBand
->rcCapText
.right
;
577 nmcd
.rc
.bottom
= lpBand
->rcCapText
.bottom
;
578 nmcd
.dwItemSpec
= lpBand
->wID
;
580 nmcd
.lItemlParam
= lpBand
->lParam
;
581 lpBand
->uCDret
= REBAR_Notify ((NMHDR
*)&nmcd
, infoPtr
, NM_CUSTOMDRAW
);
582 if (lpBand
->uCDret
== CDRF_SKIPDEFAULT
) {
583 if (oldBkMode
!= TRANSPARENT
)
584 SetBkMode (hdc
, oldBkMode
);
585 SelectObject (hdc
, hOldFont
);
590 if (lpBand
->fDraw
& DRAW_GRIPPER
)
594 RECT rcGripper
= lpBand
->rcGripper
;
595 int partId
= (infoPtr
->dwStyle
& CCS_VERT
) ? RP_GRIPPERVERT
: RP_GRIPPER
;
596 GetThemeBackgroundExtent (theme
, hdc
, partId
, 0, &rcGripper
, &rcGripper
);
597 OffsetRect (&rcGripper
, lpBand
->rcGripper
.left
- rcGripper
.left
,
598 lpBand
->rcGripper
.top
- rcGripper
.top
);
599 DrawThemeBackground (theme
, hdc
, partId
, 0, &rcGripper
, NULL
);
602 DrawEdge (hdc
, &lpBand
->rcGripper
, BDR_RAISEDINNER
, BF_RECT
| BF_MIDDLE
);
605 /* draw caption image */
606 if (lpBand
->fDraw
& DRAW_IMAGE
) {
610 pt
.y
= (lpBand
->rcCapImage
.bottom
+ lpBand
->rcCapImage
.top
- infoPtr
->imageSize
.cy
)/2;
611 pt
.x
= (lpBand
->rcCapImage
.right
+ lpBand
->rcCapImage
.left
- infoPtr
->imageSize
.cx
)/2;
613 ImageList_Draw (infoPtr
->himl
, lpBand
->iImage
, hdc
,
618 /* draw caption text */
619 if (lpBand
->fDraw
& DRAW_TEXT
) {
620 /* need to handle CDRF_NEWFONT here */
621 INT oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
622 COLORREF oldcolor
= CLR_NONE
;
624 if (lpBand
->clrFore
!= CLR_NONE
) {
625 new = (lpBand
->clrFore
== CLR_DEFAULT
) ? infoPtr
->clrBtnText
:
627 oldcolor
= SetTextColor (hdc
, new);
629 DrawTextW (hdc
, lpBand
->lpText
, -1, &lpBand
->rcCapText
,
630 DT_CENTER
| DT_VCENTER
| DT_SINGLELINE
);
631 if (oldBkMode
!= TRANSPARENT
)
632 SetBkMode (hdc
, oldBkMode
);
633 if (lpBand
->clrFore
!= CLR_NONE
)
634 SetTextColor (hdc
, oldcolor
);
635 SelectObject (hdc
, hOldFont
);
638 if (!IsRectEmpty(&lpBand
->rcChevron
))
643 if (lpBand
->fDraw
& DRAW_CHEVRONPUSHED
)
644 stateId
= CHEVS_PRESSED
;
645 else if (lpBand
->fDraw
& DRAW_CHEVRONHOT
)
648 stateId
= CHEVS_NORMAL
;
649 DrawThemeBackground (theme
, hdc
, RP_CHEVRON
, stateId
, &lpBand
->rcChevron
, NULL
);
653 if (lpBand
->fDraw
& DRAW_CHEVRONPUSHED
)
655 DrawEdge(hdc
, &lpBand
->rcChevron
, BDR_SUNKENOUTER
, BF_RECT
| BF_MIDDLE
);
656 REBAR_DrawChevron(hdc
, lpBand
->rcChevron
.left
+1, lpBand
->rcChevron
.top
+ 11, COLOR_WINDOWFRAME
);
658 else if (lpBand
->fDraw
& DRAW_CHEVRONHOT
)
660 DrawEdge(hdc
, &lpBand
->rcChevron
, BDR_RAISEDINNER
, BF_RECT
| BF_MIDDLE
);
661 REBAR_DrawChevron(hdc
, lpBand
->rcChevron
.left
, lpBand
->rcChevron
.top
+ 10, COLOR_WINDOWFRAME
);
664 REBAR_DrawChevron(hdc
, lpBand
->rcChevron
.left
, lpBand
->rcChevron
.top
+ 10, COLOR_WINDOWFRAME
);
668 if (lpBand
->uCDret
== (CDRF_NOTIFYPOSTPAINT
| CDRF_NOTIFYITEMDRAW
)) {
669 nmcd
.dwDrawStage
= CDDS_ITEMPOSTPAINT
;
672 nmcd
.rc
.right
= lpBand
->rcCapText
.right
;
673 nmcd
.rc
.bottom
= lpBand
->rcCapText
.bottom
;
674 nmcd
.dwItemSpec
= lpBand
->wID
;
676 nmcd
.lItemlParam
= lpBand
->lParam
;
677 lpBand
->uCDret
= REBAR_Notify ((NMHDR
*)&nmcd
, infoPtr
, NM_CUSTOMDRAW
);
683 REBAR_Refresh (const REBAR_INFO
*infoPtr
, HDC hdc
)
688 if (!infoPtr
->DoRedraw
) return;
690 for (i
= 0; i
< infoPtr
->uNumBands
; i
++) {
691 lpBand
= REBAR_GetBand(infoPtr
, i
);
693 if (HIDDENBAND(lpBand
)) continue;
695 /* now draw the band */
696 TRACE("[%p] drawing band %i, flags=%08x\n",
697 infoPtr
->hwndSelf
, i
, lpBand
->fDraw
);
698 REBAR_DrawBand (hdc
, infoPtr
, lpBand
);
704 REBAR_CalcHorzBand (const REBAR_INFO
*infoPtr
, UINT rstart
, UINT rend
)
705 /* Function: this routine initializes all the rectangles in */
706 /* each band in a row to fit in the adjusted rcBand rect. */
707 /* *** Supports only Horizontal bars. *** */
713 for(i
=rstart
; i
<rend
; i
++){
714 lpBand
= REBAR_GetBand(infoPtr
, i
);
715 if (HIDDENBAND(lpBand
)) {
716 SetRect (&lpBand
->rcChild
,
717 lpBand
->rcBand
.right
, lpBand
->rcBand
.top
,
718 lpBand
->rcBand
.right
, lpBand
->rcBand
.bottom
);
722 /* set initial gripper rectangle */
723 SetRect (&lpBand
->rcGripper
, lpBand
->rcBand
.left
, lpBand
->rcBand
.top
,
724 lpBand
->rcBand
.left
, lpBand
->rcBand
.bottom
);
726 /* calculate gripper rectangle */
727 if ( lpBand
->fStatus
& HAS_GRIPPER
) {
728 lpBand
->fDraw
|= DRAW_GRIPPER
;
729 lpBand
->rcGripper
.left
+= REBAR_PRE_GRIPPER
;
730 lpBand
->rcGripper
.right
= lpBand
->rcGripper
.left
+ GRIPPER_WIDTH
;
731 lpBand
->rcGripper
.top
+= 2;
732 lpBand
->rcGripper
.bottom
-= 2;
734 SetRect (&lpBand
->rcCapImage
,
735 lpBand
->rcGripper
.right
+REBAR_ALWAYS_SPACE
, lpBand
->rcBand
.top
,
736 lpBand
->rcGripper
.right
+REBAR_ALWAYS_SPACE
, lpBand
->rcBand
.bottom
);
738 else { /* no gripper will be drawn */
740 if (lpBand
->fStatus
& (HAS_IMAGE
| HAS_TEXT
))
741 /* if no gripper but either image or text, then leave space */
742 xoff
= REBAR_ALWAYS_SPACE
;
743 SetRect (&lpBand
->rcCapImage
,
744 lpBand
->rcBand
.left
+xoff
, lpBand
->rcBand
.top
,
745 lpBand
->rcBand
.left
+xoff
, lpBand
->rcBand
.bottom
);
748 /* image is visible */
749 if (lpBand
->fStatus
& HAS_IMAGE
) {
750 lpBand
->fDraw
|= DRAW_IMAGE
;
751 lpBand
->rcCapImage
.right
+= infoPtr
->imageSize
.cx
;
752 lpBand
->rcCapImage
.bottom
= lpBand
->rcCapImage
.top
+ infoPtr
->imageSize
.cy
;
754 /* set initial caption text rectangle */
755 SetRect (&lpBand
->rcCapText
,
756 lpBand
->rcCapImage
.right
+REBAR_POST_IMAGE
, lpBand
->rcBand
.top
+1,
757 lpBand
->rcBand
.left
+lpBand
->cxHeader
, lpBand
->rcBand
.bottom
-1);
760 /* set initial caption text rectangle */
761 SetRect (&lpBand
->rcCapText
, lpBand
->rcCapImage
.right
, lpBand
->rcBand
.top
+1,
762 lpBand
->rcBand
.left
+lpBand
->cxHeader
, lpBand
->rcBand
.bottom
-1);
765 /* text is visible */
766 if ((lpBand
->fStatus
& HAS_TEXT
) && !(lpBand
->fStyle
& RBBS_HIDETITLE
)) {
767 lpBand
->fDraw
|= DRAW_TEXT
;
768 lpBand
->rcCapText
.right
= max(lpBand
->rcCapText
.left
,
769 lpBand
->rcCapText
.right
-REBAR_POST_TEXT
);
772 /* set initial child window rectangle if there is a child */
773 if (lpBand
->hwndChild
) {
775 lpBand
->rcChild
.left
= lpBand
->rcBand
.left
+ lpBand
->cxHeader
;
776 lpBand
->rcChild
.right
= lpBand
->rcBand
.right
- REBAR_POST_CHILD
;
778 if (lpBand
->cyChild
> 0) {
780 UINT yoff
= (lpBand
->rcBand
.bottom
- lpBand
->rcBand
.top
- lpBand
->cyChild
) / 2;
782 /* center child if height is known */
783 lpBand
->rcChild
.top
= lpBand
->rcBand
.top
+ yoff
;
784 lpBand
->rcChild
.bottom
= lpBand
->rcBand
.top
+ yoff
+ lpBand
->cyChild
;
787 lpBand
->rcChild
.top
= lpBand
->rcBand
.top
;
788 lpBand
->rcChild
.bottom
= lpBand
->rcBand
.bottom
;
791 if ((lpBand
->fStyle
& RBBS_USECHEVRON
) && (lpBand
->rcChild
.right
- lpBand
->rcChild
.left
< lpBand
->cxIdeal
))
793 lpBand
->rcChild
.right
-= CHEVRON_WIDTH
;
794 SetRect(&lpBand
->rcChevron
, lpBand
->rcChild
.right
,
795 lpBand
->rcChild
.top
, lpBand
->rcChild
.right
+ CHEVRON_WIDTH
,
796 lpBand
->rcChild
.bottom
);
800 SetRect (&lpBand
->rcChild
,
801 lpBand
->rcBand
.left
+lpBand
->cxHeader
, lpBand
->rcBand
.top
,
802 lpBand
->rcBand
.right
, lpBand
->rcBand
.bottom
);
805 /* flag if notify required and invalidate rectangle */
806 if (lpBand
->fDraw
& NTF_INVALIDATE
) {
807 TRACE("invalidating (%d,%d)-(%d,%d)\n",
810 lpBand
->rcBand
.right
+ SEP_WIDTH
,
811 lpBand
->rcBand
.bottom
+ SEP_WIDTH
);
812 lpBand
->fDraw
&= ~NTF_INVALIDATE
;
813 work
= lpBand
->rcBand
;
814 work
.right
+= SEP_WIDTH
;
815 work
.bottom
+= SEP_WIDTH
;
816 InvalidateRect(infoPtr
->hwndSelf
, &work
, TRUE
);
817 if (lpBand
->hwndChild
) InvalidateRect(lpBand
->hwndChild
, NULL
, TRUE
);
826 REBAR_CalcVertBand (const REBAR_INFO
*infoPtr
, UINT rstart
, UINT rend
)
827 /* Function: this routine initializes all the rectangles in */
828 /* each band in a row to fit in the adjusted rcBand rect. */
829 /* *** Supports only Vertical bars. *** */
835 for(i
=rstart
; i
<rend
; i
++){
837 lpBand
= REBAR_GetBand(infoPtr
, i
);
838 if (HIDDENBAND(lpBand
)) continue;
840 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
842 /* set initial gripper rectangle */
843 SetRect (&lpBand
->rcGripper
, rcBand
.left
, rcBand
.top
, rcBand
.right
, rcBand
.top
);
845 /* calculate gripper rectangle */
846 if (lpBand
->fStatus
& HAS_GRIPPER
) {
847 lpBand
->fDraw
|= DRAW_GRIPPER
;
849 if (infoPtr
->dwStyle
& RBS_VERTICALGRIPPER
) {
850 /* vertical gripper */
851 lpBand
->rcGripper
.left
+= 3;
852 lpBand
->rcGripper
.right
= lpBand
->rcGripper
.left
+ GRIPPER_WIDTH
;
853 lpBand
->rcGripper
.top
+= REBAR_PRE_GRIPPER
;
854 lpBand
->rcGripper
.bottom
= lpBand
->rcGripper
.top
+ GRIPPER_HEIGHT
;
856 /* initialize Caption image rectangle */
857 SetRect (&lpBand
->rcCapImage
, rcBand
.left
,
858 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
,
860 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
);
863 /* horizontal gripper */
864 lpBand
->rcGripper
.left
+= 2;
865 lpBand
->rcGripper
.right
-= 2;
866 lpBand
->rcGripper
.top
+= REBAR_PRE_GRIPPER
;
867 lpBand
->rcGripper
.bottom
= lpBand
->rcGripper
.top
+ GRIPPER_WIDTH
;
869 /* initialize Caption image rectangle */
870 SetRect (&lpBand
->rcCapImage
, rcBand
.left
,
871 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
,
873 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
);
876 else { /* no gripper will be drawn */
878 if (lpBand
->fStatus
& (HAS_IMAGE
| HAS_TEXT
))
879 /* if no gripper but either image or text, then leave space */
880 xoff
= REBAR_ALWAYS_SPACE
;
881 /* initialize Caption image rectangle */
882 SetRect (&lpBand
->rcCapImage
,
883 rcBand
.left
, rcBand
.top
+xoff
,
884 rcBand
.right
, rcBand
.top
+xoff
);
887 /* image is visible */
888 if (lpBand
->fStatus
& HAS_IMAGE
) {
889 lpBand
->fDraw
|= DRAW_IMAGE
;
891 lpBand
->rcCapImage
.right
= lpBand
->rcCapImage
.left
+ infoPtr
->imageSize
.cx
;
892 lpBand
->rcCapImage
.bottom
+= infoPtr
->imageSize
.cy
;
894 /* set initial caption text rectangle */
895 SetRect (&lpBand
->rcCapText
,
896 rcBand
.left
, lpBand
->rcCapImage
.bottom
+REBAR_POST_IMAGE
,
897 rcBand
.right
, rcBand
.top
+lpBand
->cxHeader
);
900 /* set initial caption text rectangle */
901 SetRect (&lpBand
->rcCapText
,
902 rcBand
.left
, lpBand
->rcCapImage
.bottom
,
903 rcBand
.right
, rcBand
.top
+lpBand
->cxHeader
);
906 /* text is visible */
907 if ((lpBand
->fStatus
& HAS_TEXT
) && !(lpBand
->fStyle
& RBBS_HIDETITLE
)) {
908 lpBand
->fDraw
|= DRAW_TEXT
;
909 lpBand
->rcCapText
.bottom
= max(lpBand
->rcCapText
.top
,
910 lpBand
->rcCapText
.bottom
);
913 /* set initial child window rectangle if there is a child */
914 if (lpBand
->hwndChild
) {
915 int cxBand
= rcBand
.right
- rcBand
.left
;
916 xoff
= (cxBand
- lpBand
->cyChild
) / 2;
917 SetRect (&lpBand
->rcChild
,
918 rcBand
.left
+ xoff
, rcBand
.top
+ lpBand
->cxHeader
,
919 rcBand
.left
+ xoff
+ lpBand
->cyChild
, rcBand
.bottom
- REBAR_POST_CHILD
);
922 SetRect (&lpBand
->rcChild
,
923 rcBand
.left
, rcBand
.top
+lpBand
->cxHeader
,
924 rcBand
.right
, rcBand
.bottom
);
927 if (lpBand
->fDraw
& NTF_INVALIDATE
) {
928 TRACE("invalidating (%d,%d)-(%d,%d)\n",
931 rcBand
.right
+ SEP_WIDTH
,
932 rcBand
.bottom
+ SEP_WIDTH
);
933 lpBand
->fDraw
&= ~NTF_INVALIDATE
;
935 work
.bottom
+= SEP_WIDTH
;
936 work
.right
+= SEP_WIDTH
;
937 InvalidateRect(infoPtr
->hwndSelf
, &work
, TRUE
);
938 if (lpBand
->hwndChild
) InvalidateRect(lpBand
->hwndChild
, NULL
, TRUE
);
946 REBAR_ForceResize (REBAR_INFO
*infoPtr
)
947 /* Function: This changes the size of the REBAR window to that */
948 /* calculated by REBAR_Layout. */
950 INT x
, y
, width
, height
;
951 INT xedge
= 0, yedge
= 0;
954 TRACE("new size [%d x %d]\n", infoPtr
->calcSize
.cx
, infoPtr
->calcSize
.cy
);
956 if (infoPtr
->dwStyle
& CCS_NORESIZE
)
959 if (infoPtr
->dwStyle
& WS_BORDER
)
961 xedge
= GetSystemMetrics(SM_CXEDGE
);
962 yedge
= GetSystemMetrics(SM_CYEDGE
);
963 /* swap for CCS_VERT? */
966 /* compute rebar window rect in parent client coordinates */
967 GetWindowRect(infoPtr
->hwndSelf
, &rcSelf
);
968 MapWindowPoints(HWND_DESKTOP
, GetParent(infoPtr
->hwndSelf
), (LPPOINT
)&rcSelf
, 2);
969 translate_rect(infoPtr
, &rcSelf
, &rcSelf
);
971 height
= infoPtr
->calcSize
.cy
+ 2*yedge
;
972 if (!(infoPtr
->dwStyle
& CCS_NOPARENTALIGN
)) {
976 width
= infoPtr
->calcSize
.cx
+ 2*xedge
;
977 y
= 0; /* quiet compiler warning */
978 switch ( infoPtr
->dwStyle
& CCS_LAYOUT_MASK
) {
979 case 0: /* shouldn't happen - see NCCreate */
981 y
= ((infoPtr
->dwStyle
& CCS_NODIVIDER
) ? 0 : REBAR_DIVIDER
) - yedge
;
987 GetClientRect(GetParent(infoPtr
->hwndSelf
), &rcParent
);
988 translate_rect(infoPtr
, &rcParent
, &rcParent
);
989 y
= rcParent
.bottom
- infoPtr
->calcSize
.cy
- yedge
;
995 /* As on Windows if the CCS_NODIVIDER is not present the control will move
996 * 2 pixel down after every layout */
997 y
= rcSelf
.top
+ ((infoPtr
->dwStyle
& CCS_NODIVIDER
) ? 0 : REBAR_DIVIDER
);
998 width
= rcSelf
.right
- rcSelf
.left
;
1001 TRACE("hwnd %p, style=%08x, setting at (%d,%d) for (%d,%d)\n",
1002 infoPtr
->hwndSelf
, infoPtr
->dwStyle
, x
, y
, width
, height
);
1004 /* Set flag to ignore next WM_SIZE message and resize the window */
1005 infoPtr
->fStatus
|= SELF_RESIZE
;
1006 if ((infoPtr
->dwStyle
& CCS_VERT
) == 0)
1007 SetWindowPos(infoPtr
->hwndSelf
, 0, x
, y
, width
, height
, SWP_NOZORDER
);
1009 SetWindowPos(infoPtr
->hwndSelf
, 0, y
, x
, height
, width
, SWP_NOZORDER
);
1010 infoPtr
->fStatus
&= ~SELF_RESIZE
;
1015 REBAR_MoveChildWindows (const REBAR_INFO
*infoPtr
, UINT start
, UINT endplus
)
1017 static const WCHAR strComboBox
[] = { 'C','o','m','b','o','B','o','x',0 };
1019 WCHAR szClassName
[40];
1021 NMREBARCHILDSIZE rbcz
;
1024 if (!(deferpos
= BeginDeferWindowPos(infoPtr
->uNumBands
)))
1025 ERR("BeginDeferWindowPos returned NULL\n");
1027 for (i
= start
; i
< endplus
; i
++) {
1028 lpBand
= REBAR_GetBand(infoPtr
, i
);
1030 if (HIDDENBAND(lpBand
)) continue;
1031 if (lpBand
->hwndChild
) {
1032 TRACE("hwndChild = %p\n", lpBand
->hwndChild
);
1034 /* Always generate the RBN_CHILDSIZE even if child
1037 rbcz
.wID
= lpBand
->wID
;
1038 rbcz
.rcChild
= lpBand
->rcChild
;
1039 translate_rect(infoPtr
, &rbcz
.rcBand
, &lpBand
->rcBand
);
1040 if (infoPtr
->dwStyle
& CCS_VERT
)
1041 rbcz
.rcBand
.top
+= lpBand
->cxHeader
;
1043 rbcz
.rcBand
.left
+= lpBand
->cxHeader
;
1044 REBAR_Notify ((NMHDR
*)&rbcz
, infoPtr
, RBN_CHILDSIZE
);
1045 if (!EqualRect (&lpBand
->rcChild
, &rbcz
.rcChild
)) {
1046 TRACE("Child rect changed by NOTIFY for band %u\n", i
);
1047 TRACE(" from (%s) to (%s)\n",
1048 wine_dbgstr_rect(&lpBand
->rcChild
),
1049 wine_dbgstr_rect(&rbcz
.rcChild
));
1050 lpBand
->rcChild
= rbcz
.rcChild
; /* *** ??? */
1053 /* native (IE4 in "Favorites" frame **1) does:
1054 * SetRect (&rc, -1, -1, -1, -1)
1055 * EqualRect (&rc,band->rc???)
1057 * CopyRect (band->rc????, &rc)
1058 * set flag outside of loop
1061 GetClassNameW (lpBand
->hwndChild
, szClassName
, sizeof(szClassName
)/sizeof(szClassName
[0]));
1062 if (!lstrcmpW (szClassName
, strComboBox
) ||
1063 !lstrcmpW (szClassName
, WC_COMBOBOXEXW
)) {
1064 INT nEditHeight
, yPos
;
1067 /* special placement code for combo or comboex box */
1070 /* get size of edit line */
1071 GetWindowRect (lpBand
->hwndChild
, &rc
);
1072 nEditHeight
= rc
.bottom
- rc
.top
;
1073 yPos
= (lpBand
->rcChild
.bottom
+ lpBand
->rcChild
.top
- nEditHeight
)/2;
1075 /* center combo box inside child area */
1076 TRACE("moving child (Combo(Ex)) %p to (%d,%d) for (%d,%d)\n",
1078 lpBand
->rcChild
.left
, yPos
,
1079 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1081 deferpos
= DeferWindowPos (deferpos
, lpBand
->hwndChild
, HWND_TOP
,
1082 lpBand
->rcChild
.left
,
1083 /*lpBand->rcChild.top*/ yPos
,
1084 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1088 ERR("DeferWindowPos returned NULL\n");
1091 TRACE("moving child (Other) %p to (%d,%d) for (%d,%d)\n",
1093 lpBand
->rcChild
.left
, lpBand
->rcChild
.top
,
1094 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1095 lpBand
->rcChild
.bottom
- lpBand
->rcChild
.top
);
1096 deferpos
= DeferWindowPos (deferpos
, lpBand
->hwndChild
, HWND_TOP
,
1097 lpBand
->rcChild
.left
,
1098 lpBand
->rcChild
.top
,
1099 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1100 lpBand
->rcChild
.bottom
- lpBand
->rcChild
.top
,
1103 ERR("DeferWindowPos returned NULL\n");
1107 if (!EndDeferWindowPos(deferpos
))
1108 ERR("EndDeferWindowPos returned NULL\n");
1110 if (infoPtr
->DoRedraw
)
1111 UpdateWindow (infoPtr
->hwndSelf
);
1113 /* native (from **1 above) does:
1114 * UpdateWindow(rebar)
1116 * RBN_HEIGHTCHANGE if necessary
1117 * if ret from any EqualRect was 0
1118 * Goto "BeginDeferWindowPos"
1123 /* Returns the next visible band (the first visible band in [i+1; infoPtr->uNumBands) )
1124 * or infoPtr->uNumBands if none */
1125 static int next_visible(const REBAR_INFO
*infoPtr
, int i
)
1128 for (n
= i
+ 1; n
< infoPtr
->uNumBands
; n
++)
1129 if (!HIDDENBAND(REBAR_GetBand(infoPtr
, n
)))
1134 /* Returns the previous visible band (the last visible band in [0; i) )
1136 static int prev_visible(const REBAR_INFO
*infoPtr
, int i
)
1139 for (n
= i
- 1; n
>= 0; n
--)
1140 if (!HIDDENBAND(REBAR_GetBand(infoPtr
, n
)))
1145 /* Returns the first visible band or infoPtr->uNumBands if none */
1146 static int first_visible(const REBAR_INFO
*infoPtr
)
1148 return next_visible(infoPtr
, -1); /* this works*/
1151 /* Returns the first visible band for the given row (or iBand if none) */
1152 static int get_row_begin_for_band(const REBAR_INFO
*infoPtr
, INT iBand
)
1154 int iLastBand
= iBand
;
1155 int iRow
= REBAR_GetBand(infoPtr
, iBand
)->iRow
;
1156 while ((iBand
= prev_visible(infoPtr
, iBand
)) >= 0) {
1157 if (REBAR_GetBand(infoPtr
, iBand
)->iRow
!= iRow
)
1165 /* Returns the first visible band for the next row (or infoPtr->uNumBands if none) */
1166 static int get_row_end_for_band(const REBAR_INFO
*infoPtr
, INT iBand
)
1168 int iRow
= REBAR_GetBand(infoPtr
, iBand
)->iRow
;
1169 while ((iBand
= next_visible(infoPtr
, iBand
)) < infoPtr
->uNumBands
)
1170 if (REBAR_GetBand(infoPtr
, iBand
)->iRow
!= iRow
)
1175 /* Compute the rcBand.{left,right} from the cxEffective bands widths computed earlier.
1176 * iBeginBand must be visible */
1177 static void REBAR_SetRowRectsX(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
)
1180 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1182 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1183 if (lpBand
->rcBand
.left
!= xPos
|| lpBand
->rcBand
.right
!= xPos
+ lpBand
->cxEffective
) {
1184 lpBand
->fDraw
|= NTF_INVALIDATE
;
1185 TRACE("Setting rect %d to %d,%d\n", i
, xPos
, xPos
+ lpBand
->cxEffective
);
1186 lpBand
->rcBand
.left
= xPos
;
1187 lpBand
->rcBand
.right
= xPos
+ lpBand
->cxEffective
;
1189 xPos
+= lpBand
->cxEffective
+ SEP_WIDTH
;
1193 /* The rationale of this function is probably as follows: if we have some space
1194 * to distribute we want to add it to a band on the right. However we don't want
1195 * to unminimize a minimized band so we search for a band that is big enough.
1196 * For some reason "big enough" is defined as bigger than the minimum size of the
1197 * first band in the row
1199 static REBAR_BAND
*REBAR_FindBandToGrow(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
)
1201 INT cxMinFirstBand
= 0, i
;
1203 cxMinFirstBand
= REBAR_GetBand(infoPtr
, iBeginBand
)->cxMinBand
;
1205 for (i
= prev_visible(infoPtr
, iEndBand
); i
>= iBeginBand
; i
= prev_visible(infoPtr
, i
))
1206 if (REBAR_GetBand(infoPtr
, i
)->cxEffective
> cxMinFirstBand
&&
1207 !(REBAR_GetBand(infoPtr
, i
)->fStyle
& RBBS_FIXEDSIZE
))
1211 for (i
= prev_visible(infoPtr
, iEndBand
); i
>= iBeginBand
; i
= prev_visible(infoPtr
, i
))
1212 if (REBAR_GetBand(infoPtr
, i
)->cxMinBand
== cxMinFirstBand
)
1215 TRACE("Extra space for row [%d..%d) should be added to band %d\n", iBeginBand
, iEndBand
, i
);
1216 return REBAR_GetBand(infoPtr
, i
);
1219 /* Try to shrink the visible bands in [iBeginBand; iEndBand) by cxShrink, starting from the right */
1220 static int REBAR_ShrinkBandsRTL(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
, INT cxShrink
, BOOL bEnforce
)
1225 TRACE("Shrinking bands [%d..%d) by %d, right-to-left\n", iBeginBand
, iEndBand
, cxShrink
);
1226 for (i
= prev_visible(infoPtr
, iEndBand
); i
>= iBeginBand
; i
= prev_visible(infoPtr
, i
))
1228 lpBand
= REBAR_GetBand(infoPtr
, i
);
1230 width
= max(lpBand
->cxEffective
- cxShrink
, (int)lpBand
->cxMinBand
);
1231 cxShrink
-= lpBand
->cxEffective
- width
;
1232 lpBand
->cxEffective
= width
;
1233 if (bEnforce
&& lpBand
->cx
> lpBand
->cxEffective
)
1234 lpBand
->cx
= lpBand
->cxEffective
;
1242 /* Try to shrink the visible bands in [iBeginBand; iEndBand) by cxShrink, starting from the left.
1243 * iBeginBand must be visible */
1244 static int REBAR_ShrinkBandsLTR(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
, INT cxShrink
, BOOL bEnforce
)
1249 TRACE("Shrinking bands [%d..%d) by %d, left-to-right\n", iBeginBand
, iEndBand
, cxShrink
);
1250 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1252 lpBand
= REBAR_GetBand(infoPtr
, i
);
1254 width
= max(lpBand
->cxEffective
- cxShrink
, (int)lpBand
->cxMinBand
);
1255 cxShrink
-= lpBand
->cxEffective
- width
;
1256 lpBand
->cxEffective
= width
;
1258 lpBand
->cx
= lpBand
->cxEffective
;
1265 /* Tries to move a band to a given offset within a row. */
1266 static int REBAR_MoveBandToRowOffset(REBAR_INFO
*infoPtr
, INT iBand
, INT iFirstBand
,
1267 INT iLastBand
, INT xOff
, BOOL reorder
)
1269 REBAR_BAND
*insertBand
= REBAR_GetBand(infoPtr
, iBand
);
1271 const BOOL setBreak
= REBAR_GetBand(infoPtr
, iFirstBand
)->fStyle
& RBBS_BREAK
;
1273 /* Find the band's new position */
1276 /* Used during an LR band reorder drag */
1277 for (i
= iFirstBand
; i
< iLastBand
; i
= next_visible(infoPtr
, i
))
1281 xPos
+= REBAR_GetBand(infoPtr
, i
)->cxEffective
+ SEP_WIDTH
;
1286 /* Used during a UD band insertion drag */
1287 for (i
= iFirstBand
; i
< iLastBand
; i
= next_visible(infoPtr
, i
))
1289 const REBAR_BAND
*band
= REBAR_GetBand(infoPtr
, i
);
1290 if(xPos
+ band
->cxMinBand
/ 2 > xOff
)
1292 xPos
+= band
->cxEffective
+ SEP_WIDTH
;
1296 /* Move the band to its new position */
1297 DPA_DeletePtr(infoPtr
->bands
, iBand
);
1300 DPA_InsertPtr(infoPtr
->bands
, i
, insertBand
);
1302 /* Ensure only the last band has the RBBS_BREAK flag set */
1303 insertBand
->fStyle
&= ~RBBS_BREAK
;
1305 REBAR_GetBand(infoPtr
, iFirstBand
)->fStyle
|= RBBS_BREAK
;
1307 /* Return the currently grabbed band */
1308 if(infoPtr
->iGrabbedBand
== iBand
)
1310 infoPtr
->iGrabbedBand
= i
;
1316 /* Set the heights of the visible bands in [iBeginBand; iEndBand) to the max height. iBeginBand must be visible */
1317 static int REBAR_SetBandsHeight(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
, INT yStart
)
1322 int row
= REBAR_GetBand(infoPtr
, iBeginBand
)->iRow
;
1324 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1326 lpBand
= REBAR_GetBand(infoPtr
, i
);
1327 lpBand
->cyRowSoFar
= yMaxHeight
;
1328 yMaxHeight
= max(yMaxHeight
, lpBand
->cyMinBand
);
1330 TRACE("Bands [%d; %d) height: %d\n", iBeginBand
, iEndBand
, yMaxHeight
);
1332 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1334 lpBand
= REBAR_GetBand(infoPtr
, i
);
1335 /* we may be called for multiple rows if RBS_VARHEIGHT not set */
1336 if (lpBand
->iRow
!= row
) {
1337 yPos
+= yMaxHeight
+ SEP_WIDTH
;
1341 if (lpBand
->rcBand
.top
!= yPos
|| lpBand
->rcBand
.bottom
!= yPos
+ yMaxHeight
) {
1342 lpBand
->fDraw
|= NTF_INVALIDATE
;
1343 lpBand
->rcBand
.top
= yPos
;
1344 lpBand
->rcBand
.bottom
= yPos
+ yMaxHeight
;
1345 TRACE("Band %d: %s\n", i
, wine_dbgstr_rect(&lpBand
->rcBand
));
1348 return yPos
+ yMaxHeight
;
1351 /* Layout the row [iBeginBand; iEndBand). iBeginBand must be visible */
1352 static void REBAR_LayoutRow(const REBAR_INFO
*infoPtr
, int iBeginBand
, int iEndBand
, int cx
, int *piRow
, int *pyPos
)
1358 TRACE("Adjusting row [%d;%d). Width: %d\n", iBeginBand
, iEndBand
, cx
);
1359 for (i
= iBeginBand
; i
< iEndBand
; i
++)
1360 REBAR_GetBand(infoPtr
, i
)->iRow
= *piRow
;
1362 /* compute the extra space */
1363 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1365 lpBand
= REBAR_GetBand(infoPtr
, i
);
1368 lpBand
->cxEffective
= max(lpBand
->cxMinBand
, lpBand
->cx
);
1369 width
+= lpBand
->cxEffective
;
1373 TRACE("Extra space: %d\n", extra
);
1375 int ret
= REBAR_ShrinkBandsRTL(infoPtr
, iBeginBand
, iEndBand
, -extra
, FALSE
);
1376 if (ret
> 0 && next_visible(infoPtr
, iBeginBand
) != iEndBand
) /* one band may be longer than expected... */
1377 ERR("Error layouting row %d - couldn't shrink for %d pixels (%d total shrink)\n", *piRow
, ret
, -extra
);
1380 lpBand
= REBAR_FindBandToGrow(infoPtr
, iBeginBand
, iEndBand
);
1381 lpBand
->cxEffective
+= extra
;
1384 REBAR_SetRowRectsX(infoPtr
, iBeginBand
, iEndBand
);
1385 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1388 *pyPos
+= SEP_WIDTH
;
1389 *pyPos
= REBAR_SetBandsHeight(infoPtr
, iBeginBand
, iEndBand
, *pyPos
);
1395 REBAR_Layout(REBAR_INFO
*infoPtr
)
1405 if (infoPtr
->dwStyle
& (CCS_NORESIZE
| CCS_NOPARENTALIGN
) || GetParent(infoPtr
->hwndSelf
) == NULL
)
1406 GetClientRect(infoPtr
->hwndSelf
, &rcAdj
);
1408 GetClientRect(GetParent(infoPtr
->hwndSelf
), &rcAdj
);
1409 TRACE("adjustment rect is (%s)\n", wine_dbgstr_rect(&rcAdj
));
1411 adjcx
= get_rect_cx(infoPtr
, &rcAdj
);
1413 if (infoPtr
->uNumBands
== 0) {
1414 TRACE("No bands - setting size to (0,%d), vert: %lx\n", adjcx
, infoPtr
->dwStyle
& CCS_VERT
);
1415 infoPtr
->calcSize
.cx
= adjcx
;
1416 /* the calcSize.cy won't change for a 0 band rebar */
1417 infoPtr
->uNumRows
= 0;
1418 REBAR_ForceResize(infoPtr
);
1424 rowstart
= first_visible(infoPtr
);
1426 for (i
= rowstart
; i
< infoPtr
->uNumBands
; i
= next_visible(infoPtr
, i
))
1428 lpBand
= REBAR_GetBand(infoPtr
, i
);
1430 if (i
> rowstart
&& (lpBand
->fStyle
& RBBS_BREAK
|| xMin
+ lpBand
->cxMinBand
> adjcx
)) {
1431 TRACE("%s break on band %d\n", (lpBand
->fStyle
& RBBS_BREAK
? "Hard" : "Soft"), i
- 1);
1432 REBAR_LayoutRow(infoPtr
, rowstart
, i
, adjcx
, &row
, &yPos
);
1439 xMin
+= lpBand
->cxMinBand
;
1441 if (rowstart
< infoPtr
->uNumBands
)
1442 REBAR_LayoutRow(infoPtr
, rowstart
, infoPtr
->uNumBands
, adjcx
, &row
, &yPos
);
1444 if (!(infoPtr
->dwStyle
& RBS_VARHEIGHT
))
1445 yPos
= REBAR_SetBandsHeight(infoPtr
, first_visible(infoPtr
), infoPtr
->uNumBands
, 0);
1447 infoPtr
->uNumRows
= row
;
1449 if (infoPtr
->dwStyle
& CCS_VERT
)
1450 REBAR_CalcVertBand(infoPtr
, 0, infoPtr
->uNumBands
);
1452 REBAR_CalcHorzBand(infoPtr
, 0, infoPtr
->uNumBands
);
1453 /* now compute size of Rebar itself */
1454 oldSize
= infoPtr
->calcSize
;
1456 infoPtr
->calcSize
.cx
= adjcx
;
1457 infoPtr
->calcSize
.cy
= yPos
;
1458 TRACE("calcsize size=(%d, %d), origheight=(%d,%d)\n",
1459 infoPtr
->calcSize
.cx
, infoPtr
->calcSize
.cy
,
1460 oldSize
.cx
, oldSize
.cy
);
1462 REBAR_DumpBand (infoPtr
);
1463 REBAR_MoveChildWindows (infoPtr
, 0, infoPtr
->uNumBands
);
1464 REBAR_ForceResize (infoPtr
);
1466 /* note: after a RBN_HEIGHTCHANGE native sends once again all the RBN_CHILDSIZE
1467 * and does another ForceResize */
1468 if (oldSize
.cy
!= infoPtr
->calcSize
.cy
)
1471 REBAR_Notify(&heightchange
, infoPtr
, RBN_HEIGHTCHANGE
);
1472 REBAR_AutoSize(infoPtr
, FALSE
);
1476 /* iBeginBand must be visible */
1478 REBAR_SizeChildrenToHeight(const REBAR_INFO
*infoPtr
, int iBeginBand
, int iEndBand
, int extra
, BOOL
*fChanged
)
1484 TRACE("[%d;%d) by %d\n", iBeginBand
, iEndBand
, extra
);
1486 cyBandsOld
= REBAR_GetBand(infoPtr
, iBeginBand
)->rcBand
.bottom
-
1487 REBAR_GetBand(infoPtr
, iBeginBand
)->rcBand
.top
;
1488 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1490 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1491 int cyMaxChild
= cyBandsOld
- REBARSPACE(lpBand
) + extra
;
1492 int cyChild
= round_child_height(lpBand
, cyMaxChild
);
1494 if (lpBand
->hwndChild
&& cyChild
!= lpBand
->cyChild
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
))
1496 TRACE("Resizing %d: %d -> %d [%d]\n", i
, lpBand
->cyChild
, cyChild
, lpBand
->cyMaxChild
);
1498 lpBand
->cyChild
= cyChild
;
1499 lpBand
->fDraw
|= NTF_INVALIDATE
;
1500 update_min_band_height(infoPtr
, lpBand
);
1502 cyBandsNew
= max(cyBandsNew
, lpBand
->cyMinBand
);
1504 return cyBandsNew
- cyBandsOld
;
1507 /* worker function for RB_SIZETORECT and RBS_AUTOSIZE */
1509 REBAR_SizeToHeight(REBAR_INFO
*infoPtr
, int height
)
1511 int extra
= height
- infoPtr
->calcSize
.cy
; /* may be negative */
1512 BOOL fChanged
= FALSE
;
1513 UINT uNumRows
= infoPtr
->uNumRows
;
1516 if (uNumRows
== 0) /* avoid division by 0 */
1519 /* That's not exactly what Windows does but should be similar */
1521 /* Pass one: break-up/glue rows */
1524 for (i
= prev_visible(infoPtr
, infoPtr
->uNumBands
); i
> 0; i
= prev_visible(infoPtr
, i
))
1526 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1527 int cyBreakExtra
; /* additional cy for the rebar after a RBBS_BREAK on this band */
1529 height
= lpBand
->rcBand
.bottom
- lpBand
->rcBand
.top
;
1531 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1532 cyBreakExtra
= lpBand
->cyRowSoFar
; /* 'height' => 'lpBand->cyRowSoFar' + 'height'*/
1534 cyBreakExtra
= height
; /* 'height' => 'height' + 'height'*/
1535 cyBreakExtra
+= SEP_WIDTH
;
1537 if (extra
<= cyBreakExtra
/ 2)
1540 if (!(lpBand
->fStyle
& RBBS_BREAK
))
1542 TRACE("Adding break on band %d - extra %d -> %d\n", i
, extra
, extra
- cyBreakExtra
);
1543 lpBand
->fStyle
|= RBBS_BREAK
;
1544 lpBand
->fDraw
|= NTF_INVALIDATE
;
1546 extra
-= cyBreakExtra
;
1548 /* temporary change for _SizeControlsToHeight. The true values will be computed in _Layout */
1549 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1550 lpBand
->rcBand
.bottom
= lpBand
->rcBand
.top
+ lpBand
->cyMinBand
;
1554 /* TODO: else if (extra < 0) { try to remove some RBBS_BREAKs } */
1556 /* Pass two: increase/decrease control height */
1557 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1559 int i
= first_visible(infoPtr
);
1561 while (i
< infoPtr
->uNumBands
)
1563 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1564 int extraForRow
= extra
/ (int)(uNumRows
- iRow
);
1567 /* we can't use get_row_end_for_band as we might have added RBBS_BREAK in the first phase */
1568 for (rowEnd
= next_visible(infoPtr
, i
); rowEnd
< infoPtr
->uNumBands
; rowEnd
= next_visible(infoPtr
, rowEnd
))
1569 if (REBAR_GetBand(infoPtr
, rowEnd
)->iRow
!= lpBand
->iRow
||
1570 REBAR_GetBand(infoPtr
, rowEnd
)->fStyle
& RBBS_BREAK
)
1573 extra
-= REBAR_SizeChildrenToHeight(infoPtr
, i
, rowEnd
, extraForRow
, &fChanged
);
1574 TRACE("extra = %d\n", extra
);
1580 extra
-= REBAR_SizeChildrenToHeight(infoPtr
, first_visible(infoPtr
), infoPtr
->uNumBands
, extra
/ infoPtr
->uNumRows
, &fChanged
);
1583 REBAR_Layout(infoPtr
);
1587 REBAR_AutoSize(REBAR_INFO
*infoPtr
, BOOL needsLayout
)
1590 NMRBAUTOSIZE autosize
;
1593 REBAR_Layout(infoPtr
);
1594 GetClientRect(infoPtr
->hwndSelf
, &rc
);
1595 REBAR_SizeToHeight(infoPtr
, get_rect_cy(infoPtr
, &rc
));
1596 GetClientRect(infoPtr
->hwndSelf
, &rcNew
);
1598 GetClientRect(infoPtr
->hwndSelf
, &autosize
.rcTarget
);
1599 autosize
.fChanged
= (memcmp(&rc
, &rcNew
, sizeof(RECT
)) == 0);
1600 autosize
.rcTarget
= rc
;
1601 autosize
.rcActual
= rcNew
;
1602 REBAR_Notify((NMHDR
*)&autosize
, infoPtr
, RBN_AUTOSIZE
);
1606 REBAR_ValidateBand (const REBAR_INFO
*infoPtr
, REBAR_BAND
*lpBand
)
1607 /* Function: This routine evaluates the band specs supplied */
1608 /* by the user and updates the following 5 fields in */
1609 /* the internal band structure: cxHeader, cyHeader, cxMinBand, cyMinBand, fStatus */
1612 UINT textheight
=0, imageheight
= 0;
1616 lpBand
->fStatus
= 0;
1617 lpBand
->cxMinBand
= 0;
1618 lpBand
->cyMinBand
= 0;
1620 /* Data coming in from users into the cx... and cy... fields */
1621 /* may be bad, just garbage, because the user never clears */
1622 /* the fields. RB_{SET|INSERT}BAND{A|W} just passes the data */
1623 /* along if the fields exist in the input area. Here we must */
1624 /* determine if the data is valid. I have no idea how MS does */
1625 /* the validation, but it does because the RB_GETBANDINFO */
1626 /* returns a 0 when I know the sample program passed in an */
1627 /* address. Here I will use the algorithm that if the value */
1628 /* is greater than 65535 then it is bad and replace it with */
1629 /* a zero. Feel free to improve the algorithm. - GA 12/2000 */
1630 if (lpBand
->cxMinChild
> 65535) lpBand
->cxMinChild
= 0;
1631 if (lpBand
->cyMinChild
> 65535) lpBand
->cyMinChild
= 0;
1632 if (lpBand
->cx
> 65535) lpBand
->cx
= 0;
1633 if (lpBand
->cyChild
> 65535) lpBand
->cyChild
= 0;
1634 if (lpBand
->cyIntegral
> 65535) lpBand
->cyIntegral
= 0;
1635 if (lpBand
->cxIdeal
> 65535) lpBand
->cxIdeal
= 0;
1636 if (lpBand
->cxHeader
> 65535) lpBand
->cxHeader
= 0;
1638 /* TODO : we could try return to the caller if a value changed so that */
1639 /* a REBAR_Layout is needed. Till now the caller should call it */
1640 /* it always (we should also check what native does) */
1642 /* Header is where the image, text and gripper exist */
1643 /* in the band and precede the child window. */
1645 /* count number of non-FIXEDSIZE and non-Hidden bands */
1647 for (i
=0; i
<infoPtr
->uNumBands
; i
++){
1648 tBand
= REBAR_GetBand(infoPtr
, i
);
1649 if (!HIDDENBAND(tBand
) && !(tBand
->fStyle
& RBBS_FIXEDSIZE
))
1653 /* calculate gripper rectangle */
1654 if ( (!(lpBand
->fStyle
& RBBS_NOGRIPPER
)) &&
1655 ( (lpBand
->fStyle
& RBBS_GRIPPERALWAYS
) ||
1656 ( !(lpBand
->fStyle
& RBBS_FIXEDSIZE
) && (nonfixed
> 1)))
1658 lpBand
->fStatus
|= HAS_GRIPPER
;
1659 if (infoPtr
->dwStyle
& CCS_VERT
)
1660 if (infoPtr
->dwStyle
& RBS_VERTICALGRIPPER
)
1661 header
+= (GRIPPER_HEIGHT
+ REBAR_PRE_GRIPPER
);
1663 header
+= (GRIPPER_WIDTH
+ REBAR_PRE_GRIPPER
);
1665 header
+= (REBAR_PRE_GRIPPER
+ GRIPPER_WIDTH
);
1666 /* Always have 4 pixels before anything else */
1667 header
+= REBAR_ALWAYS_SPACE
;
1670 /* image is visible */
1671 if (lpBand
->iImage
!= -1 && (infoPtr
->himl
)) {
1672 lpBand
->fStatus
|= HAS_IMAGE
;
1673 if (infoPtr
->dwStyle
& CCS_VERT
) {
1674 header
+= (infoPtr
->imageSize
.cy
+ REBAR_POST_IMAGE
);
1675 imageheight
= infoPtr
->imageSize
.cx
+ 4;
1678 header
+= (infoPtr
->imageSize
.cx
+ REBAR_POST_IMAGE
);
1679 imageheight
= infoPtr
->imageSize
.cy
+ 4;
1683 /* text is visible */
1684 if ((lpBand
->fMask
& RBBIM_TEXT
) && (lpBand
->lpText
) &&
1685 !(lpBand
->fStyle
& RBBS_HIDETITLE
)) {
1686 HDC hdc
= GetDC (0);
1687 HFONT hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
1690 lpBand
->fStatus
|= HAS_TEXT
;
1691 GetTextExtentPoint32W (hdc
, lpBand
->lpText
,
1692 lstrlenW (lpBand
->lpText
), &size
);
1693 header
+= ((infoPtr
->dwStyle
& CCS_VERT
) ? (size
.cy
+ REBAR_POST_TEXT
) : (size
.cx
+ REBAR_POST_TEXT
));
1694 textheight
= (infoPtr
->dwStyle
& CCS_VERT
) ? 0 : size
.cy
;
1696 SelectObject (hdc
, hOldFont
);
1700 /* if no gripper but either image or text, then leave space */
1701 if ((lpBand
->fStatus
& (HAS_IMAGE
| HAS_TEXT
)) &&
1702 !(lpBand
->fStatus
& HAS_GRIPPER
)) {
1703 header
+= REBAR_ALWAYS_SPACE
;
1706 /* check if user overrode the header value */
1707 if (!(lpBand
->fStyle
& RBBS_UNDOC_FIXEDHEADER
))
1708 lpBand
->cxHeader
= header
;
1709 lpBand
->cyHeader
= max(textheight
, imageheight
);
1711 /* Now compute minimum size of child window */
1712 update_min_band_height(infoPtr
, lpBand
); /* update lpBand->cyMinBand from cyHeader and cyChild*/
1714 lpBand
->cxMinBand
= lpBand
->cxMinChild
+ lpBand
->cxHeader
+ REBAR_POST_CHILD
;
1715 if (lpBand
->fStyle
& RBBS_USECHEVRON
&& lpBand
->cxMinChild
< lpBand
->cxIdeal
)
1716 lpBand
->cxMinBand
+= CHEVRON_WIDTH
;
1720 REBAR_CommonSetupBand(HWND hwnd
, const REBARBANDINFOW
*lprbbi
, REBAR_BAND
*lpBand
)
1721 /* Function: This routine copies the supplied values from */
1722 /* user input (lprbbi) to the internal band structure. */
1723 /* It returns the mask of what changed. */
1725 UINT uChanged
= 0x0;
1727 lpBand
->fMask
|= lprbbi
->fMask
;
1729 if( (lprbbi
->fMask
& RBBIM_STYLE
) &&
1730 (lpBand
->fStyle
!= lprbbi
->fStyle
) )
1732 lpBand
->fStyle
= lprbbi
->fStyle
;
1733 uChanged
|= RBBIM_STYLE
;
1736 if( (lprbbi
->fMask
& RBBIM_COLORS
) &&
1737 ( ( lpBand
->clrFore
!= lprbbi
->clrFore
) ||
1738 ( lpBand
->clrBack
!= lprbbi
->clrBack
) ) )
1740 lpBand
->clrFore
= lprbbi
->clrFore
;
1741 lpBand
->clrBack
= lprbbi
->clrBack
;
1742 uChanged
|= RBBIM_COLORS
;
1745 if( (lprbbi
->fMask
& RBBIM_IMAGE
) &&
1746 ( lpBand
->iImage
!= lprbbi
->iImage
) )
1748 lpBand
->iImage
= lprbbi
->iImage
;
1749 uChanged
|= RBBIM_IMAGE
;
1752 if( (lprbbi
->fMask
& RBBIM_CHILD
) &&
1753 (lprbbi
->hwndChild
!= lpBand
->hwndChild
) )
1755 if (lprbbi
->hwndChild
) {
1756 lpBand
->hwndChild
= lprbbi
->hwndChild
;
1757 lpBand
->hwndPrevParent
=
1758 SetParent (lpBand
->hwndChild
, hwnd
);
1759 /* below in trace from WinRAR */
1760 ShowWindow(lpBand
->hwndChild
, SW_SHOWNOACTIVATE
| SW_SHOWNORMAL
);
1761 /* above in trace from WinRAR */
1764 TRACE("child: %p prev parent: %p\n",
1765 lpBand
->hwndChild
, lpBand
->hwndPrevParent
);
1766 lpBand
->hwndChild
= 0;
1767 lpBand
->hwndPrevParent
= 0;
1769 uChanged
|= RBBIM_CHILD
;
1772 if( (lprbbi
->fMask
& RBBIM_CHILDSIZE
) &&
1773 ( (lpBand
->cxMinChild
!= lprbbi
->cxMinChild
) ||
1774 (lpBand
->cyMinChild
!= lprbbi
->cyMinChild
) ||
1775 ( (lprbbi
->cbSize
>= REBARBANDINFOA_V6_SIZE
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) &&
1776 ( (lpBand
->cyChild
!= lprbbi
->cyChild
) ||
1777 (lpBand
->cyMaxChild
!= lprbbi
->cyMaxChild
) ||
1778 (lpBand
->cyIntegral
!= lprbbi
->cyIntegral
) ) ) ||
1779 ( (lprbbi
->cbSize
< REBARBANDINFOA_V6_SIZE
) &&
1780 ( (lpBand
->cyChild
||
1781 lpBand
->cyMaxChild
||
1782 lpBand
->cyIntegral
) ) ) ) )
1784 lpBand
->cxMinChild
= lprbbi
->cxMinChild
;
1785 lpBand
->cyMinChild
= lprbbi
->cyMinChild
;
1786 /* These fields where added in WIN32_IE == 0x400 and are set only for RBBS_VARIABLEHEIGHT bands */
1787 if (lprbbi
->cbSize
>= REBARBANDINFOA_V6_SIZE
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) {
1788 lpBand
->cyMaxChild
= lprbbi
->cyMaxChild
;
1789 lpBand
->cyIntegral
= lprbbi
->cyIntegral
;
1791 lpBand
->cyChild
= round_child_height(lpBand
, lprbbi
->cyChild
); /* make (cyChild - cyMinChild) a multiple of cyIntergral */
1794 lpBand
->cyChild
= lpBand
->cyMinChild
;
1795 lpBand
->cyMaxChild
= 0x7fffffff;
1796 lpBand
->cyIntegral
= 0;
1798 uChanged
|= RBBIM_CHILDSIZE
;
1801 if( (lprbbi
->fMask
& RBBIM_SIZE
) &&
1802 (lpBand
->cx
!= lprbbi
->cx
) )
1804 lpBand
->cx
= lprbbi
->cx
;
1805 uChanged
|= RBBIM_SIZE
;
1808 if( (lprbbi
->fMask
& RBBIM_BACKGROUND
) &&
1809 ( lpBand
->hbmBack
!= lprbbi
->hbmBack
) )
1811 lpBand
->hbmBack
= lprbbi
->hbmBack
;
1812 uChanged
|= RBBIM_BACKGROUND
;
1815 if( (lprbbi
->fMask
& RBBIM_ID
) &&
1816 (lpBand
->wID
!= lprbbi
->wID
) )
1818 lpBand
->wID
= lprbbi
->wID
;
1819 uChanged
|= RBBIM_ID
;
1822 /* check for additional data */
1823 if (lprbbi
->cbSize
>= REBARBANDINFOA_V6_SIZE
) {
1824 if( (lprbbi
->fMask
& RBBIM_IDEALSIZE
) &&
1825 ( lpBand
->cxIdeal
!= lprbbi
->cxIdeal
) )
1827 lpBand
->cxIdeal
= lprbbi
->cxIdeal
;
1828 uChanged
|= RBBIM_IDEALSIZE
;
1831 if( (lprbbi
->fMask
& RBBIM_LPARAM
) &&
1832 (lpBand
->lParam
!= lprbbi
->lParam
) )
1834 lpBand
->lParam
= lprbbi
->lParam
;
1835 uChanged
|= RBBIM_LPARAM
;
1838 if( (lprbbi
->fMask
& RBBIM_HEADERSIZE
) &&
1839 (lpBand
->cxHeader
!= lprbbi
->cxHeader
) )
1841 lpBand
->cxHeader
= lprbbi
->cxHeader
;
1842 lpBand
->fStyle
|= RBBS_UNDOC_FIXEDHEADER
;
1843 uChanged
|= RBBIM_HEADERSIZE
;
1850 static LRESULT
REBAR_EraseBkGnd (const REBAR_INFO
*infoPtr
, HDC hdc
)
1851 /* Function: This erases the background rectangle by drawing */
1852 /* each band with its background color (or the default) and */
1853 /* draws each bands right separator if necessary. The row */
1854 /* separators are drawn on the first band of the next row. */
1860 COLORREF old
= CLR_NONE
, new;
1861 HTHEME theme
= GetWindowTheme (infoPtr
->hwndSelf
);
1863 GetClientRect (infoPtr
->hwndSelf
, &cr
);
1866 for(i
=0; i
<infoPtr
->uNumBands
; i
++) {
1868 lpBand
= REBAR_GetBand(infoPtr
, i
);
1869 if (HIDDENBAND(lpBand
)) continue;
1870 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
1872 /* draw band separator between rows */
1873 if (lpBand
->iRow
!= oldrow
) {
1874 oldrow
= lpBand
->iRow
;
1875 if (infoPtr
->dwStyle
& RBS_BANDBORDERS
) {
1878 if (infoPtr
->dwStyle
& CCS_VERT
) {
1879 rcRowSep
.right
+= SEP_WIDTH_SIZE
;
1880 rcRowSep
.bottom
= infoPtr
->calcSize
.cx
;
1882 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcRowSep
, EDGE_ETCHED
, BF_RIGHT
, NULL
);
1884 DrawEdge (hdc
, &rcRowSep
, EDGE_ETCHED
, BF_RIGHT
);
1887 rcRowSep
.bottom
+= SEP_WIDTH_SIZE
;
1888 rcRowSep
.right
= infoPtr
->calcSize
.cx
;
1890 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcRowSep
, EDGE_ETCHED
, BF_BOTTOM
, NULL
);
1892 DrawEdge (hdc
, &rcRowSep
, EDGE_ETCHED
, BF_BOTTOM
);
1894 TRACE ("drawing band separator bottom (%s)\n",
1895 wine_dbgstr_rect(&rcRowSep
));
1899 /* draw band separator between bands in a row */
1900 if (infoPtr
->dwStyle
& RBS_BANDBORDERS
&& lpBand
->rcBand
.left
> 0) {
1903 if (infoPtr
->dwStyle
& CCS_VERT
) {
1904 rcSep
.bottom
= rcSep
.top
;
1905 rcSep
.top
-= SEP_WIDTH_SIZE
;
1907 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcSep
, EDGE_ETCHED
, BF_BOTTOM
, NULL
);
1909 DrawEdge (hdc
, &rcSep
, EDGE_ETCHED
, BF_BOTTOM
);
1912 rcSep
.right
= rcSep
.left
;
1913 rcSep
.left
-= SEP_WIDTH_SIZE
;
1915 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcSep
, EDGE_ETCHED
, BF_RIGHT
, NULL
);
1917 DrawEdge (hdc
, &rcSep
, EDGE_ETCHED
, BF_RIGHT
);
1919 TRACE("drawing band separator right (%s)\n",
1920 wine_dbgstr_rect(&rcSep
));
1923 /* draw the actual background */
1924 if (lpBand
->clrBack
!= CLR_NONE
) {
1925 new = (lpBand
->clrBack
== CLR_DEFAULT
) ? infoPtr
->clrBtnFace
:
1928 /* testing only - make background green to see it */
1933 /* In the absence of documentation for Rebar vs. CLR_NONE,
1934 * we will use the default BtnFace color. Note documentation
1935 * exists for Listview and Imagelist.
1937 new = infoPtr
->clrBtnFace
;
1939 /* testing only - make background green to see it */
1946 /* When themed, the background color is ignored (but not a
1947 * background bitmap */
1948 DrawThemeBackground (theme
, hdc
, 0, 0, &cr
, &rcBand
);
1952 old
= SetBkColor (hdc
, new);
1953 TRACE("%s background color=0x%06x, band %s\n",
1954 (lpBand
->clrBack
== CLR_NONE
) ? "none" :
1955 ((lpBand
->clrBack
== CLR_DEFAULT
) ? "dft" : ""),
1956 GetBkColor(hdc
), wine_dbgstr_rect(&rcBand
));
1957 ExtTextOutW (hdc
, 0, 0, ETO_OPAQUE
, &rcBand
, NULL
, 0, 0);
1958 if (lpBand
->clrBack
!= CLR_NONE
)
1959 SetBkColor (hdc
, old
);
1966 REBAR_InternalHitTest (const REBAR_INFO
*infoPtr
, const POINT
*lpPt
, UINT
*pFlags
, INT
*pBand
)
1972 GetClientRect (infoPtr
->hwndSelf
, &rect
);
1974 *pFlags
= RBHT_NOWHERE
;
1975 if (PtInRect (&rect
, *lpPt
))
1977 if (infoPtr
->uNumBands
== 0) {
1978 *pFlags
= RBHT_NOWHERE
;
1985 /* somewhere inside */
1986 for (iCount
= 0; iCount
< infoPtr
->uNumBands
; iCount
++) {
1988 lpBand
= REBAR_GetBand(infoPtr
, iCount
);
1989 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
1990 if (HIDDENBAND(lpBand
)) continue;
1991 if (PtInRect (&rcBand
, *lpPt
)) {
1994 if (PtInRect (&lpBand
->rcGripper
, *lpPt
)) {
1995 *pFlags
= RBHT_GRABBER
;
1996 TRACE("ON GRABBER %d\n", iCount
);
1999 else if (PtInRect (&lpBand
->rcCapImage
, *lpPt
)) {
2000 *pFlags
= RBHT_CAPTION
;
2001 TRACE("ON CAPTION %d\n", iCount
);
2004 else if (PtInRect (&lpBand
->rcCapText
, *lpPt
)) {
2005 *pFlags
= RBHT_CAPTION
;
2006 TRACE("ON CAPTION %d\n", iCount
);
2009 else if (PtInRect (&lpBand
->rcChild
, *lpPt
)) {
2010 *pFlags
= RBHT_CLIENT
;
2011 TRACE("ON CLIENT %d\n", iCount
);
2014 else if (PtInRect (&lpBand
->rcChevron
, *lpPt
)) {
2015 *pFlags
= RBHT_CHEVRON
;
2016 TRACE("ON CHEVRON %d\n", iCount
);
2020 *pFlags
= RBHT_NOWHERE
;
2021 TRACE("NOWHERE %d\n", iCount
);
2027 *pFlags
= RBHT_NOWHERE
;
2036 *pFlags
= RBHT_NOWHERE
;
2045 REBAR_HandleLRDrag (REBAR_INFO
*infoPtr
, const POINT
*ptsmove
)
2046 /* Function: This will implement the functionality of a */
2047 /* Gripper drag within a row. It will not implement "out- */
2048 /* of-row" drags. (They are detected and handled in */
2049 /* REBAR_MouseMove.) */
2051 REBAR_BAND
*hitBand
;
2052 INT iHitBand
, iRowBegin
, iRowEnd
;
2053 INT movement
, xBand
, cxLeft
= 0;
2054 BOOL shrunkBands
= FALSE
;
2056 iHitBand
= infoPtr
->iGrabbedBand
;
2057 iRowBegin
= get_row_begin_for_band(infoPtr
, iHitBand
);
2058 iRowEnd
= get_row_end_for_band(infoPtr
, iHitBand
);
2059 hitBand
= REBAR_GetBand(infoPtr
, iHitBand
);
2061 xBand
= hitBand
->rcBand
.left
;
2062 movement
= (infoPtr
->dwStyle
&CCS_VERT
? ptsmove
->y
: ptsmove
->x
)
2063 - (xBand
+ REBAR_PRE_GRIPPER
- infoPtr
->ihitoffset
);
2065 /* Dragging the first band in a row cannot cause shrinking */
2066 if(iHitBand
!= iRowBegin
)
2069 cxLeft
= REBAR_ShrinkBandsRTL(infoPtr
, iRowBegin
, iHitBand
, -movement
, TRUE
);
2071 if(cxLeft
< -movement
)
2073 hitBand
->cxEffective
+= -movement
- cxLeft
;
2074 hitBand
->cx
= hitBand
->cxEffective
;
2078 } else if (movement
> 0) {
2081 if (prev_visible(infoPtr
, iHitBand
) >= 0)
2082 cxLeft
= REBAR_ShrinkBandsLTR(infoPtr
, iHitBand
, iRowEnd
, movement
, TRUE
);
2084 if(cxLeft
< movement
)
2086 REBAR_BAND
*lpPrev
= REBAR_GetBand(infoPtr
, prev_visible(infoPtr
, iHitBand
));
2087 lpPrev
->cxEffective
+= movement
- cxLeft
;
2088 lpPrev
->cx
= hitBand
->cxEffective
;
2097 /* It was not possible to move the band by shrinking bands.
2098 * Try relocating the band instead. */
2099 REBAR_MoveBandToRowOffset(infoPtr
, iHitBand
, iRowBegin
,
2100 iRowEnd
, xBand
+ movement
, TRUE
);
2103 REBAR_SetRowRectsX(infoPtr
, iRowBegin
, iRowEnd
);
2104 if (infoPtr
->dwStyle
& CCS_VERT
)
2105 REBAR_CalcVertBand(infoPtr
, 0, infoPtr
->uNumBands
);
2107 REBAR_CalcHorzBand(infoPtr
, 0, infoPtr
->uNumBands
);
2108 REBAR_MoveChildWindows(infoPtr
, iRowBegin
, iRowEnd
);
2112 REBAR_HandleUDDrag (REBAR_INFO
*infoPtr
, const POINT
*ptsmove
)
2114 INT yOff
= (infoPtr
->dwStyle
& CCS_VERT
) ? ptsmove
->x
: ptsmove
->y
;
2115 INT iHitBand
, iRowBegin
, iNextRowBegin
;
2116 REBAR_BAND
*hitBand
, *rowBeginBand
;
2118 if(infoPtr
->uNumBands
<= 0)
2119 ERR("There are no bands in this rebar\n");
2121 /* Up/down dragging can only occur when there is more than one
2122 * band in the rebar */
2123 if(infoPtr
->uNumBands
<= 1)
2126 iHitBand
= infoPtr
->iGrabbedBand
;
2127 hitBand
= REBAR_GetBand(infoPtr
, iHitBand
);
2129 /* If we're taking a band that has the RBBS_BREAK style set, this
2130 * style needs to be reapplied to the band that is going to become
2131 * the new start of the row. */
2132 if((hitBand
->fStyle
& RBBS_BREAK
) &&
2133 (iHitBand
< infoPtr
->uNumBands
- 1))
2134 REBAR_GetBand(infoPtr
, iHitBand
+ 1)->fStyle
|= RBBS_BREAK
;
2138 /* Place the band above the current top row */
2139 DPA_DeletePtr(infoPtr
->bands
, iHitBand
);
2140 hitBand
->fStyle
&= RBBS_BREAK
;
2141 REBAR_GetBand(infoPtr
, 0)->fStyle
|= RBBS_BREAK
;
2142 infoPtr
->iGrabbedBand
= DPA_InsertPtr(
2143 infoPtr
->bands
, 0, hitBand
);
2145 else if(yOff
> REBAR_GetBand(infoPtr
, infoPtr
->uNumBands
- 1)->rcBand
.bottom
)
2147 /* Place the band below the current bottom row */
2148 DPA_DeletePtr(infoPtr
->bands
, iHitBand
);
2149 hitBand
->fStyle
|= RBBS_BREAK
;
2150 infoPtr
->iGrabbedBand
= DPA_InsertPtr(
2151 infoPtr
->bands
, infoPtr
->uNumBands
- 1, hitBand
);
2155 /* Place the band in the prexisting row the mouse is hovering over */
2156 iRowBegin
= first_visible(infoPtr
);
2157 while(iRowBegin
< infoPtr
->uNumBands
)
2159 iNextRowBegin
= get_row_end_for_band(infoPtr
, iRowBegin
);
2160 rowBeginBand
= REBAR_GetBand(infoPtr
, iRowBegin
);
2161 if(rowBeginBand
->rcBand
.bottom
> yOff
)
2163 REBAR_MoveBandToRowOffset(
2164 infoPtr
, iHitBand
, iRowBegin
, iNextRowBegin
,
2165 ((infoPtr
->dwStyle
& CCS_VERT
) ? ptsmove
->y
: ptsmove
->x
)
2166 - REBAR_PRE_GRIPPER
- infoPtr
->ihitoffset
, FALSE
);
2170 iRowBegin
= iNextRowBegin
;
2174 REBAR_Layout(infoPtr
);
2178 /* << REBAR_BeginDrag >> */
2182 REBAR_DeleteBand (REBAR_INFO
*infoPtr
, WPARAM wParam
)
2184 UINT uBand
= (UINT
)wParam
;
2187 if (uBand
>= infoPtr
->uNumBands
)
2190 TRACE("deleting band %u!\n", uBand
);
2191 lpBand
= REBAR_GetBand(infoPtr
, uBand
);
2192 REBAR_Notify_NMREBAR (infoPtr
, uBand
, RBN_DELETINGBAND
);
2193 /* TODO: a return of 1 should probably cancel the deletion */
2195 if (lpBand
->hwndChild
)
2196 ShowWindow(lpBand
->hwndChild
, SW_HIDE
);
2197 Free(lpBand
->lpText
);
2200 infoPtr
->uNumBands
--;
2201 DPA_DeletePtr(infoPtr
->bands
, uBand
);
2203 REBAR_Notify_NMREBAR (infoPtr
, -1, RBN_DELETEDBAND
);
2205 /* if only 1 band left the re-validate to possible eliminate gripper */
2206 if (infoPtr
->uNumBands
== 1)
2207 REBAR_ValidateBand (infoPtr
, REBAR_GetBand(infoPtr
, 0));
2209 REBAR_Layout(infoPtr
);
2215 /* << REBAR_DragMove >> */
2216 /* << REBAR_EndDrag >> */
2220 REBAR_GetBandBorders (const REBAR_INFO
*infoPtr
, UINT uBand
, RECT
*lpRect
)
2226 if (uBand
>= infoPtr
->uNumBands
)
2229 lpBand
= REBAR_GetBand(infoPtr
, uBand
);
2231 /* FIXME - the following values were determined by experimentation */
2232 /* with the REBAR Control Spy. I have guesses as to what the 4 and */
2233 /* 1 are, but I am not sure. There doesn't seem to be any actual */
2234 /* difference in size of the control area with and without the */
2236 if (infoPtr
->dwStyle
& RBS_BANDBORDERS
) {
2237 if (infoPtr
->dwStyle
& CCS_VERT
) {
2239 lpRect
->top
= lpBand
->cxHeader
+ 4;
2244 lpRect
->left
= lpBand
->cxHeader
+ 4;
2251 lpRect
->left
= lpBand
->cxHeader
;
2257 static inline LRESULT
2258 REBAR_GetBandCount (const REBAR_INFO
*infoPtr
)
2260 TRACE("band count %u!\n", infoPtr
->uNumBands
);
2262 return infoPtr
->uNumBands
;
2267 REBAR_GetBandInfoT(const REBAR_INFO
*infoPtr
, UINT uIndex
, LPREBARBANDINFOW lprbbi
, BOOL bUnicode
)
2271 if (!lprbbi
|| lprbbi
->cbSize
< REBARBANDINFOA_V3_SIZE
)
2274 if (uIndex
>= infoPtr
->uNumBands
)
2277 TRACE("index %u (bUnicode=%d)\n", uIndex
, bUnicode
);
2279 /* copy band information */
2280 lpBand
= REBAR_GetBand(infoPtr
, uIndex
);
2282 if (lprbbi
->fMask
& RBBIM_STYLE
)
2283 lprbbi
->fStyle
= lpBand
->fStyle
;
2285 if (lprbbi
->fMask
& RBBIM_COLORS
) {
2286 lprbbi
->clrFore
= lpBand
->clrFore
;
2287 lprbbi
->clrBack
= lpBand
->clrBack
;
2288 if (lprbbi
->clrBack
== CLR_DEFAULT
)
2289 lprbbi
->clrBack
= infoPtr
->clrBtnFace
;
2292 if (lprbbi
->fMask
& RBBIM_TEXT
) {
2294 Str_GetPtrW(lpBand
->lpText
, lprbbi
->lpText
, lprbbi
->cch
);
2296 Str_GetPtrWtoA(lpBand
->lpText
, (LPSTR
)lprbbi
->lpText
, lprbbi
->cch
);
2299 if (lprbbi
->fMask
& RBBIM_IMAGE
)
2300 lprbbi
->iImage
= lpBand
->iImage
;
2302 if (lprbbi
->fMask
& RBBIM_CHILD
)
2303 lprbbi
->hwndChild
= lpBand
->hwndChild
;
2305 if (lprbbi
->fMask
& RBBIM_CHILDSIZE
) {
2306 lprbbi
->cxMinChild
= lpBand
->cxMinChild
;
2307 lprbbi
->cyMinChild
= lpBand
->cyMinChild
;
2308 /* to make tests pass we follow Windows behaviour and allow to read these fields only
2309 * for RBBS_VARIABLEHEIGHTS bands */
2310 if (lprbbi
->cbSize
>= REBARBANDINFOW_V6_SIZE
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) {
2311 lprbbi
->cyChild
= lpBand
->cyChild
;
2312 lprbbi
->cyMaxChild
= lpBand
->cyMaxChild
;
2313 lprbbi
->cyIntegral
= lpBand
->cyIntegral
;
2317 if (lprbbi
->fMask
& RBBIM_SIZE
)
2318 lprbbi
->cx
= lpBand
->cx
;
2320 if (lprbbi
->fMask
& RBBIM_BACKGROUND
)
2321 lprbbi
->hbmBack
= lpBand
->hbmBack
;
2323 if (lprbbi
->fMask
& RBBIM_ID
)
2324 lprbbi
->wID
= lpBand
->wID
;
2326 /* check for additional data */
2327 if (lprbbi
->cbSize
>= REBARBANDINFOW_V6_SIZE
) {
2328 if (lprbbi
->fMask
& RBBIM_IDEALSIZE
)
2329 lprbbi
->cxIdeal
= lpBand
->cxIdeal
;
2331 if (lprbbi
->fMask
& RBBIM_LPARAM
)
2332 lprbbi
->lParam
= lpBand
->lParam
;
2334 if (lprbbi
->fMask
& RBBIM_HEADERSIZE
)
2335 lprbbi
->cxHeader
= lpBand
->cxHeader
;
2338 REBAR_DumpBandInfo(lprbbi
);
2345 REBAR_GetBarHeight (const REBAR_INFO
*infoPtr
)
2349 nHeight
= infoPtr
->calcSize
.cy
;
2351 TRACE("height = %d\n", nHeight
);
2358 REBAR_GetBarInfo (const REBAR_INFO
*infoPtr
, LPREBARINFO lpInfo
)
2360 if (!lpInfo
|| lpInfo
->cbSize
< sizeof (REBARINFO
))
2363 TRACE("getting bar info!\n");
2365 if (infoPtr
->himl
) {
2366 lpInfo
->himl
= infoPtr
->himl
;
2367 lpInfo
->fMask
|= RBIM_IMAGELIST
;
2374 static inline LRESULT
2375 REBAR_GetBkColor (const REBAR_INFO
*infoPtr
)
2377 COLORREF clr
= infoPtr
->clrBk
;
2379 if (clr
== CLR_DEFAULT
)
2380 clr
= infoPtr
->clrBtnFace
;
2382 TRACE("background color 0x%06x!\n", clr
);
2388 /* << REBAR_GetColorScheme >> */
2389 /* << REBAR_GetDropTarget >> */
2393 REBAR_GetPalette (const REBAR_INFO
*infoPtr
)
2395 FIXME("empty stub!\n");
2402 REBAR_GetRect (const REBAR_INFO
*infoPtr
, INT iBand
, RECT
*lprc
)
2406 if (iBand
< 0 || iBand
>= infoPtr
->uNumBands
)
2411 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2412 /* For CCS_VERT the coordinates will be swapped - like on Windows */
2413 CopyRect (lprc
, &lpBand
->rcBand
);
2415 TRACE("band %d, (%s)\n", iBand
, wine_dbgstr_rect(lprc
));
2421 static inline LRESULT
2422 REBAR_GetRowCount (const REBAR_INFO
*infoPtr
)
2424 TRACE("%u\n", infoPtr
->uNumRows
);
2426 return infoPtr
->uNumRows
;
2431 REBAR_GetRowHeight (const REBAR_INFO
*infoPtr
, INT iRow
)
2437 for (i
=0; i
<infoPtr
->uNumBands
; i
++) {
2438 lpBand
= REBAR_GetBand(infoPtr
, i
);
2439 if (HIDDENBAND(lpBand
)) continue;
2440 if (lpBand
->iRow
!= iRow
) continue;
2441 j
= lpBand
->rcBand
.bottom
- lpBand
->rcBand
.top
;
2442 if (j
> ret
) ret
= j
;
2445 TRACE("row %d, height %d\n", iRow
, ret
);
2451 static inline LRESULT
2452 REBAR_GetTextColor (const REBAR_INFO
*infoPtr
)
2454 TRACE("text color 0x%06x!\n", infoPtr
->clrText
);
2456 return infoPtr
->clrText
;
2460 static inline LRESULT
2461 REBAR_GetToolTips (const REBAR_INFO
*infoPtr
)
2463 return (LRESULT
)infoPtr
->hwndToolTip
;
2467 static inline LRESULT
2468 REBAR_GetUnicodeFormat (const REBAR_INFO
*infoPtr
)
2470 TRACE("%s hwnd=%p\n",
2471 infoPtr
->bUnicode
? "TRUE" : "FALSE", infoPtr
->hwndSelf
);
2473 return infoPtr
->bUnicode
;
2477 static inline LRESULT
2478 REBAR_GetVersion (const REBAR_INFO
*infoPtr
)
2480 TRACE("version %d\n", infoPtr
->iVersion
);
2481 return infoPtr
->iVersion
;
2486 REBAR_HitTest (const REBAR_INFO
*infoPtr
, LPRBHITTESTINFO lprbht
)
2491 REBAR_InternalHitTest (infoPtr
, &lprbht
->pt
, &lprbht
->flags
, &lprbht
->iBand
);
2493 return lprbht
->iBand
;
2498 REBAR_IdToIndex (const REBAR_INFO
*infoPtr
, UINT uId
)
2502 if (infoPtr
->uNumBands
< 1)
2505 for (i
= 0; i
< infoPtr
->uNumBands
; i
++) {
2506 if (REBAR_GetBand(infoPtr
, i
)->wID
== uId
) {
2507 TRACE("id %u is band %u found!\n", uId
, i
);
2512 TRACE("id %u is not found\n", uId
);
2518 REBAR_InsertBandT(REBAR_INFO
*infoPtr
, INT iIndex
, const REBARBANDINFOW
*lprbbi
, BOOL bUnicode
)
2522 if (!lprbbi
|| lprbbi
->cbSize
< REBARBANDINFOA_V3_SIZE
)
2525 /* trace the index as signed to see the -1 */
2526 TRACE("insert band at %d (bUnicode=%d)!\n", iIndex
, bUnicode
);
2527 REBAR_DumpBandInfo(lprbbi
);
2529 if (!(lpBand
= Alloc(sizeof(REBAR_BAND
)))) return FALSE
;
2530 if ((iIndex
== -1) || (iIndex
> infoPtr
->uNumBands
))
2531 iIndex
= infoPtr
->uNumBands
;
2532 if (DPA_InsertPtr(infoPtr
->bands
, iIndex
, lpBand
) == -1)
2537 infoPtr
->uNumBands
++;
2539 TRACE("index %d!\n", iIndex
);
2541 /* initialize band */
2542 memset(lpBand
, 0, sizeof(*lpBand
));
2543 lpBand
->clrFore
= infoPtr
->clrText
== CLR_NONE
? infoPtr
->clrBtnText
:
2545 lpBand
->clrBack
= infoPtr
->clrBk
== CLR_NONE
? infoPtr
->clrBtnFace
:
2547 lpBand
->iImage
= -1;
2549 REBAR_CommonSetupBand(infoPtr
->hwndSelf
, lprbbi
, lpBand
);
2551 /* Make sure the defaults for these are correct */
2552 if (lprbbi
->cbSize
< REBARBANDINFOA_V6_SIZE
|| !(lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) {
2553 lpBand
->cyChild
= lpBand
->cyMinChild
;
2554 lpBand
->cyMaxChild
= 0x7fffffff;
2555 lpBand
->cyIntegral
= 0;
2558 if ((lprbbi
->fMask
& RBBIM_TEXT
) && (lprbbi
->lpText
)) {
2560 Str_SetPtrW(&lpBand
->lpText
, lprbbi
->lpText
);
2562 Str_SetPtrAtoW(&lpBand
->lpText
, (LPSTR
)lprbbi
->lpText
);
2565 REBAR_ValidateBand (infoPtr
, lpBand
);
2566 /* On insert of second band, revalidate band 1 to possible add gripper */
2567 if (infoPtr
->uNumBands
== 2)
2568 REBAR_ValidateBand (infoPtr
, REBAR_GetBand(infoPtr
, 0));
2570 REBAR_DumpBand (infoPtr
);
2572 REBAR_Layout(infoPtr
);
2573 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
2580 REBAR_MaximizeBand (const REBAR_INFO
*infoPtr
, INT iBand
, LPARAM lParam
)
2583 int iRowBegin
, iRowEnd
;
2584 int cxDesired
, extra
, extraOrig
;
2588 if (infoPtr
->uNumBands
== 0 || iBand
< 0 || iBand
>= infoPtr
->uNumBands
) {
2590 ERR("Illegal MaximizeBand, requested=%d, current band count=%d\n",
2591 iBand
, infoPtr
->uNumBands
);
2595 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2597 if (lpBand
->fStyle
& RBBS_HIDDEN
)
2599 /* Windows is buggy and creates a hole */
2600 WARN("Ignoring maximize request on a hidden band (%d)\n", iBand
);
2604 cxIdealBand
= lpBand
->cxIdeal
+ lpBand
->cxHeader
+ REBAR_POST_CHILD
;
2605 if (lParam
&& (lpBand
->cxEffective
< cxIdealBand
))
2606 cxDesired
= cxIdealBand
;
2608 cxDesired
= infoPtr
->calcSize
.cx
;
2610 iRowBegin
= get_row_begin_for_band(infoPtr
, iBand
);
2611 iRowEnd
= get_row_end_for_band(infoPtr
, iBand
);
2612 extraOrig
= extra
= cxDesired
- lpBand
->cxEffective
;
2614 extra
= REBAR_ShrinkBandsRTL(infoPtr
, iRowBegin
, iBand
, extra
, TRUE
);
2616 extra
= REBAR_ShrinkBandsLTR(infoPtr
, next_visible(infoPtr
, iBand
), iRowEnd
, extra
, TRUE
);
2617 lpBand
->cxEffective
+= extraOrig
- extra
;
2618 lpBand
->cx
= lpBand
->cxEffective
;
2619 TRACE("(%d, %ld): Wanted size %d, obtained %d (shrink %d, %d)\n", iBand
, lParam
, cxDesired
, lpBand
->cx
, extraOrig
, extra
);
2620 REBAR_SetRowRectsX(infoPtr
, iRowBegin
, iRowEnd
);
2622 if (infoPtr
->dwStyle
& CCS_VERT
)
2623 REBAR_CalcVertBand(infoPtr
, iRowBegin
, iRowEnd
);
2625 REBAR_CalcHorzBand(infoPtr
, iRowBegin
, iRowEnd
);
2626 REBAR_MoveChildWindows(infoPtr
, iRowBegin
, iRowEnd
);
2633 REBAR_MinimizeBand (const REBAR_INFO
*infoPtr
, INT iBand
)
2636 int iPrev
, iRowBegin
, iRowEnd
;
2638 /* A "minimize" band is equivalent to "dragging" the gripper
2639 * of than band to the right till the band is only the size
2644 if (infoPtr
->uNumBands
== 0 || iBand
< 0 || iBand
>= infoPtr
->uNumBands
) {
2646 ERR("Illegal MinimizeBand, requested=%d, current band count=%d\n",
2647 iBand
, infoPtr
->uNumBands
);
2651 /* compute amount of movement and validate */
2652 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2654 if (lpBand
->fStyle
& RBBS_HIDDEN
)
2656 /* Windows is buggy and creates a hole/overlap */
2657 WARN("Ignoring minimize request on a hidden band (%d)\n", iBand
);
2661 iPrev
= prev_visible(infoPtr
, iBand
);
2662 /* if first band in row */
2663 if (iPrev
< 0 || REBAR_GetBand(infoPtr
, iPrev
)->iRow
!= lpBand
->iRow
) {
2664 int iNext
= next_visible(infoPtr
, iBand
);
2665 if (iNext
< infoPtr
->uNumBands
&& REBAR_GetBand(infoPtr
, iNext
)->iRow
== lpBand
->iRow
) {
2666 TRACE("(%d): Minimizing the first band in row is by maximizing the second\n", iBand
);
2667 REBAR_MaximizeBand(infoPtr
, iNext
, FALSE
);
2670 TRACE("(%d): Only one band in row - nothing to do\n", iBand
);
2674 REBAR_GetBand(infoPtr
, iPrev
)->cxEffective
+= lpBand
->cxEffective
- lpBand
->cxMinBand
;
2675 REBAR_GetBand(infoPtr
, iPrev
)->cx
= REBAR_GetBand(infoPtr
, iPrev
)->cxEffective
;
2676 lpBand
->cx
= lpBand
->cxEffective
= lpBand
->cxMinBand
;
2678 iRowBegin
= get_row_begin_for_band(infoPtr
, iBand
);
2679 iRowEnd
= get_row_end_for_band(infoPtr
, iBand
);
2680 REBAR_SetRowRectsX(infoPtr
, iRowBegin
, iRowEnd
);
2682 if (infoPtr
->dwStyle
& CCS_VERT
)
2683 REBAR_CalcVertBand(infoPtr
, iRowBegin
, iRowEnd
);
2685 REBAR_CalcHorzBand(infoPtr
, iRowBegin
, iRowEnd
);
2686 REBAR_MoveChildWindows(infoPtr
, iRowBegin
, iRowEnd
);
2692 REBAR_MoveBand (REBAR_INFO
*infoPtr
, INT iFrom
, INT iTo
)
2697 if ((infoPtr
->uNumBands
== 0) ||
2698 (iFrom
< 0) || iFrom
>= infoPtr
->uNumBands
||
2699 (iTo
< 0) || iTo
>= infoPtr
->uNumBands
) {
2701 ERR("Illegal MoveBand, from=%d, to=%d, current band count=%d\n",
2702 iFrom
, iTo
, infoPtr
->uNumBands
);
2706 lpBand
= REBAR_GetBand(infoPtr
, iFrom
);
2707 DPA_DeletePtr(infoPtr
->bands
, iFrom
);
2708 DPA_InsertPtr(infoPtr
->bands
, iTo
, lpBand
);
2710 TRACE("moved band %d to index %d\n", iFrom
, iTo
);
2711 REBAR_DumpBand (infoPtr
);
2713 /* **************************************************** */
2715 /* We do not do a REBAR_Layout here because the native */
2716 /* control does not do that. The actual layout and */
2717 /* repaint is done by the *next* real action, ex.: */
2718 /* RB_INSERTBAND, RB_DELETEBAND, RB_SIZETORECT, etc. */
2720 /* **************************************************** */
2726 /* return TRUE if two strings are different */
2728 REBAR_strdifW( LPCWSTR a
, LPCWSTR b
)
2730 return ( (a
&& !b
) || (b
&& !a
) || (a
&& b
&& lstrcmpW(a
, b
) ) );
2734 REBAR_SetBandInfoT(REBAR_INFO
*infoPtr
, INT iBand
, const REBARBANDINFOW
*lprbbi
, BOOL bUnicode
)
2739 if (!lprbbi
|| lprbbi
->cbSize
< REBARBANDINFOA_V3_SIZE
)
2742 if (iBand
>= infoPtr
->uNumBands
)
2745 TRACE("index %d\n", iBand
);
2746 REBAR_DumpBandInfo (lprbbi
);
2748 /* set band information */
2749 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2751 uChanged
= REBAR_CommonSetupBand (infoPtr
->hwndSelf
, lprbbi
, lpBand
);
2752 if (lprbbi
->fMask
& RBBIM_TEXT
) {
2755 Str_SetPtrW(&wstr
, lprbbi
->lpText
);
2757 Str_SetPtrAtoW(&wstr
, (LPSTR
)lprbbi
->lpText
);
2759 if (REBAR_strdifW(wstr
, lpBand
->lpText
)) {
2760 Free(lpBand
->lpText
);
2761 lpBand
->lpText
= wstr
;
2762 uChanged
|= RBBIM_TEXT
;
2768 REBAR_ValidateBand (infoPtr
, lpBand
);
2770 REBAR_DumpBand (infoPtr
);
2772 if (uChanged
& (RBBIM_CHILDSIZE
| RBBIM_SIZE
| RBBIM_STYLE
| RBBIM_IMAGE
)) {
2773 REBAR_Layout(infoPtr
);
2774 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
2782 REBAR_SetBarInfo (REBAR_INFO
*infoPtr
, const REBARINFO
*lpInfo
)
2787 if (!lpInfo
|| lpInfo
->cbSize
< sizeof (REBARINFO
))
2790 TRACE("setting bar info!\n");
2792 if (lpInfo
->fMask
& RBIM_IMAGELIST
) {
2793 infoPtr
->himl
= lpInfo
->himl
;
2794 if (infoPtr
->himl
) {
2796 ImageList_GetIconSize (infoPtr
->himl
, &cx
, &cy
);
2797 infoPtr
->imageSize
.cx
= cx
;
2798 infoPtr
->imageSize
.cy
= cy
;
2801 infoPtr
->imageSize
.cx
= 0;
2802 infoPtr
->imageSize
.cy
= 0;
2804 TRACE("new image cx=%d, cy=%d\n", infoPtr
->imageSize
.cx
,
2805 infoPtr
->imageSize
.cy
);
2808 /* revalidate all bands to reset flags for images in headers of bands */
2809 for (i
=0; i
<infoPtr
->uNumBands
; i
++) {
2810 lpBand
= REBAR_GetBand(infoPtr
, i
);
2811 REBAR_ValidateBand (infoPtr
, lpBand
);
2819 REBAR_SetBkColor (REBAR_INFO
*infoPtr
, COLORREF clr
)
2823 clrTemp
= infoPtr
->clrBk
;
2824 infoPtr
->clrBk
= clr
;
2826 TRACE("background color 0x%06x!\n", infoPtr
->clrBk
);
2832 /* << REBAR_SetColorScheme >> */
2833 /* << REBAR_SetPalette >> */
2837 REBAR_SetParent (REBAR_INFO
*infoPtr
, HWND parent
)
2839 HWND hwndTemp
= infoPtr
->hwndNotify
;
2841 infoPtr
->hwndNotify
= parent
;
2843 return (LRESULT
)hwndTemp
;
2848 REBAR_SetTextColor (REBAR_INFO
*infoPtr
, COLORREF clr
)
2852 clrTemp
= infoPtr
->clrText
;
2853 infoPtr
->clrText
= clr
;
2855 TRACE("text color 0x%06x!\n", infoPtr
->clrText
);
2861 /* << REBAR_SetTooltips >> */
2864 static inline LRESULT
2865 REBAR_SetUnicodeFormat (REBAR_INFO
*infoPtr
, BOOL unicode
)
2867 BOOL bTemp
= infoPtr
->bUnicode
;
2869 TRACE("to %s hwnd=%p, was %s\n",
2870 unicode
? "TRUE" : "FALSE", infoPtr
->hwndSelf
,
2871 (bTemp
) ? "TRUE" : "FALSE");
2873 infoPtr
->bUnicode
= unicode
;
2880 REBAR_SetVersion (REBAR_INFO
*infoPtr
, INT iVersion
)
2882 INT iOldVersion
= infoPtr
->iVersion
;
2884 if (iVersion
> COMCTL32_VERSION
)
2887 infoPtr
->iVersion
= iVersion
;
2889 TRACE("new version %d\n", iVersion
);
2896 REBAR_ShowBand (REBAR_INFO
*infoPtr
, INT iBand
, BOOL show
)
2900 if (iBand
< 0 || iBand
>= infoPtr
->uNumBands
)
2903 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2906 TRACE("show band %d\n", iBand
);
2907 lpBand
->fStyle
= lpBand
->fStyle
& ~RBBS_HIDDEN
;
2908 if (IsWindow (lpBand
->hwndChild
))
2909 ShowWindow (lpBand
->hwndChild
, SW_SHOW
);
2912 TRACE("hide band %d\n", iBand
);
2913 lpBand
->fStyle
= lpBand
->fStyle
| RBBS_HIDDEN
;
2914 if (IsWindow (lpBand
->hwndChild
))
2915 ShowWindow (lpBand
->hwndChild
, SW_HIDE
);
2918 REBAR_Layout(infoPtr
);
2919 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
2926 REBAR_SizeToRect (REBAR_INFO
*infoPtr
, const RECT
*lpRect
)
2928 if (!lpRect
) return FALSE
;
2930 TRACE("[%s]\n", wine_dbgstr_rect(lpRect
));
2931 REBAR_SizeToHeight(infoPtr
, get_rect_cy(infoPtr
, lpRect
));
2938 REBAR_Create (REBAR_INFO
*infoPtr
, LPCREATESTRUCTW cs
)
2942 if (TRACE_ON(rebar
)) {
2943 GetWindowRect(infoPtr
->hwndSelf
, &wnrc1
);
2944 GetClientRect(infoPtr
->hwndSelf
, &clrc1
);
2945 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
2946 wine_dbgstr_rect(&wnrc1
), wine_dbgstr_rect(&clrc1
),
2947 cs
->x
, cs
->y
, cs
->cx
, cs
->cy
);
2950 TRACE("created!\n");
2952 if (OpenThemeData (infoPtr
->hwndSelf
, themeClass
))
2954 /* native seems to clear WS_BORDER when themed */
2955 infoPtr
->dwStyle
&= ~WS_BORDER
;
2963 REBAR_Destroy (REBAR_INFO
*infoPtr
)
2968 /* clean up each band */
2969 for (i
= 0; i
< infoPtr
->uNumBands
; i
++) {
2970 lpBand
= REBAR_GetBand(infoPtr
, i
);
2972 /* delete text strings */
2973 Free (lpBand
->lpText
);
2974 lpBand
->lpText
= NULL
;
2975 /* destroy child window */
2976 DestroyWindow (lpBand
->hwndChild
);
2980 /* free band array */
2981 DPA_Destroy (infoPtr
->bands
);
2982 infoPtr
->bands
= NULL
;
2984 DestroyCursor (infoPtr
->hcurArrow
);
2985 DestroyCursor (infoPtr
->hcurHorz
);
2986 DestroyCursor (infoPtr
->hcurVert
);
2987 DestroyCursor (infoPtr
->hcurDrag
);
2988 if (infoPtr
->hDefaultFont
) DeleteObject (infoPtr
->hDefaultFont
);
2989 SetWindowLongPtrW (infoPtr
->hwndSelf
, 0, 0);
2991 CloseThemeData (GetWindowTheme (infoPtr
->hwndSelf
));
2993 /* free rebar info data */
2995 TRACE("destroyed!\n");
3000 REBAR_GetFont (const REBAR_INFO
*infoPtr
)
3002 return (LRESULT
)infoPtr
->hFont
;
3006 REBAR_PushChevron(const REBAR_INFO
*infoPtr
, UINT uBand
, LPARAM lParam
)
3008 if (uBand
< infoPtr
->uNumBands
)
3010 NMREBARCHEVRON nmrbc
;
3011 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, uBand
);
3013 TRACE("Pressed chevron on band %u\n", uBand
);
3015 /* redraw chevron in pushed state */
3016 lpBand
->fDraw
|= DRAW_CHEVRONPUSHED
;
3017 RedrawWindow(infoPtr
->hwndSelf
, &lpBand
->rcChevron
,0,
3018 RDW_ERASE
|RDW_INVALIDATE
|RDW_UPDATENOW
);
3020 /* notify app so it can display a popup menu or whatever */
3021 nmrbc
.uBand
= uBand
;
3022 nmrbc
.wID
= lpBand
->wID
;
3023 nmrbc
.lParam
= lpBand
->lParam
;
3024 nmrbc
.rc
= lpBand
->rcChevron
;
3025 nmrbc
.lParamNM
= lParam
;
3026 REBAR_Notify((NMHDR
*)&nmrbc
, infoPtr
, RBN_CHEVRONPUSHED
);
3028 /* redraw chevron in previous state */
3029 lpBand
->fDraw
&= ~DRAW_CHEVRONPUSHED
;
3030 InvalidateRect(infoPtr
->hwndSelf
, &lpBand
->rcChevron
, TRUE
);
3038 REBAR_LButtonDown (REBAR_INFO
*infoPtr
, LPARAM lParam
)
3043 ptMouseDown
.x
= (short)LOWORD(lParam
);
3044 ptMouseDown
.y
= (short)HIWORD(lParam
);
3046 REBAR_InternalHitTest(infoPtr
, &ptMouseDown
, &htFlags
, &iHitBand
);
3048 if (htFlags
== RBHT_CHEVRON
)
3050 REBAR_PushChevron(infoPtr
, iHitBand
, 0);
3052 else if (htFlags
== RBHT_GRABBER
|| htFlags
== RBHT_CAPTION
)
3056 TRACE("Starting drag\n");
3058 lpBand
= REBAR_GetBand(infoPtr
, iHitBand
);
3060 SetCapture (infoPtr
->hwndSelf
);
3061 infoPtr
->iGrabbedBand
= iHitBand
;
3063 /* save off the LOWORD and HIWORD of lParam as initial x,y */
3064 infoPtr
->dragStart
.x
= (short)LOWORD(lParam
);
3065 infoPtr
->dragStart
.y
= (short)HIWORD(lParam
);
3066 infoPtr
->dragNow
= infoPtr
->dragStart
;
3067 if (infoPtr
->dwStyle
& CCS_VERT
)
3068 infoPtr
->ihitoffset
= infoPtr
->dragStart
.y
- (lpBand
->rcBand
.left
+ REBAR_PRE_GRIPPER
);
3070 infoPtr
->ihitoffset
= infoPtr
->dragStart
.x
- (lpBand
->rcBand
.left
+ REBAR_PRE_GRIPPER
);
3076 REBAR_LButtonUp (REBAR_INFO
*infoPtr
)
3078 if (infoPtr
->iGrabbedBand
>= 0)
3083 infoPtr
->dragStart
.x
= 0;
3084 infoPtr
->dragStart
.y
= 0;
3085 infoPtr
->dragNow
= infoPtr
->dragStart
;
3089 if (infoPtr
->fStatus
& BEGIN_DRAG_ISSUED
) {
3090 REBAR_Notify(&layout
, infoPtr
, RBN_LAYOUTCHANGED
);
3091 REBAR_Notify_NMREBAR (infoPtr
, infoPtr
->iGrabbedBand
, RBN_ENDDRAG
);
3092 infoPtr
->fStatus
&= ~BEGIN_DRAG_ISSUED
;
3095 infoPtr
->iGrabbedBand
= -1;
3097 GetClientRect(infoPtr
->hwndSelf
, &rect
);
3098 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
3105 REBAR_MouseLeave (REBAR_INFO
*infoPtr
)
3107 if (infoPtr
->ichevronhotBand
>= 0)
3109 REBAR_BAND
*lpChevronBand
= REBAR_GetBand(infoPtr
, infoPtr
->ichevronhotBand
);
3110 if (lpChevronBand
->fDraw
& DRAW_CHEVRONHOT
)
3112 lpChevronBand
->fDraw
&= ~DRAW_CHEVRONHOT
;
3113 InvalidateRect(infoPtr
->hwndSelf
, &lpChevronBand
->rcChevron
, TRUE
);
3116 infoPtr
->iOldBand
= -1;
3117 infoPtr
->ichevronhotBand
= -2;
3123 REBAR_MouseMove (REBAR_INFO
*infoPtr
, LPARAM lParam
)
3125 REBAR_BAND
*lpChevronBand
;
3128 ptMove
.x
= (short)LOWORD(lParam
);
3129 ptMove
.y
= (short)HIWORD(lParam
);
3131 /* if we are currently dragging a band */
3132 if (infoPtr
->iGrabbedBand
>= 0)
3135 int yPtMove
= (infoPtr
->dwStyle
& CCS_VERT
? ptMove
.x
: ptMove
.y
);
3137 if (GetCapture() != infoPtr
->hwndSelf
)
3138 ERR("We are dragging but haven't got capture?!?\n");
3140 band
= REBAR_GetBand(infoPtr
, infoPtr
->iGrabbedBand
);
3142 /* if mouse did not move much, exit */
3143 if ((abs(ptMove
.x
- infoPtr
->dragNow
.x
) <= mindragx
) &&
3144 (abs(ptMove
.y
- infoPtr
->dragNow
.y
) <= mindragy
)) return 0;
3146 /* on first significant mouse movement, issue notify */
3147 if (!(infoPtr
->fStatus
& BEGIN_DRAG_ISSUED
)) {
3148 if (REBAR_Notify_NMREBAR (infoPtr
, -1, RBN_BEGINDRAG
)) {
3149 /* Notify returned TRUE - abort drag */
3150 infoPtr
->dragStart
.x
= 0;
3151 infoPtr
->dragStart
.y
= 0;
3152 infoPtr
->dragNow
= infoPtr
->dragStart
;
3153 infoPtr
->iGrabbedBand
= -1;
3157 infoPtr
->fStatus
|= BEGIN_DRAG_ISSUED
;
3160 /* Test for valid drag case - must not be first band in row */
3161 if ((yPtMove
< band
->rcBand
.top
) ||
3162 (yPtMove
> band
->rcBand
.bottom
)) {
3163 REBAR_HandleUDDrag (infoPtr
, &ptMove
);
3166 REBAR_HandleLRDrag (infoPtr
, &ptMove
);
3173 TRACKMOUSEEVENT trackinfo
;
3175 REBAR_InternalHitTest(infoPtr
, &ptMove
, &htFlags
, &iHitBand
);
3177 if (infoPtr
->iOldBand
>= 0 && infoPtr
->iOldBand
== infoPtr
->ichevronhotBand
)
3179 lpChevronBand
= REBAR_GetBand(infoPtr
, infoPtr
->ichevronhotBand
);
3180 if (lpChevronBand
->fDraw
& DRAW_CHEVRONHOT
)
3182 lpChevronBand
->fDraw
&= ~DRAW_CHEVRONHOT
;
3183 InvalidateRect(infoPtr
->hwndSelf
, &lpChevronBand
->rcChevron
, TRUE
);
3185 infoPtr
->ichevronhotBand
= -2;
3188 if (htFlags
== RBHT_CHEVRON
)
3190 /* fill in the TRACKMOUSEEVENT struct */
3191 trackinfo
.cbSize
= sizeof(TRACKMOUSEEVENT
);
3192 trackinfo
.dwFlags
= TME_QUERY
;
3193 trackinfo
.hwndTrack
= infoPtr
->hwndSelf
;
3194 trackinfo
.dwHoverTime
= 0;
3196 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
3197 _TrackMouseEvent(&trackinfo
);
3199 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
3200 if(!(trackinfo
.dwFlags
& TME_LEAVE
))
3202 trackinfo
.dwFlags
= TME_LEAVE
; /* notify upon leaving */
3204 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
3205 /* and can properly deactivate the hot chevron */
3206 _TrackMouseEvent(&trackinfo
);
3209 lpChevronBand
= REBAR_GetBand(infoPtr
, iHitBand
);
3210 if (!(lpChevronBand
->fDraw
& DRAW_CHEVRONHOT
))
3212 lpChevronBand
->fDraw
|= DRAW_CHEVRONHOT
;
3213 InvalidateRect(infoPtr
->hwndSelf
, &lpChevronBand
->rcChevron
, TRUE
);
3214 infoPtr
->ichevronhotBand
= iHitBand
;
3217 infoPtr
->iOldBand
= iHitBand
;
3224 static inline LRESULT
3225 REBAR_NCCalcSize (const REBAR_INFO
*infoPtr
, RECT
*rect
)
3229 if (infoPtr
->dwStyle
& WS_BORDER
) {
3230 rect
->left
= min(rect
->left
+ GetSystemMetrics(SM_CXEDGE
), rect
->right
);
3231 rect
->right
= max(rect
->right
- GetSystemMetrics(SM_CXEDGE
), rect
->left
);
3232 rect
->top
= min(rect
->top
+ GetSystemMetrics(SM_CYEDGE
), rect
->bottom
);
3233 rect
->bottom
= max(rect
->bottom
- GetSystemMetrics(SM_CYEDGE
), rect
->top
);
3235 else if ((theme
= GetWindowTheme (infoPtr
->hwndSelf
)))
3237 /* FIXME: should use GetThemeInt */
3238 rect
->top
= min(rect
->top
+ 1, rect
->bottom
);
3240 TRACE("new client=(%s)\n", wine_dbgstr_rect(rect
));
3246 REBAR_NCCreate (HWND hwnd
, const CREATESTRUCTW
*cs
)
3248 REBAR_INFO
*infoPtr
= REBAR_GetInfoPtr (hwnd
);
3250 NONCLIENTMETRICSW ncm
;
3254 ERR("Strange info structure pointer *not* NULL\n");
3258 if (TRACE_ON(rebar
)) {
3259 GetWindowRect(hwnd
, &wnrc1
);
3260 GetClientRect(hwnd
, &clrc1
);
3261 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
3262 wine_dbgstr_rect(&wnrc1
), wine_dbgstr_rect(&clrc1
),
3263 cs
->x
, cs
->y
, cs
->cx
, cs
->cy
);
3266 /* allocate memory for info structure */
3267 infoPtr
= Alloc (sizeof(REBAR_INFO
));
3268 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
3270 /* initialize info structure - initial values are 0 */
3271 infoPtr
->clrBk
= CLR_NONE
;
3272 infoPtr
->clrText
= CLR_NONE
;
3273 infoPtr
->clrBtnText
= comctl32_color
.clrBtnText
;
3274 infoPtr
->clrBtnFace
= comctl32_color
.clrBtnFace
;
3275 infoPtr
->iOldBand
= -1;
3276 infoPtr
->ichevronhotBand
= -2;
3277 infoPtr
->iGrabbedBand
= -1;
3278 infoPtr
->hwndSelf
= hwnd
;
3279 infoPtr
->DoRedraw
= TRUE
;
3280 infoPtr
->hcurArrow
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
3281 infoPtr
->hcurHorz
= LoadCursorW (0, (LPWSTR
)IDC_SIZEWE
);
3282 infoPtr
->hcurVert
= LoadCursorW (0, (LPWSTR
)IDC_SIZENS
);
3283 infoPtr
->hcurDrag
= LoadCursorW (0, (LPWSTR
)IDC_SIZE
);
3284 infoPtr
->fStatus
= 0;
3285 infoPtr
->hFont
= GetStockObject (SYSTEM_FONT
);
3286 infoPtr
->bands
= DPA_Create(8);
3288 /* issue WM_NOTIFYFORMAT to get unicode status of parent */
3289 REBAR_NotifyFormat(infoPtr
, NF_REQUERY
);
3291 /* Stow away the original style */
3292 infoPtr
->orgStyle
= cs
->style
;
3293 /* add necessary styles to the requested styles */
3294 infoPtr
->dwStyle
= cs
->style
| WS_VISIBLE
;
3295 if ((infoPtr
->dwStyle
& CCS_LAYOUT_MASK
) == 0)
3296 infoPtr
->dwStyle
|= CCS_TOP
;
3297 SetWindowLongW (hwnd
, GWL_STYLE
, infoPtr
->dwStyle
);
3299 /* get font handle for Caption Font */
3300 ncm
.cbSize
= sizeof(ncm
);
3301 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS
, ncm
.cbSize
, &ncm
, 0);
3302 /* if the font is bold, set to normal */
3303 if (ncm
.lfCaptionFont
.lfWeight
> FW_NORMAL
) {
3304 ncm
.lfCaptionFont
.lfWeight
= FW_NORMAL
;
3306 tfont
= CreateFontIndirectW (&ncm
.lfCaptionFont
);
3308 infoPtr
->hFont
= infoPtr
->hDefaultFont
= tfont
;
3312 GetSysColor (numerous);
3313 GetSysColorBrush (numerous) (see WM_SYSCOLORCHANGE);
3314 *GetStockObject (SYSTEM_FONT);
3315 *SetWindowLong (hwnd, 0, info ptr);
3317 *SetWindowLong (hwnd, GWL_STYLE, style+0x10000001);
3318 WS_VISIBLE = 0x10000000;
3319 CCS_TOP = 0x00000001;
3320 *SystemParametersInfo (SPI_GETNONCLIENTMETRICS...);
3321 *CreateFontIndirect (lfCaptionFont from above);
3323 SelectObject (hdc, fontabove);
3324 GetTextMetrics (hdc, ); guessing is tmHeight
3325 SelectObject (hdc, oldfont);
3328 MapWindowPoints (0, parent, rectabove, 2);
3331 ClientToScreen (clientrect);
3332 SetWindowPos (hwnd, 0, 0, 0, 0, 0, SWP_NOZORDER);
3339 REBAR_NCHitTest (const REBAR_INFO
*infoPtr
, LPARAM lParam
)
3345 LRESULT ret
= HTCLIENT
;
3348 * Differences from doc at MSDN (as observed with version 4.71 of
3350 * 1. doc says nmmouse.pt is in screen coord, trace shows client coord.
3351 * 2. if band is not identified .dwItemSpec is 0xffffffff.
3352 * 3. native always seems to return HTCLIENT if notify return is 0.
3355 clpt
.x
= (short)LOWORD(lParam
);
3356 clpt
.y
= (short)HIWORD(lParam
);
3357 ScreenToClient (infoPtr
->hwndSelf
, &clpt
);
3358 REBAR_InternalHitTest (infoPtr
, &clpt
, &scrap
,
3359 (INT
*)&nmmouse
.dwItemSpec
);
3360 nmmouse
.dwItemData
= 0;
3362 nmmouse
.dwHitInfo
= 0;
3363 if ((i
= REBAR_Notify((NMHDR
*) &nmmouse
, infoPtr
, NM_NCHITTEST
))) {
3364 TRACE("notify changed return value from %ld to %d\n",
3368 TRACE("returning %ld, client point (%d,%d)\n", ret
, clpt
.x
, clpt
.y
);
3374 REBAR_NCPaint (const REBAR_INFO
*infoPtr
)
3380 if (infoPtr
->dwStyle
& WS_MINIMIZE
)
3381 return 0; /* Nothing to do */
3383 if (infoPtr
->dwStyle
& WS_BORDER
) {
3385 /* adjust rectangle and draw the necessary edge */
3386 if (!(hdc
= GetDCEx( infoPtr
->hwndSelf
, 0, DCX_USESTYLE
| DCX_WINDOW
)))
3388 GetWindowRect (infoPtr
->hwndSelf
, &rcWindow
);
3389 OffsetRect (&rcWindow
, -rcWindow
.left
, -rcWindow
.top
);
3390 TRACE("rect (%s)\n", wine_dbgstr_rect(&rcWindow
));
3391 DrawEdge (hdc
, &rcWindow
, EDGE_ETCHED
, BF_RECT
);
3392 ReleaseDC( infoPtr
->hwndSelf
, hdc
);
3394 else if ((theme
= GetWindowTheme (infoPtr
->hwndSelf
)))
3396 /* adjust rectangle and draw the necessary edge */
3397 if (!(hdc
= GetDCEx( infoPtr
->hwndSelf
, 0, DCX_USESTYLE
| DCX_WINDOW
)))
3399 GetWindowRect (infoPtr
->hwndSelf
, &rcWindow
);
3400 OffsetRect (&rcWindow
, -rcWindow
.left
, -rcWindow
.top
);
3401 TRACE("rect (%s)\n", wine_dbgstr_rect(&rcWindow
));
3402 DrawThemeEdge (theme
, hdc
, 0, 0, &rcWindow
, BDR_RAISEDINNER
, BF_TOP
, NULL
);
3403 ReleaseDC( infoPtr
->hwndSelf
, hdc
);
3411 REBAR_NotifyFormat (REBAR_INFO
*infoPtr
, LPARAM cmd
)
3415 if (cmd
== NF_REQUERY
) {
3416 i
= SendMessageW(REBAR_GetNotifyParent (infoPtr
),
3417 WM_NOTIFYFORMAT
, (WPARAM
)infoPtr
->hwndSelf
, NF_QUERY
);
3418 if ((i
!= NFR_ANSI
) && (i
!= NFR_UNICODE
)) {
3419 ERR("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n", i
);
3422 infoPtr
->bUnicode
= (i
== NFR_UNICODE
) ? 1 : 0;
3425 return (LRESULT
)((infoPtr
->bUnicode
) ? NFR_UNICODE
: NFR_ANSI
);
3430 REBAR_Paint (const REBAR_INFO
*infoPtr
, HDC hdc
)
3433 TRACE("painting\n");
3434 REBAR_Refresh (infoPtr
, hdc
);
3437 hdc
= BeginPaint (infoPtr
->hwndSelf
, &ps
);
3438 TRACE("painting (%s)\n", wine_dbgstr_rect(&ps
.rcPaint
));
3440 /* Erase area of paint if requested */
3441 REBAR_EraseBkGnd (infoPtr
, hdc
);
3443 REBAR_Refresh (infoPtr
, hdc
);
3444 EndPaint (infoPtr
->hwndSelf
, &ps
);
3452 REBAR_SetCursor (const REBAR_INFO
*infoPtr
, LPARAM lParam
)
3457 TRACE("code=0x%X id=0x%X\n", LOWORD(lParam
), HIWORD(lParam
));
3460 ScreenToClient (infoPtr
->hwndSelf
, &pt
);
3462 REBAR_InternalHitTest (infoPtr
, &pt
, &flags
, NULL
);
3464 if (flags
== RBHT_GRABBER
) {
3465 if ((infoPtr
->dwStyle
& CCS_VERT
) &&
3466 !(infoPtr
->dwStyle
& RBS_VERTICALGRIPPER
))
3467 SetCursor (infoPtr
->hcurVert
);
3469 SetCursor (infoPtr
->hcurHorz
);
3471 else if (flags
!= RBHT_CLIENT
)
3472 SetCursor (infoPtr
->hcurArrow
);
3479 REBAR_SetFont (REBAR_INFO
*infoPtr
, HFONT font
)
3484 infoPtr
->hFont
= font
;
3486 /* revalidate all bands to change sizes of text in headers of bands */
3487 for (i
=0; i
<infoPtr
->uNumBands
; i
++) {
3488 lpBand
= REBAR_GetBand(infoPtr
, i
);
3489 REBAR_ValidateBand (infoPtr
, lpBand
);
3492 REBAR_Layout(infoPtr
);
3497 /*****************************************************
3499 * Handles the WM_SETREDRAW message.
3502 * According to testing V4.71 of COMCTL32 returns the
3503 * *previous* status of the redraw flag (either 0 or -1)
3504 * instead of the MSDN documented value of 0 if handled
3506 *****************************************************/
3507 static inline LRESULT
3508 REBAR_SetRedraw (REBAR_INFO
*infoPtr
, BOOL redraw
)
3510 BOOL oldredraw
= infoPtr
->DoRedraw
;
3512 TRACE("set to %s, fStatus=%08x\n",
3513 (redraw
) ? "TRUE" : "FALSE", infoPtr
->fStatus
);
3514 infoPtr
->DoRedraw
= redraw
;
3516 if (infoPtr
->fStatus
& BAND_NEEDS_REDRAW
) {
3517 REBAR_MoveChildWindows (infoPtr
, 0, infoPtr
->uNumBands
);
3518 REBAR_ForceResize (infoPtr
);
3519 InvalidateRect (infoPtr
->hwndSelf
, NULL
, TRUE
);
3521 infoPtr
->fStatus
&= ~BAND_NEEDS_REDRAW
;
3523 return (oldredraw
) ? -1 : 0;
3528 REBAR_Size (REBAR_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3530 TRACE("wParam=%lx, lParam=%lx\n", wParam
, lParam
);
3532 /* avoid _Layout resize recursion (but it shouldn't be infinite and it seems Windows does recurse) */
3533 if (infoPtr
->fStatus
& SELF_RESIZE
) {
3534 infoPtr
->fStatus
&= ~SELF_RESIZE
;
3535 TRACE("SELF_RESIZE was set, reset, fStatus=%08x lparam=%08lx\n",
3536 infoPtr
->fStatus
, lParam
);
3540 if (infoPtr
->dwStyle
& RBS_AUTOSIZE
)
3541 REBAR_AutoSize(infoPtr
, TRUE
);
3543 REBAR_Layout(infoPtr
);
3550 REBAR_StyleChanged (REBAR_INFO
*infoPtr
, INT nType
, const STYLESTRUCT
*lpStyle
)
3552 TRACE("current style=%08x, styleOld=%08x, style being set to=%08x\n",
3553 infoPtr
->dwStyle
, lpStyle
->styleOld
, lpStyle
->styleNew
);
3554 if (nType
== GWL_STYLE
)
3556 infoPtr
->orgStyle
= infoPtr
->dwStyle
= lpStyle
->styleNew
;
3557 if (GetWindowTheme (infoPtr
->hwndSelf
))
3558 infoPtr
->dwStyle
&= ~WS_BORDER
;
3559 /* maybe it should be COMMON_STYLES like in toolbar */
3560 if ((lpStyle
->styleNew
^ lpStyle
->styleOld
) & CCS_VERT
)
3561 REBAR_Layout(infoPtr
);
3566 /* update theme after a WM_THEMECHANGED message */
3567 static LRESULT
theme_changed (REBAR_INFO
* infoPtr
)
3569 HTHEME theme
= GetWindowTheme (infoPtr
->hwndSelf
);
3570 CloseThemeData (theme
);
3571 theme
= OpenThemeData (infoPtr
->hwndSelf
, themeClass
);
3572 /* WS_BORDER disappears when theming is enabled and reappears when
3574 infoPtr
->dwStyle
&= ~WS_BORDER
;
3575 infoPtr
->dwStyle
|= theme
? 0 : (infoPtr
->orgStyle
& WS_BORDER
);
3580 REBAR_WindowPosChanged (const REBAR_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
3585 ret
= DefWindowProcW(infoPtr
->hwndSelf
, WM_WINDOWPOSCHANGED
,
3587 GetWindowRect(infoPtr
->hwndSelf
, &rc
);
3588 TRACE("hwnd %p new pos (%s)\n", infoPtr
->hwndSelf
, wine_dbgstr_rect(&rc
));
3593 static LRESULT WINAPI
3594 REBAR_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
3596 REBAR_INFO
*infoPtr
= REBAR_GetInfoPtr (hwnd
);
3598 TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n",
3599 hwnd
, uMsg
, wParam
, lParam
);
3600 if (!infoPtr
&& (uMsg
!= WM_NCCREATE
))
3601 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
3604 /* case RB_BEGINDRAG: */
3607 return REBAR_DeleteBand (infoPtr
, wParam
);
3609 /* case RB_DRAGMOVE: */
3610 /* case RB_ENDDRAG: */
3612 case RB_GETBANDBORDERS
:
3613 return REBAR_GetBandBorders (infoPtr
, wParam
, (LPRECT
)lParam
);
3615 case RB_GETBANDCOUNT
:
3616 return REBAR_GetBandCount (infoPtr
);
3618 case RB_GETBANDINFO_OLD
:
3619 case RB_GETBANDINFOA
:
3620 case RB_GETBANDINFOW
:
3621 return REBAR_GetBandInfoT(infoPtr
, wParam
, (LPREBARBANDINFOW
)lParam
,
3622 uMsg
== RB_GETBANDINFOW
);
3623 case RB_GETBARHEIGHT
:
3624 return REBAR_GetBarHeight (infoPtr
);
3627 return REBAR_GetBarInfo (infoPtr
, (LPREBARINFO
)lParam
);
3630 return REBAR_GetBkColor (infoPtr
);
3632 /* case RB_GETCOLORSCHEME: */
3633 /* case RB_GETDROPTARGET: */
3636 return REBAR_GetPalette (infoPtr
);
3639 return REBAR_GetRect (infoPtr
, wParam
, (LPRECT
)lParam
);
3641 case RB_GETROWCOUNT
:
3642 return REBAR_GetRowCount (infoPtr
);
3644 case RB_GETROWHEIGHT
:
3645 return REBAR_GetRowHeight (infoPtr
, wParam
);
3647 case RB_GETTEXTCOLOR
:
3648 return REBAR_GetTextColor (infoPtr
);
3650 case RB_GETTOOLTIPS
:
3651 return REBAR_GetToolTips (infoPtr
);
3653 case RB_GETUNICODEFORMAT
:
3654 return REBAR_GetUnicodeFormat (infoPtr
);
3656 case CCM_GETVERSION
:
3657 return REBAR_GetVersion (infoPtr
);
3660 return REBAR_HitTest (infoPtr
, (LPRBHITTESTINFO
)lParam
);
3663 return REBAR_IdToIndex (infoPtr
, wParam
);
3665 case RB_INSERTBANDA
:
3666 case RB_INSERTBANDW
:
3667 return REBAR_InsertBandT(infoPtr
, wParam
, (LPREBARBANDINFOW
)lParam
,
3668 uMsg
== RB_INSERTBANDW
);
3669 case RB_MAXIMIZEBAND
:
3670 return REBAR_MaximizeBand (infoPtr
, wParam
, lParam
);
3672 case RB_MINIMIZEBAND
:
3673 return REBAR_MinimizeBand (infoPtr
, wParam
);
3676 return REBAR_MoveBand (infoPtr
, wParam
, lParam
);
3678 case RB_PUSHCHEVRON
:
3679 return REBAR_PushChevron (infoPtr
, wParam
, lParam
);
3681 case RB_SETBANDINFOA
:
3682 case RB_SETBANDINFOW
:
3683 return REBAR_SetBandInfoT(infoPtr
, wParam
, (LPREBARBANDINFOW
)lParam
,
3684 uMsg
== RB_SETBANDINFOW
);
3686 return REBAR_SetBarInfo (infoPtr
, (LPREBARINFO
)lParam
);
3689 return REBAR_SetBkColor (infoPtr
, lParam
);
3691 /* case RB_SETCOLORSCHEME: */
3692 /* case RB_SETPALETTE: */
3695 return REBAR_SetParent (infoPtr
, (HWND
)wParam
);
3697 case RB_SETTEXTCOLOR
:
3698 return REBAR_SetTextColor (infoPtr
, lParam
);
3700 /* case RB_SETTOOLTIPS: */
3702 case RB_SETUNICODEFORMAT
:
3703 return REBAR_SetUnicodeFormat (infoPtr
, wParam
);
3705 case CCM_SETVERSION
:
3706 return REBAR_SetVersion (infoPtr
, (INT
)wParam
);
3709 return REBAR_ShowBand (infoPtr
, wParam
, lParam
);
3712 return REBAR_SizeToRect (infoPtr
, (LPCRECT
)lParam
);
3715 /* Messages passed to parent */
3719 return SendMessageW(REBAR_GetNotifyParent (infoPtr
), uMsg
, wParam
, lParam
);
3722 /* case WM_CHARTOITEM: supported according to ControlSpy */
3725 return REBAR_Create (infoPtr
, (LPCREATESTRUCTW
)lParam
);
3728 return REBAR_Destroy (infoPtr
);
3731 return REBAR_EraseBkGnd (infoPtr
, (HDC
)wParam
);
3734 return REBAR_GetFont (infoPtr
);
3736 /* case WM_LBUTTONDBLCLK: supported according to ControlSpy */
3738 case WM_LBUTTONDOWN
:
3739 return REBAR_LButtonDown (infoPtr
, lParam
);
3742 return REBAR_LButtonUp (infoPtr
);
3744 /* case WM_MEASUREITEM: supported according to ControlSpy */
3747 return REBAR_MouseMove (infoPtr
, lParam
);
3750 return REBAR_MouseLeave (infoPtr
);
3753 return REBAR_NCCalcSize (infoPtr
, (RECT
*)lParam
);
3756 return REBAR_NCCreate (hwnd
, (LPCREATESTRUCTW
)lParam
);
3759 return REBAR_NCHitTest (infoPtr
, lParam
);
3762 return REBAR_NCPaint (infoPtr
);
3764 case WM_NOTIFYFORMAT
:
3765 return REBAR_NotifyFormat (infoPtr
, lParam
);
3767 case WM_PRINTCLIENT
:
3769 return REBAR_Paint (infoPtr
, (HDC
)wParam
);
3771 /* case WM_PALETTECHANGED: supported according to ControlSpy */
3772 /* case WM_QUERYNEWPALETTE:supported according to ControlSpy */
3773 /* case WM_RBUTTONDOWN: supported according to ControlSpy */
3774 /* case WM_RBUTTONUP: supported according to ControlSpy */
3777 return REBAR_SetCursor (infoPtr
, lParam
);
3780 return REBAR_SetFont (infoPtr
, (HFONT
)wParam
);
3783 return REBAR_SetRedraw (infoPtr
, wParam
);
3786 return REBAR_Size (infoPtr
, wParam
, lParam
);
3788 case WM_STYLECHANGED
:
3789 return REBAR_StyleChanged (infoPtr
, wParam
, (LPSTYLESTRUCT
)lParam
);
3791 case WM_THEMECHANGED
:
3792 return theme_changed (infoPtr
);
3794 case WM_SYSCOLORCHANGE
:
3795 COMCTL32_RefreshSysColors();
3798 /* case WM_VKEYTOITEM: supported according to ControlSpy */
3799 /* case WM_WININICHANGE: */
3801 case WM_WINDOWPOSCHANGED
:
3802 return REBAR_WindowPosChanged (infoPtr
, wParam
, lParam
);
3805 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
3806 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
3807 uMsg
, wParam
, lParam
);
3808 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
3814 REBAR_Register (void)
3818 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
3819 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
;
3820 wndClass
.lpfnWndProc
= REBAR_WindowProc
;
3821 wndClass
.cbClsExtra
= 0;
3822 wndClass
.cbWndExtra
= sizeof(REBAR_INFO
*);
3823 wndClass
.hCursor
= 0;
3824 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_BTNFACE
+ 1);
3826 wndClass
.hbrBackground
= CreateSolidBrush(RGB(0,128,0));
3828 wndClass
.lpszClassName
= REBARCLASSNAMEW
;
3830 RegisterClassW (&wndClass
);
3832 mindragx
= GetSystemMetrics (SM_CXDRAG
);
3833 mindragy
= GetSystemMetrics (SM_CYDRAG
);
3839 REBAR_Unregister (void)
3841 UnregisterClassW (REBARCLASSNAMEW
, NULL
);