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.
50 * - WM_QUERYNEWPALETTE
57 * - NM_RELEASEDCAPTURE
63 * Native uses (on each draw!!) SM_CYBORDER (or SM_CXBORDER for CCS_VERT)
64 * to set the size of the separator width (the value SEP_WIDTH_SIZE
65 * in here). Should be fixed!!
69 * Testing: set to 1 to make background brush *always* green
74 * 3. REBAR_MoveChildWindows should have a loop because more than
75 * one pass (together with the RBN_CHILDSIZEs) is made on
76 * at least RB_INSERTBAND
81 WINE_DEFAULT_DEBUG_CHANNEL(rebar
);
91 UINT cxMinChild
; /* valid if _CHILDSIZE */
92 UINT cyMinChild
; /* valid if _CHILDSIZE */
93 UINT cx
; /* valid if _SIZE */
96 UINT cyChild
; /* valid if _CHILDSIZE */
97 UINT cyMaxChild
; /* valid if _CHILDSIZE */
98 UINT cyIntegral
; /* valid if _CHILDSIZE */
103 INT cxEffective
; /* current cx for band */
104 UINT cyHeader
; /* the height of the header */
105 UINT cxMinBand
; /* minimum cx for band */
106 UINT cyMinBand
; /* minimum cy for band */
108 UINT cyRowSoFar
; /* for RBS_VARHEIGHT - the height of the row if it would break on this band (set by _Layout) */
109 INT iRow
; /* zero-based index of the row this band assigned to */
110 UINT fStatus
; /* status flags, reset only by _Validate */
111 UINT fDraw
; /* drawing flags, reset only by _Layout */
112 UINT uCDret
; /* last return from NM_CUSTOMDRAW */
113 RECT rcBand
; /* calculated band rectangle - coordinates swapped for CCS_VERT */
114 RECT rcGripper
; /* calculated gripper rectangle */
115 RECT rcCapImage
; /* calculated caption image rectangle */
116 RECT rcCapText
; /* calculated caption text rectangle */
117 RECT rcChild
; /* calculated child rectangle */
118 RECT rcChevron
; /* calculated chevron rectangle */
124 /* has a value of: 0, CCS_TOP, CCS_NOMOVEY, CCS_BOTTOM */
125 #define CCS_LAYOUT_MASK 0x3
128 #define HAS_GRIPPER 0x00000001
129 #define HAS_IMAGE 0x00000002
130 #define HAS_TEXT 0x00000004
133 #define DRAW_GRIPPER 0x00000001
134 #define DRAW_IMAGE 0x00000002
135 #define DRAW_TEXT 0x00000004
136 #define DRAW_CHEVRONHOT 0x00000040
137 #define DRAW_CHEVRONPUSHED 0x00000080
138 #define NTF_INVALIDATE 0x01000000
142 COLORREF clrBk
; /* background color */
143 COLORREF clrText
; /* text color */
144 COLORREF clrBtnText
; /* system color for BTNTEXT */
145 COLORREF clrBtnFace
; /* system color for BTNFACE */
146 HIMAGELIST himl
; /* handle to imagelist */
147 UINT uNumBands
; /* # of bands in rebar (first=0, last=uNumBands-1 */
148 UINT uNumRows
; /* # of rows of bands (first=1, last=uNumRows */
149 HWND hwndSelf
; /* handle of REBAR window itself */
150 HWND hwndToolTip
; /* handle to the tool tip control */
151 HWND hwndNotify
; /* notification window (parent) */
153 HFONT hFont
; /* handle to the rebar's font */
154 SIZE imageSize
; /* image size (image list) */
155 DWORD dwStyle
; /* window style */
156 DWORD orgStyle
; /* original style (dwStyle may change) */
157 SIZE calcSize
; /* calculated rebar size - coordinates swapped for CCS_VERT */
158 BOOL bUnicode
; /* TRUE if parent wants notify in W format */
159 BOOL DoRedraw
; /* TRUE to actually draw bands */
160 UINT fStatus
; /* Status flags (see below) */
161 HCURSOR hcurArrow
; /* handle to the arrow cursor */
162 HCURSOR hcurHorz
; /* handle to the EW cursor */
163 HCURSOR hcurVert
; /* handle to the NS cursor */
164 HCURSOR hcurDrag
; /* handle to the drag cursor */
165 INT iVersion
; /* version number */
166 POINT dragStart
; /* x,y of button down */
167 POINT dragNow
; /* x,y of this MouseMove */
168 INT iOldBand
; /* last band that had the mouse cursor over it */
169 INT ihitoffset
; /* offset of hotspot from gripper.left */
170 INT ichevronhotBand
; /* last band that had a hot chevron */
171 INT iGrabbedBand
;/* band number of band whose gripper was grabbed */
173 HDPA bands
; /* pointer to the array of rebar bands */
177 #define BEGIN_DRAG_ISSUED 0x00000001
178 #define SELF_RESIZE 0x00000002
179 #define BAND_NEEDS_REDRAW 0x00000020
181 /* used by Windows to mark that the header size has been set by the user and shouldn't be changed */
182 #define RBBS_UNDOC_FIXEDHEADER 0x40000000
184 /* ---- REBAR layout constants. Mostly determined by ---- */
185 /* ---- experiment on WIN 98. ---- */
187 /* Width (or height) of separators between bands (either horz. or */
188 /* vert.). True only if RBS_BANDBORDERS is set */
189 #define SEP_WIDTH_SIZE 2
190 #define SEP_WIDTH ((infoPtr->dwStyle & RBS_BANDBORDERS) ? SEP_WIDTH_SIZE : 0)
192 /* Blank (background color) space between Gripper (if present) */
193 /* and next item (image, text, or window). Always present */
194 #define REBAR_ALWAYS_SPACE 4
196 /* Blank (background color) space after Image (if present). */
197 #define REBAR_POST_IMAGE 2
199 /* Blank (background color) space after Text (if present). */
200 #define REBAR_POST_TEXT 4
202 /* Height of vertical gripper in a CCS_VERT rebar. */
203 #define GRIPPER_HEIGHT 16
205 /* Blank (background color) space before Gripper (if present). */
206 #define REBAR_PRE_GRIPPER 2
208 /* Width (of normal vertical gripper) or height (of horz. gripper) */
210 #define GRIPPER_WIDTH 3
212 /* Width of the chevron button if present */
213 #define CHEVRON_WIDTH 10
215 /* the gap between the child and the next band */
216 #define REBAR_POST_CHILD 4
218 /* Height of divider for Rebar if not disabled (CCS_NODIVIDER) */
219 /* either top or bottom */
220 #define REBAR_DIVIDER 2
222 /* height of a rebar without a child */
223 #define REBAR_NO_CHILD_HEIGHT 4
225 /* minimum vertical height of a normal bar */
226 /* or minimum width of a CCS_VERT bar - from experiment on Win2k */
227 #define REBAR_MINSIZE 23
229 /* This is the increment that is used over the band height */
230 #define REBARSPACE(a) ((a->fStyle & RBBS_CHILDEDGE) ? 2*REBAR_DIVIDER : 0)
232 /* ---- End of REBAR layout constants. ---- */
234 #define RB_GETBANDINFO_OLD (WM_USER+5) /* obsoleted after IE3, but we have to support it anyway */
236 /* The following define determines if a given band is hidden */
237 #define HIDDENBAND(a) (((a)->fStyle & RBBS_HIDDEN) || \
238 ((infoPtr->dwStyle & CCS_VERT) && \
239 ((a)->fStyle & RBBS_NOVERT)))
241 #define REBAR_GetInfoPtr(wndPtr) ((REBAR_INFO *)GetWindowLongPtrW (hwnd, 0))
243 static LRESULT
REBAR_NotifyFormat(REBAR_INFO
*infoPtr
, LPARAM lParam
);
244 static void REBAR_AutoSize(REBAR_INFO
*infoPtr
, BOOL needsLayout
);
246 /* no index check here */
247 static inline REBAR_BAND
* REBAR_GetBand(const REBAR_INFO
*infoPtr
, INT i
)
249 assert(i
>= 0 && i
< infoPtr
->uNumBands
);
250 return DPA_GetPtr(infoPtr
->bands
, i
);
253 /* "constant values" retrieved when DLL was initialized */
254 /* FIXME we do this when the classes are registered. */
255 static UINT mindragx
= 0;
256 static UINT mindragy
= 0;
258 static const char * const band_stylename
[] = {
259 "RBBS_BREAK", /* 0001 */
260 "RBBS_FIXEDSIZE", /* 0002 */
261 "RBBS_CHILDEDGE", /* 0004 */
262 "RBBS_HIDDEN", /* 0008 */
263 "RBBS_NOVERT", /* 0010 */
264 "RBBS_FIXEDBMP", /* 0020 */
265 "RBBS_VARIABLEHEIGHT", /* 0040 */
266 "RBBS_GRIPPERALWAYS", /* 0080 */
267 "RBBS_NOGRIPPER", /* 0100 */
270 static const char * const band_maskname
[] = {
271 "RBBIM_STYLE", /* 0x00000001 */
272 "RBBIM_COLORS", /* 0x00000002 */
273 "RBBIM_TEXT", /* 0x00000004 */
274 "RBBIM_IMAGE", /* 0x00000008 */
275 "RBBIM_CHILD", /* 0x00000010 */
276 "RBBIM_CHILDSIZE", /* 0x00000020 */
277 "RBBIM_SIZE", /* 0x00000040 */
278 "RBBIM_BACKGROUND", /* 0x00000080 */
279 "RBBIM_ID", /* 0x00000100 */
280 "RBBIM_IDEALSIZE", /* 0x00000200 */
281 "RBBIM_LPARAM", /* 0x00000400 */
282 "RBBIM_HEADERSIZE", /* 0x00000800 */
286 static CHAR line
[200];
288 static const WCHAR themeClass
[] = { 'R','e','b','a','r',0 };
291 REBAR_FmtStyle( UINT style
)
296 while (band_stylename
[i
]) {
297 if (style
& (1<<i
)) {
298 if (*line
!= 0) strcat(line
, " | ");
299 strcat(line
, band_stylename
[i
]);
308 REBAR_FmtMask( UINT mask
)
313 while (band_maskname
[i
]) {
315 if (*line
!= 0) strcat(line
, " | ");
316 strcat(line
, band_maskname
[i
]);
325 REBAR_DumpBandInfo(const REBARBANDINFOW
*pB
)
327 if( !TRACE_ON(rebar
) ) return;
328 TRACE("band info: ");
329 if (pB
->fMask
& RBBIM_ID
)
330 TRACE("ID=%u, ", pB
->wID
);
331 TRACE("size=%u, child=%p", pB
->cbSize
, pB
->hwndChild
);
332 if (pB
->fMask
& RBBIM_COLORS
)
333 TRACE(", clrF=0x%06x, clrB=0x%06x", pB
->clrFore
, pB
->clrBack
);
336 TRACE("band info: mask=0x%08x (%s)\n", pB
->fMask
, REBAR_FmtMask(pB
->fMask
));
337 if (pB
->fMask
& RBBIM_STYLE
)
338 TRACE("band info: style=0x%08x (%s)\n", pB
->fStyle
, REBAR_FmtStyle(pB
->fStyle
));
339 if (pB
->fMask
& (RBBIM_SIZE
| RBBIM_IDEALSIZE
| RBBIM_HEADERSIZE
| RBBIM_LPARAM
)) {
341 if (pB
->fMask
& RBBIM_SIZE
)
342 TRACE(" cx=%u", pB
->cx
);
343 if (pB
->fMask
& RBBIM_IDEALSIZE
)
344 TRACE(" xIdeal=%u", pB
->cxIdeal
);
345 if (pB
->fMask
& RBBIM_HEADERSIZE
)
346 TRACE(" xHeader=%u", pB
->cxHeader
);
347 if (pB
->fMask
& RBBIM_LPARAM
)
348 TRACE(" lParam=0x%08lx", pB
->lParam
);
351 if (pB
->fMask
& RBBIM_CHILDSIZE
)
352 TRACE("band info: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
354 pB
->cyMinChild
, pB
->cyChild
, pB
->cyMaxChild
, pB
->cyIntegral
);
358 REBAR_DumpBand (const REBAR_INFO
*iP
)
363 if(! TRACE_ON(rebar
) ) return;
365 TRACE("hwnd=%p: color=%08x/%08x, bands=%u, rows=%u, cSize=%d,%d\n",
366 iP
->hwndSelf
, iP
->clrText
, iP
->clrBk
, iP
->uNumBands
, iP
->uNumRows
,
367 iP
->calcSize
.cx
, iP
->calcSize
.cy
);
368 TRACE("hwnd=%p: flags=%08x, dragStart=%d,%d, dragNow=%d,%d, iGrabbedBand=%d\n",
369 iP
->hwndSelf
, iP
->fStatus
, iP
->dragStart
.x
, iP
->dragStart
.y
,
370 iP
->dragNow
.x
, iP
->dragNow
.y
,
372 TRACE("hwnd=%p: style=%08x, notify in Unicode=%s, redraw=%s\n",
373 iP
->hwndSelf
, iP
->dwStyle
, (iP
->bUnicode
)?"TRUE":"FALSE",
374 (iP
->DoRedraw
)?"TRUE":"FALSE");
375 for (i
= 0; i
< iP
->uNumBands
; i
++) {
376 pB
= REBAR_GetBand(iP
, i
);
377 TRACE("band # %u:", i
);
378 if (pB
->fMask
& RBBIM_ID
)
379 TRACE(" ID=%u", pB
->wID
);
380 if (pB
->fMask
& RBBIM_CHILD
)
381 TRACE(" child=%p", pB
->hwndChild
);
382 if (pB
->fMask
& RBBIM_COLORS
)
383 TRACE(" clrF=0x%06x clrB=0x%06x", pB
->clrFore
, pB
->clrBack
);
385 TRACE("band # %u: mask=0x%08x (%s)\n", i
, pB
->fMask
, REBAR_FmtMask(pB
->fMask
));
386 if (pB
->fMask
& RBBIM_STYLE
)
387 TRACE("band # %u: style=0x%08x (%s)\n",
388 i
, pB
->fStyle
, REBAR_FmtStyle(pB
->fStyle
));
389 TRACE("band # %u: xHeader=%u",
391 if (pB
->fMask
& (RBBIM_SIZE
| RBBIM_IDEALSIZE
| RBBIM_LPARAM
)) {
392 if (pB
->fMask
& RBBIM_SIZE
)
393 TRACE(" cx=%u", pB
->cx
);
394 if (pB
->fMask
& RBBIM_IDEALSIZE
)
395 TRACE(" xIdeal=%u", pB
->cxIdeal
);
396 if (pB
->fMask
& RBBIM_LPARAM
)
397 TRACE(" lParam=0x%08lx", pB
->lParam
);
401 TRACE("band # %u: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
402 i
, pB
->cxMinChild
, pB
->cyMinChild
, pB
->cyChild
, pB
->cyMaxChild
, pB
->cyIntegral
);
403 if (pB
->fMask
& RBBIM_TEXT
)
404 TRACE("band # %u: text=%s\n",
405 i
, (pB
->lpText
) ? debugstr_w(pB
->lpText
) : "(null)");
406 TRACE("band # %u: cxMinBand=%u, cxEffective=%u, cyMinBand=%u\n",
407 i
, pB
->cxMinBand
, pB
->cxEffective
, pB
->cyMinBand
);
408 TRACE("band # %u: fStatus=%08x, fDraw=%08x, Band=(%s), Grip=(%s)\n",
409 i
, pB
->fStatus
, pB
->fDraw
, wine_dbgstr_rect(&pB
->rcBand
),
410 wine_dbgstr_rect(&pB
->rcGripper
));
411 TRACE("band # %u: Img=(%s), Txt=(%s), Child=(%s)\n",
412 i
, wine_dbgstr_rect(&pB
->rcCapImage
),
413 wine_dbgstr_rect(&pB
->rcCapText
), wine_dbgstr_rect(&pB
->rcChild
));
418 /* dest can be equal to src */
419 static void translate_rect(const REBAR_INFO
*infoPtr
, RECT
*dest
, const RECT
*src
)
421 if (infoPtr
->dwStyle
& CCS_VERT
) {
424 dest
->left
= src
->top
;
428 dest
->right
= src
->bottom
;
435 static int get_rect_cx(const REBAR_INFO
*infoPtr
, const RECT
*lpRect
)
437 if (infoPtr
->dwStyle
& CCS_VERT
)
438 return lpRect
->bottom
- lpRect
->top
;
439 return lpRect
->right
- lpRect
->left
;
442 static int get_rect_cy(const REBAR_INFO
*infoPtr
, const RECT
*lpRect
)
444 if (infoPtr
->dwStyle
& CCS_VERT
)
445 return lpRect
->right
- lpRect
->left
;
446 return lpRect
->bottom
- lpRect
->top
;
449 static int round_child_height(const REBAR_BAND
*lpBand
, int cyHeight
)
452 if (lpBand
->cyIntegral
== 0)
454 cy
= max(cyHeight
- (int)lpBand
->cyMinChild
, 0);
455 cy
= lpBand
->cyMinChild
+ (cy
/lpBand
->cyIntegral
) * lpBand
->cyIntegral
;
456 cy
= min(cy
, lpBand
->cyMaxChild
);
460 static void update_min_band_height(const REBAR_INFO
*infoPtr
, REBAR_BAND
*lpBand
)
462 lpBand
->cyMinBand
= max(lpBand
->cyHeader
,
463 (lpBand
->hwndChild
? lpBand
->cyChild
+ REBARSPACE(lpBand
) : REBAR_NO_CHILD_HEIGHT
));
467 REBAR_DrawChevron (HDC hdc
, INT left
, INT top
, INT colorRef
)
472 if (!(hPen
= CreatePen( PS_SOLID
, 1, GetSysColor( colorRef
)))) return;
473 hOldPen
= SelectObject ( hdc
, hPen
);
476 MoveToEx (hdc
, x
, y
, NULL
);
477 LineTo (hdc
, x
+5, y
++); x
++;
478 MoveToEx (hdc
, x
, y
, NULL
);
479 LineTo (hdc
, x
+3, y
++); x
++;
480 MoveToEx (hdc
, x
, y
, NULL
);
481 LineTo (hdc
, x
+1, y
);
482 SelectObject( hdc
, hOldPen
);
483 DeleteObject( hPen
);
487 REBAR_GetNotifyParent (const REBAR_INFO
*infoPtr
)
491 parent
= infoPtr
->hwndNotify
;
493 parent
= GetParent (infoPtr
->hwndSelf
);
494 owner
= GetWindow (infoPtr
->hwndSelf
, GW_OWNER
);
495 if (owner
) parent
= owner
;
502 REBAR_Notify (NMHDR
*nmhdr
, const REBAR_INFO
*infoPtr
, UINT code
)
506 parent
= REBAR_GetNotifyParent (infoPtr
);
507 nmhdr
->idFrom
= GetDlgCtrlID (infoPtr
->hwndSelf
);
508 nmhdr
->hwndFrom
= infoPtr
->hwndSelf
;
511 TRACE("window %p, code=%08x, via %s\n", parent
, code
, (infoPtr
->bUnicode
)?"Unicode":"ANSI");
513 return SendMessageW(parent
, WM_NOTIFY
, nmhdr
->idFrom
, (LPARAM
)nmhdr
);
517 REBAR_Notify_NMREBAR (const REBAR_INFO
*infoPtr
, UINT uBand
, UINT code
)
519 NMREBAR notify_rebar
;
521 notify_rebar
.dwMask
= 0;
523 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, uBand
);
525 if (lpBand
->fMask
& RBBIM_ID
) {
526 notify_rebar
.dwMask
|= RBNM_ID
;
527 notify_rebar
.wID
= lpBand
->wID
;
529 if (lpBand
->fMask
& RBBIM_LPARAM
) {
530 notify_rebar
.dwMask
|= RBNM_LPARAM
;
531 notify_rebar
.lParam
= lpBand
->lParam
;
533 if (lpBand
->fMask
& RBBIM_STYLE
) {
534 notify_rebar
.dwMask
|= RBNM_STYLE
;
535 notify_rebar
.fStyle
= lpBand
->fStyle
;
538 notify_rebar
.uBand
= uBand
;
539 return REBAR_Notify ((NMHDR
*)¬ify_rebar
, infoPtr
, code
);
543 REBAR_DrawBand (HDC hdc
, const REBAR_INFO
*infoPtr
, REBAR_BAND
*lpBand
)
548 HTHEME theme
= GetWindowTheme (infoPtr
->hwndSelf
);
551 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
553 if (lpBand
->fDraw
& DRAW_TEXT
) {
554 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
555 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
558 /* should test for CDRF_NOTIFYITEMDRAW here */
559 nmcd
.dwDrawStage
= CDDS_ITEMPREPAINT
;
562 nmcd
.rc
.right
= lpBand
->rcCapText
.right
;
563 nmcd
.rc
.bottom
= lpBand
->rcCapText
.bottom
;
564 nmcd
.dwItemSpec
= lpBand
->wID
;
566 nmcd
.lItemlParam
= lpBand
->lParam
;
567 lpBand
->uCDret
= REBAR_Notify ((NMHDR
*)&nmcd
, infoPtr
, NM_CUSTOMDRAW
);
568 if (lpBand
->uCDret
== CDRF_SKIPDEFAULT
) {
569 if (oldBkMode
!= TRANSPARENT
)
570 SetBkMode (hdc
, oldBkMode
);
571 SelectObject (hdc
, hOldFont
);
576 if (lpBand
->fDraw
& DRAW_GRIPPER
)
580 RECT rcGripper
= lpBand
->rcGripper
;
581 int partId
= (infoPtr
->dwStyle
& CCS_VERT
) ? RP_GRIPPERVERT
: RP_GRIPPER
;
582 GetThemeBackgroundExtent (theme
, hdc
, partId
, 0, &rcGripper
, &rcGripper
);
583 OffsetRect (&rcGripper
, lpBand
->rcGripper
.left
- rcGripper
.left
,
584 lpBand
->rcGripper
.top
- rcGripper
.top
);
585 DrawThemeBackground (theme
, hdc
, partId
, 0, &rcGripper
, NULL
);
588 DrawEdge (hdc
, &lpBand
->rcGripper
, BDR_RAISEDINNER
, BF_RECT
| BF_MIDDLE
);
591 /* draw caption image */
592 if (lpBand
->fDraw
& DRAW_IMAGE
) {
596 pt
.y
= (lpBand
->rcCapImage
.bottom
+ lpBand
->rcCapImage
.top
- infoPtr
->imageSize
.cy
)/2;
597 pt
.x
= (lpBand
->rcCapImage
.right
+ lpBand
->rcCapImage
.left
- infoPtr
->imageSize
.cx
)/2;
599 ImageList_Draw (infoPtr
->himl
, lpBand
->iImage
, hdc
,
604 /* draw caption text */
605 if (lpBand
->fDraw
& DRAW_TEXT
) {
606 /* need to handle CDRF_NEWFONT here */
607 INT oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
608 COLORREF oldcolor
= CLR_NONE
;
610 if (lpBand
->clrFore
!= CLR_NONE
) {
611 new = (lpBand
->clrFore
== CLR_DEFAULT
) ? infoPtr
->clrBtnText
:
613 oldcolor
= SetTextColor (hdc
, new);
615 DrawTextW (hdc
, lpBand
->lpText
, -1, &lpBand
->rcCapText
,
616 DT_CENTER
| DT_VCENTER
| DT_SINGLELINE
);
617 if (oldBkMode
!= TRANSPARENT
)
618 SetBkMode (hdc
, oldBkMode
);
619 if (lpBand
->clrFore
!= CLR_NONE
)
620 SetTextColor (hdc
, oldcolor
);
621 SelectObject (hdc
, hOldFont
);
624 if (!IsRectEmpty(&lpBand
->rcChevron
))
629 if (lpBand
->fDraw
& DRAW_CHEVRONPUSHED
)
630 stateId
= CHEVS_PRESSED
;
631 else if (lpBand
->fDraw
& DRAW_CHEVRONHOT
)
634 stateId
= CHEVS_NORMAL
;
635 DrawThemeBackground (theme
, hdc
, RP_CHEVRON
, stateId
, &lpBand
->rcChevron
, NULL
);
639 if (lpBand
->fDraw
& DRAW_CHEVRONPUSHED
)
641 DrawEdge(hdc
, &lpBand
->rcChevron
, BDR_SUNKENOUTER
, BF_RECT
| BF_MIDDLE
);
642 REBAR_DrawChevron(hdc
, lpBand
->rcChevron
.left
+1, lpBand
->rcChevron
.top
+ 11, COLOR_WINDOWFRAME
);
644 else if (lpBand
->fDraw
& DRAW_CHEVRONHOT
)
646 DrawEdge(hdc
, &lpBand
->rcChevron
, BDR_RAISEDINNER
, BF_RECT
| BF_MIDDLE
);
647 REBAR_DrawChevron(hdc
, lpBand
->rcChevron
.left
, lpBand
->rcChevron
.top
+ 10, COLOR_WINDOWFRAME
);
650 REBAR_DrawChevron(hdc
, lpBand
->rcChevron
.left
, lpBand
->rcChevron
.top
+ 10, COLOR_WINDOWFRAME
);
654 if (lpBand
->uCDret
== (CDRF_NOTIFYPOSTPAINT
| CDRF_NOTIFYITEMDRAW
)) {
655 nmcd
.dwDrawStage
= CDDS_ITEMPOSTPAINT
;
658 nmcd
.rc
.right
= lpBand
->rcCapText
.right
;
659 nmcd
.rc
.bottom
= lpBand
->rcCapText
.bottom
;
660 nmcd
.dwItemSpec
= lpBand
->wID
;
662 nmcd
.lItemlParam
= lpBand
->lParam
;
663 lpBand
->uCDret
= REBAR_Notify ((NMHDR
*)&nmcd
, infoPtr
, NM_CUSTOMDRAW
);
669 REBAR_Refresh (const REBAR_INFO
*infoPtr
, HDC hdc
)
674 if (!infoPtr
->DoRedraw
) return;
676 for (i
= 0; i
< infoPtr
->uNumBands
; i
++) {
677 lpBand
= REBAR_GetBand(infoPtr
, i
);
679 if (HIDDENBAND(lpBand
)) continue;
681 /* now draw the band */
682 TRACE("[%p] drawing band %i, flags=%08x\n",
683 infoPtr
->hwndSelf
, i
, lpBand
->fDraw
);
684 REBAR_DrawBand (hdc
, infoPtr
, lpBand
);
690 REBAR_CalcHorzBand (const REBAR_INFO
*infoPtr
, UINT rstart
, UINT rend
)
691 /* Function: this routine initializes all the rectangles in */
692 /* each band in a row to fit in the adjusted rcBand rect. */
693 /* *** Supports only Horizontal bars. *** */
699 for(i
=rstart
; i
<rend
; i
++){
700 lpBand
= REBAR_GetBand(infoPtr
, i
);
701 if (HIDDENBAND(lpBand
)) {
702 SetRect (&lpBand
->rcChild
,
703 lpBand
->rcBand
.right
, lpBand
->rcBand
.top
,
704 lpBand
->rcBand
.right
, lpBand
->rcBand
.bottom
);
708 /* set initial gripper rectangle */
709 SetRect (&lpBand
->rcGripper
, lpBand
->rcBand
.left
, lpBand
->rcBand
.top
,
710 lpBand
->rcBand
.left
, lpBand
->rcBand
.bottom
);
712 /* calculate gripper rectangle */
713 if ( lpBand
->fStatus
& HAS_GRIPPER
) {
714 lpBand
->fDraw
|= DRAW_GRIPPER
;
715 lpBand
->rcGripper
.left
+= REBAR_PRE_GRIPPER
;
716 lpBand
->rcGripper
.right
= lpBand
->rcGripper
.left
+ GRIPPER_WIDTH
;
717 lpBand
->rcGripper
.top
+= 2;
718 lpBand
->rcGripper
.bottom
-= 2;
720 SetRect (&lpBand
->rcCapImage
,
721 lpBand
->rcGripper
.right
+REBAR_ALWAYS_SPACE
, lpBand
->rcBand
.top
,
722 lpBand
->rcGripper
.right
+REBAR_ALWAYS_SPACE
, lpBand
->rcBand
.bottom
);
724 else { /* no gripper will be drawn */
726 if (lpBand
->fStatus
& (HAS_IMAGE
| HAS_TEXT
))
727 /* if no gripper but either image or text, then leave space */
728 xoff
= REBAR_ALWAYS_SPACE
;
729 SetRect (&lpBand
->rcCapImage
,
730 lpBand
->rcBand
.left
+xoff
, lpBand
->rcBand
.top
,
731 lpBand
->rcBand
.left
+xoff
, lpBand
->rcBand
.bottom
);
734 /* image is visible */
735 if (lpBand
->fStatus
& HAS_IMAGE
) {
736 lpBand
->fDraw
|= DRAW_IMAGE
;
737 lpBand
->rcCapImage
.right
+= infoPtr
->imageSize
.cx
;
738 lpBand
->rcCapImage
.bottom
= lpBand
->rcCapImage
.top
+ infoPtr
->imageSize
.cy
;
740 /* set initial caption text rectangle */
741 SetRect (&lpBand
->rcCapText
,
742 lpBand
->rcCapImage
.right
+REBAR_POST_IMAGE
, lpBand
->rcBand
.top
+1,
743 lpBand
->rcBand
.left
+lpBand
->cxHeader
, lpBand
->rcBand
.bottom
-1);
746 /* set initial caption text rectangle */
747 SetRect (&lpBand
->rcCapText
, lpBand
->rcCapImage
.right
, lpBand
->rcBand
.top
+1,
748 lpBand
->rcBand
.left
+lpBand
->cxHeader
, lpBand
->rcBand
.bottom
-1);
751 /* text is visible */
752 if ((lpBand
->fStatus
& HAS_TEXT
) && !(lpBand
->fStyle
& RBBS_HIDETITLE
)) {
753 lpBand
->fDraw
|= DRAW_TEXT
;
754 lpBand
->rcCapText
.right
= max(lpBand
->rcCapText
.left
,
755 lpBand
->rcCapText
.right
-REBAR_POST_TEXT
);
758 /* set initial child window rectangle if there is a child */
759 if (lpBand
->hwndChild
) {
761 lpBand
->rcChild
.left
= lpBand
->rcBand
.left
+ lpBand
->cxHeader
;
762 lpBand
->rcChild
.right
= lpBand
->rcBand
.right
- REBAR_POST_CHILD
;
764 if (lpBand
->cyChild
> 0) {
766 UINT yoff
= (lpBand
->rcBand
.bottom
- lpBand
->rcBand
.top
- lpBand
->cyChild
) / 2;
768 /* center child if height is known */
769 lpBand
->rcChild
.top
= lpBand
->rcBand
.top
+ yoff
;
770 lpBand
->rcChild
.bottom
= lpBand
->rcBand
.top
+ yoff
+ lpBand
->cyChild
;
773 lpBand
->rcChild
.top
= lpBand
->rcBand
.top
;
774 lpBand
->rcChild
.bottom
= lpBand
->rcBand
.bottom
;
777 if ((lpBand
->fStyle
& RBBS_USECHEVRON
) && (lpBand
->rcChild
.right
- lpBand
->rcChild
.left
< lpBand
->cxIdeal
))
779 lpBand
->rcChild
.right
-= CHEVRON_WIDTH
;
780 SetRect(&lpBand
->rcChevron
, lpBand
->rcChild
.right
,
781 lpBand
->rcChild
.top
, lpBand
->rcChild
.right
+ CHEVRON_WIDTH
,
782 lpBand
->rcChild
.bottom
);
786 SetRect (&lpBand
->rcChild
,
787 lpBand
->rcBand
.left
+lpBand
->cxHeader
, lpBand
->rcBand
.top
,
788 lpBand
->rcBand
.right
, lpBand
->rcBand
.bottom
);
791 /* flag if notify required and invalidate rectangle */
792 if (lpBand
->fDraw
& NTF_INVALIDATE
) {
793 TRACE("invalidating (%d,%d)-(%d,%d)\n",
796 lpBand
->rcBand
.right
+ SEP_WIDTH
,
797 lpBand
->rcBand
.bottom
+ SEP_WIDTH
);
798 lpBand
->fDraw
&= ~NTF_INVALIDATE
;
799 work
= lpBand
->rcBand
;
800 work
.right
+= SEP_WIDTH
;
801 work
.bottom
+= SEP_WIDTH
;
802 InvalidateRect(infoPtr
->hwndSelf
, &work
, TRUE
);
803 if (lpBand
->hwndChild
) InvalidateRect(lpBand
->hwndChild
, NULL
, TRUE
);
812 REBAR_CalcVertBand (const REBAR_INFO
*infoPtr
, UINT rstart
, UINT rend
)
813 /* Function: this routine initializes all the rectangles in */
814 /* each band in a row to fit in the adjusted rcBand rect. */
815 /* *** Supports only Vertical bars. *** */
821 for(i
=rstart
; i
<rend
; i
++){
823 lpBand
= REBAR_GetBand(infoPtr
, i
);
824 if (HIDDENBAND(lpBand
)) continue;
826 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
828 /* set initial gripper rectangle */
829 SetRect (&lpBand
->rcGripper
, rcBand
.left
, rcBand
.top
, rcBand
.right
, rcBand
.top
);
831 /* calculate gripper rectangle */
832 if (lpBand
->fStatus
& HAS_GRIPPER
) {
833 lpBand
->fDraw
|= DRAW_GRIPPER
;
835 if (infoPtr
->dwStyle
& RBS_VERTICALGRIPPER
) {
836 /* vertical gripper */
837 lpBand
->rcGripper
.left
+= 3;
838 lpBand
->rcGripper
.right
= lpBand
->rcGripper
.left
+ GRIPPER_WIDTH
;
839 lpBand
->rcGripper
.top
+= REBAR_PRE_GRIPPER
;
840 lpBand
->rcGripper
.bottom
= lpBand
->rcGripper
.top
+ GRIPPER_HEIGHT
;
842 /* initialize Caption image rectangle */
843 SetRect (&lpBand
->rcCapImage
, rcBand
.left
,
844 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
,
846 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
);
849 /* horizontal gripper */
850 lpBand
->rcGripper
.left
+= 2;
851 lpBand
->rcGripper
.right
-= 2;
852 lpBand
->rcGripper
.top
+= REBAR_PRE_GRIPPER
;
853 lpBand
->rcGripper
.bottom
= lpBand
->rcGripper
.top
+ GRIPPER_WIDTH
;
855 /* initialize Caption image rectangle */
856 SetRect (&lpBand
->rcCapImage
, rcBand
.left
,
857 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
,
859 lpBand
->rcGripper
.bottom
+ REBAR_ALWAYS_SPACE
);
862 else { /* no gripper will be drawn */
864 if (lpBand
->fStatus
& (HAS_IMAGE
| HAS_TEXT
))
865 /* if no gripper but either image or text, then leave space */
866 xoff
= REBAR_ALWAYS_SPACE
;
867 /* initialize Caption image rectangle */
868 SetRect (&lpBand
->rcCapImage
,
869 rcBand
.left
, rcBand
.top
+xoff
,
870 rcBand
.right
, rcBand
.top
+xoff
);
873 /* image is visible */
874 if (lpBand
->fStatus
& HAS_IMAGE
) {
875 lpBand
->fDraw
|= DRAW_IMAGE
;
877 lpBand
->rcCapImage
.right
= lpBand
->rcCapImage
.left
+ infoPtr
->imageSize
.cx
;
878 lpBand
->rcCapImage
.bottom
+= infoPtr
->imageSize
.cy
;
880 /* set initial caption text rectangle */
881 SetRect (&lpBand
->rcCapText
,
882 rcBand
.left
, lpBand
->rcCapImage
.bottom
+REBAR_POST_IMAGE
,
883 rcBand
.right
, rcBand
.top
+lpBand
->cxHeader
);
886 /* set initial caption text rectangle */
887 SetRect (&lpBand
->rcCapText
,
888 rcBand
.left
, lpBand
->rcCapImage
.bottom
,
889 rcBand
.right
, rcBand
.top
+lpBand
->cxHeader
);
892 /* text is visible */
893 if ((lpBand
->fStatus
& HAS_TEXT
) && !(lpBand
->fStyle
& RBBS_HIDETITLE
)) {
894 lpBand
->fDraw
|= DRAW_TEXT
;
895 lpBand
->rcCapText
.bottom
= max(lpBand
->rcCapText
.top
,
896 lpBand
->rcCapText
.bottom
);
899 /* set initial child window rectangle if there is a child */
900 if (lpBand
->hwndChild
) {
901 int cxBand
= rcBand
.right
- rcBand
.left
;
902 xoff
= (cxBand
- lpBand
->cyChild
) / 2;
903 SetRect (&lpBand
->rcChild
,
904 rcBand
.left
+ xoff
, rcBand
.top
+ lpBand
->cxHeader
,
905 rcBand
.left
+ xoff
+ lpBand
->cyChild
, rcBand
.bottom
- REBAR_POST_CHILD
);
908 SetRect (&lpBand
->rcChild
,
909 rcBand
.left
, rcBand
.top
+lpBand
->cxHeader
,
910 rcBand
.right
, rcBand
.bottom
);
913 if (lpBand
->fDraw
& NTF_INVALIDATE
) {
914 TRACE("invalidating (%d,%d)-(%d,%d)\n",
917 rcBand
.right
+ SEP_WIDTH
,
918 rcBand
.bottom
+ SEP_WIDTH
);
919 lpBand
->fDraw
&= ~NTF_INVALIDATE
;
921 work
.bottom
+= SEP_WIDTH
;
922 work
.right
+= SEP_WIDTH
;
923 InvalidateRect(infoPtr
->hwndSelf
, &work
, TRUE
);
924 if (lpBand
->hwndChild
) InvalidateRect(lpBand
->hwndChild
, NULL
, TRUE
);
932 REBAR_ForceResize (REBAR_INFO
*infoPtr
)
933 /* Function: This changes the size of the REBAR window to that */
934 /* calculated by REBAR_Layout. */
936 INT x
, y
, width
, height
;
937 INT xedge
= 0, yedge
= 0;
940 TRACE("new size [%d x %d]\n", infoPtr
->calcSize
.cx
, infoPtr
->calcSize
.cy
);
942 if (infoPtr
->dwStyle
& CCS_NORESIZE
)
945 if (infoPtr
->dwStyle
& WS_BORDER
)
947 xedge
= GetSystemMetrics(SM_CXEDGE
);
948 yedge
= GetSystemMetrics(SM_CYEDGE
);
949 /* swap for CCS_VERT? */
952 /* compute rebar window rect in parent client coordinates */
953 GetWindowRect(infoPtr
->hwndSelf
, &rcSelf
);
954 MapWindowPoints(HWND_DESKTOP
, GetParent(infoPtr
->hwndSelf
), (LPPOINT
)&rcSelf
, 2);
955 translate_rect(infoPtr
, &rcSelf
, &rcSelf
);
957 height
= infoPtr
->calcSize
.cy
+ 2*yedge
;
958 if (!(infoPtr
->dwStyle
& CCS_NOPARENTALIGN
)) {
962 width
= infoPtr
->calcSize
.cx
+ 2*xedge
;
963 y
= 0; /* quiet compiler warning */
964 switch ( infoPtr
->dwStyle
& CCS_LAYOUT_MASK
) {
965 case 0: /* shouldn't happen - see NCCreate */
967 y
= ((infoPtr
->dwStyle
& CCS_NODIVIDER
) ? 0 : REBAR_DIVIDER
) - yedge
;
973 GetClientRect(GetParent(infoPtr
->hwndSelf
), &rcParent
);
974 translate_rect(infoPtr
, &rcParent
, &rcParent
);
975 y
= rcParent
.bottom
- infoPtr
->calcSize
.cy
- yedge
;
981 /* As on Windows if the CCS_NODIVIDER is not present the control will move
982 * 2 pixel down after every layout */
983 y
= rcSelf
.top
+ ((infoPtr
->dwStyle
& CCS_NODIVIDER
) ? 0 : REBAR_DIVIDER
);
984 width
= rcSelf
.right
- rcSelf
.left
;
987 TRACE("hwnd %p, style=%08x, setting at (%d,%d) for (%d,%d)\n",
988 infoPtr
->hwndSelf
, infoPtr
->dwStyle
, x
, y
, width
, height
);
990 /* Set flag to ignore next WM_SIZE message and resize the window */
991 infoPtr
->fStatus
|= SELF_RESIZE
;
992 if ((infoPtr
->dwStyle
& CCS_VERT
) == 0)
993 SetWindowPos(infoPtr
->hwndSelf
, 0, x
, y
, width
, height
, SWP_NOZORDER
);
995 SetWindowPos(infoPtr
->hwndSelf
, 0, y
, x
, height
, width
, SWP_NOZORDER
);
996 infoPtr
->fStatus
&= ~SELF_RESIZE
;
1001 REBAR_MoveChildWindows (const REBAR_INFO
*infoPtr
, UINT start
, UINT endplus
)
1003 static const WCHAR strComboBox
[] = { 'C','o','m','b','o','B','o','x',0 };
1005 WCHAR szClassName
[40];
1007 NMREBARCHILDSIZE rbcz
;
1010 if (!(deferpos
= BeginDeferWindowPos(infoPtr
->uNumBands
)))
1011 ERR("BeginDeferWindowPos returned NULL\n");
1013 for (i
= start
; i
< endplus
; i
++) {
1014 lpBand
= REBAR_GetBand(infoPtr
, i
);
1016 if (HIDDENBAND(lpBand
)) continue;
1017 if (lpBand
->hwndChild
) {
1018 TRACE("hwndChild = %p\n", lpBand
->hwndChild
);
1020 /* Always generate the RBN_CHILDSIZE even if child
1023 rbcz
.wID
= lpBand
->wID
;
1024 rbcz
.rcChild
= lpBand
->rcChild
;
1025 translate_rect(infoPtr
, &rbcz
.rcBand
, &lpBand
->rcBand
);
1026 if (infoPtr
->dwStyle
& CCS_VERT
)
1027 rbcz
.rcBand
.top
+= lpBand
->cxHeader
;
1029 rbcz
.rcBand
.left
+= lpBand
->cxHeader
;
1030 REBAR_Notify ((NMHDR
*)&rbcz
, infoPtr
, RBN_CHILDSIZE
);
1031 if (!EqualRect (&lpBand
->rcChild
, &rbcz
.rcChild
)) {
1032 TRACE("Child rect changed by NOTIFY for band %u\n", i
);
1033 TRACE(" from (%s) to (%s)\n",
1034 wine_dbgstr_rect(&lpBand
->rcChild
),
1035 wine_dbgstr_rect(&rbcz
.rcChild
));
1036 lpBand
->rcChild
= rbcz
.rcChild
; /* *** ??? */
1039 GetClassNameW (lpBand
->hwndChild
, szClassName
, sizeof(szClassName
)/sizeof(szClassName
[0]));
1040 if (!lstrcmpW (szClassName
, strComboBox
) ||
1041 !lstrcmpW (szClassName
, WC_COMBOBOXEXW
)) {
1042 INT nEditHeight
, yPos
;
1045 /* special placement code for combo or comboex box */
1048 /* get size of edit line */
1049 GetWindowRect (lpBand
->hwndChild
, &rc
);
1050 nEditHeight
= rc
.bottom
- rc
.top
;
1051 yPos
= (lpBand
->rcChild
.bottom
+ lpBand
->rcChild
.top
- nEditHeight
)/2;
1053 /* center combo box inside child area */
1054 TRACE("moving child (Combo(Ex)) %p to (%d,%d) for (%d,%d)\n",
1056 lpBand
->rcChild
.left
, yPos
,
1057 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1059 deferpos
= DeferWindowPos (deferpos
, lpBand
->hwndChild
, HWND_TOP
,
1060 lpBand
->rcChild
.left
,
1061 /*lpBand->rcChild.top*/ yPos
,
1062 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1066 ERR("DeferWindowPos returned NULL\n");
1069 TRACE("moving child (Other) %p to (%d,%d) for (%d,%d)\n",
1071 lpBand
->rcChild
.left
, lpBand
->rcChild
.top
,
1072 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1073 lpBand
->rcChild
.bottom
- lpBand
->rcChild
.top
);
1074 deferpos
= DeferWindowPos (deferpos
, lpBand
->hwndChild
, HWND_TOP
,
1075 lpBand
->rcChild
.left
,
1076 lpBand
->rcChild
.top
,
1077 lpBand
->rcChild
.right
- lpBand
->rcChild
.left
,
1078 lpBand
->rcChild
.bottom
- lpBand
->rcChild
.top
,
1081 ERR("DeferWindowPos returned NULL\n");
1085 if (!EndDeferWindowPos(deferpos
))
1086 ERR("EndDeferWindowPos returned NULL\n");
1088 if (infoPtr
->DoRedraw
)
1089 UpdateWindow (infoPtr
->hwndSelf
);
1092 /* Returns the next visible band (the first visible band in [i+1; infoPtr->uNumBands) )
1093 * or infoPtr->uNumBands if none */
1094 static int next_visible(const REBAR_INFO
*infoPtr
, int i
)
1097 for (n
= i
+ 1; n
< infoPtr
->uNumBands
; n
++)
1098 if (!HIDDENBAND(REBAR_GetBand(infoPtr
, n
)))
1103 /* Returns the previous visible band (the last visible band in [0; i) )
1105 static int prev_visible(const REBAR_INFO
*infoPtr
, int i
)
1108 for (n
= i
- 1; n
>= 0; n
--)
1109 if (!HIDDENBAND(REBAR_GetBand(infoPtr
, n
)))
1114 /* Returns the first visible band or infoPtr->uNumBands if none */
1115 static int first_visible(const REBAR_INFO
*infoPtr
)
1117 return next_visible(infoPtr
, -1); /* this works*/
1120 /* Returns the first visible band for the given row (or iBand if none) */
1121 static int get_row_begin_for_band(const REBAR_INFO
*infoPtr
, INT iBand
)
1123 int iLastBand
= iBand
;
1124 int iRow
= REBAR_GetBand(infoPtr
, iBand
)->iRow
;
1125 while ((iBand
= prev_visible(infoPtr
, iBand
)) >= 0) {
1126 if (REBAR_GetBand(infoPtr
, iBand
)->iRow
!= iRow
)
1134 /* Returns the first visible band for the next row (or infoPtr->uNumBands if none) */
1135 static int get_row_end_for_band(const REBAR_INFO
*infoPtr
, INT iBand
)
1137 int iRow
= REBAR_GetBand(infoPtr
, iBand
)->iRow
;
1138 while ((iBand
= next_visible(infoPtr
, iBand
)) < infoPtr
->uNumBands
)
1139 if (REBAR_GetBand(infoPtr
, iBand
)->iRow
!= iRow
)
1144 /* Compute the rcBand.{left,right} from the cxEffective bands widths computed earlier.
1145 * iBeginBand must be visible */
1146 static void REBAR_SetRowRectsX(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
)
1149 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1151 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1152 if (lpBand
->rcBand
.left
!= xPos
|| lpBand
->rcBand
.right
!= xPos
+ lpBand
->cxEffective
) {
1153 lpBand
->fDraw
|= NTF_INVALIDATE
;
1154 TRACE("Setting rect %d to %d,%d\n", i
, xPos
, xPos
+ lpBand
->cxEffective
);
1155 lpBand
->rcBand
.left
= xPos
;
1156 lpBand
->rcBand
.right
= xPos
+ lpBand
->cxEffective
;
1158 xPos
+= lpBand
->cxEffective
+ SEP_WIDTH
;
1162 /* The rationale of this function is probably as follows: if we have some space
1163 * to distribute we want to add it to a band on the right. However we don't want
1164 * to unminimize a minimized band so we search for a band that is big enough.
1165 * For some reason "big enough" is defined as bigger than the minimum size of the
1166 * first band in the row
1168 static REBAR_BAND
*REBAR_FindBandToGrow(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
)
1170 INT cxMinFirstBand
= 0, i
;
1172 cxMinFirstBand
= REBAR_GetBand(infoPtr
, iBeginBand
)->cxMinBand
;
1174 for (i
= prev_visible(infoPtr
, iEndBand
); i
>= iBeginBand
; i
= prev_visible(infoPtr
, i
))
1175 if (REBAR_GetBand(infoPtr
, i
)->cxEffective
> cxMinFirstBand
&&
1176 !(REBAR_GetBand(infoPtr
, i
)->fStyle
& RBBS_FIXEDSIZE
))
1180 for (i
= prev_visible(infoPtr
, iEndBand
); i
>= iBeginBand
; i
= prev_visible(infoPtr
, i
))
1181 if (REBAR_GetBand(infoPtr
, i
)->cxMinBand
== cxMinFirstBand
)
1184 TRACE("Extra space for row [%d..%d) should be added to band %d\n", iBeginBand
, iEndBand
, i
);
1185 return REBAR_GetBand(infoPtr
, i
);
1188 /* Try to shrink the visible bands in [iBeginBand; iEndBand) by cxShrink, starting from the right */
1189 static int REBAR_ShrinkBandsRTL(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
, INT cxShrink
, BOOL bEnforce
)
1194 TRACE("Shrinking bands [%d..%d) by %d, right-to-left\n", iBeginBand
, iEndBand
, cxShrink
);
1195 for (i
= prev_visible(infoPtr
, iEndBand
); i
>= iBeginBand
; i
= prev_visible(infoPtr
, i
))
1197 lpBand
= REBAR_GetBand(infoPtr
, i
);
1199 width
= max(lpBand
->cxEffective
- cxShrink
, (int)lpBand
->cxMinBand
);
1200 cxShrink
-= lpBand
->cxEffective
- width
;
1201 lpBand
->cxEffective
= width
;
1202 if (bEnforce
&& lpBand
->cx
> lpBand
->cxEffective
)
1203 lpBand
->cx
= lpBand
->cxEffective
;
1211 /* Try to shrink the visible bands in [iBeginBand; iEndBand) by cxShrink, starting from the left.
1212 * iBeginBand must be visible */
1213 static int REBAR_ShrinkBandsLTR(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
, INT cxShrink
, BOOL bEnforce
)
1218 TRACE("Shrinking bands [%d..%d) by %d, left-to-right\n", iBeginBand
, iEndBand
, cxShrink
);
1219 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1221 lpBand
= REBAR_GetBand(infoPtr
, i
);
1223 width
= max(lpBand
->cxEffective
- cxShrink
, (int)lpBand
->cxMinBand
);
1224 cxShrink
-= lpBand
->cxEffective
- width
;
1225 lpBand
->cxEffective
= width
;
1227 lpBand
->cx
= lpBand
->cxEffective
;
1234 /* Tries to move a band to a given offset within a row. */
1235 static int REBAR_MoveBandToRowOffset(REBAR_INFO
*infoPtr
, INT iBand
, INT iFirstBand
,
1236 INT iLastBand
, INT xOff
, BOOL reorder
)
1238 REBAR_BAND
*insertBand
= REBAR_GetBand(infoPtr
, iBand
);
1240 const BOOL setBreak
= REBAR_GetBand(infoPtr
, iFirstBand
)->fStyle
& RBBS_BREAK
;
1242 /* Find the band's new position */
1245 /* Used during an LR band reorder drag */
1246 for (i
= iFirstBand
; i
< iLastBand
; i
= next_visible(infoPtr
, i
))
1250 xPos
+= REBAR_GetBand(infoPtr
, i
)->cxEffective
+ SEP_WIDTH
;
1255 /* Used during a UD band insertion drag */
1256 for (i
= iFirstBand
; i
< iLastBand
; i
= next_visible(infoPtr
, i
))
1258 const REBAR_BAND
*band
= REBAR_GetBand(infoPtr
, i
);
1259 if(xPos
+ band
->cxMinBand
/ 2 > xOff
)
1261 xPos
+= band
->cxEffective
+ SEP_WIDTH
;
1265 /* Move the band to its new position */
1266 DPA_DeletePtr(infoPtr
->bands
, iBand
);
1269 DPA_InsertPtr(infoPtr
->bands
, i
, insertBand
);
1271 /* Ensure only the last band has the RBBS_BREAK flag set */
1272 insertBand
->fStyle
&= ~RBBS_BREAK
;
1274 REBAR_GetBand(infoPtr
, iFirstBand
)->fStyle
|= RBBS_BREAK
;
1276 /* Return the currently grabbed band */
1277 if(infoPtr
->iGrabbedBand
== iBand
)
1279 infoPtr
->iGrabbedBand
= i
;
1285 /* Set the heights of the visible bands in [iBeginBand; iEndBand) to the max height. iBeginBand must be visible */
1286 static int REBAR_SetBandsHeight(const REBAR_INFO
*infoPtr
, INT iBeginBand
, INT iEndBand
, INT yStart
)
1291 int row
= REBAR_GetBand(infoPtr
, iBeginBand
)->iRow
;
1293 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1295 lpBand
= REBAR_GetBand(infoPtr
, i
);
1296 lpBand
->cyRowSoFar
= yMaxHeight
;
1297 yMaxHeight
= max(yMaxHeight
, lpBand
->cyMinBand
);
1299 TRACE("Bands [%d; %d) height: %d\n", iBeginBand
, iEndBand
, yMaxHeight
);
1301 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1303 lpBand
= REBAR_GetBand(infoPtr
, i
);
1304 /* we may be called for multiple rows if RBS_VARHEIGHT not set */
1305 if (lpBand
->iRow
!= row
) {
1306 yPos
+= yMaxHeight
+ SEP_WIDTH
;
1310 if (lpBand
->rcBand
.top
!= yPos
|| lpBand
->rcBand
.bottom
!= yPos
+ yMaxHeight
) {
1311 lpBand
->fDraw
|= NTF_INVALIDATE
;
1312 lpBand
->rcBand
.top
= yPos
;
1313 lpBand
->rcBand
.bottom
= yPos
+ yMaxHeight
;
1314 TRACE("Band %d: %s\n", i
, wine_dbgstr_rect(&lpBand
->rcBand
));
1317 return yPos
+ yMaxHeight
;
1320 /* Layout the row [iBeginBand; iEndBand). iBeginBand must be visible */
1321 static void REBAR_LayoutRow(const REBAR_INFO
*infoPtr
, int iBeginBand
, int iEndBand
, int cx
, int *piRow
, int *pyPos
)
1327 TRACE("Adjusting row [%d;%d). Width: %d\n", iBeginBand
, iEndBand
, cx
);
1328 for (i
= iBeginBand
; i
< iEndBand
; i
++)
1329 REBAR_GetBand(infoPtr
, i
)->iRow
= *piRow
;
1331 /* compute the extra space */
1332 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1334 lpBand
= REBAR_GetBand(infoPtr
, i
);
1337 lpBand
->cxEffective
= max(lpBand
->cxMinBand
, lpBand
->cx
);
1338 width
+= lpBand
->cxEffective
;
1342 TRACE("Extra space: %d\n", extra
);
1344 int ret
= REBAR_ShrinkBandsRTL(infoPtr
, iBeginBand
, iEndBand
, -extra
, FALSE
);
1345 if (ret
> 0 && next_visible(infoPtr
, iBeginBand
) != iEndBand
) /* one band may be longer than expected... */
1346 ERR("Error layouting row %d - couldn't shrink for %d pixels (%d total shrink)\n", *piRow
, ret
, -extra
);
1349 lpBand
= REBAR_FindBandToGrow(infoPtr
, iBeginBand
, iEndBand
);
1350 lpBand
->cxEffective
+= extra
;
1353 REBAR_SetRowRectsX(infoPtr
, iBeginBand
, iEndBand
);
1354 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1357 *pyPos
+= SEP_WIDTH
;
1358 *pyPos
= REBAR_SetBandsHeight(infoPtr
, iBeginBand
, iEndBand
, *pyPos
);
1364 REBAR_Layout(REBAR_INFO
*infoPtr
)
1374 if (infoPtr
->dwStyle
& (CCS_NORESIZE
| CCS_NOPARENTALIGN
) || GetParent(infoPtr
->hwndSelf
) == NULL
)
1375 GetClientRect(infoPtr
->hwndSelf
, &rcAdj
);
1377 GetClientRect(GetParent(infoPtr
->hwndSelf
), &rcAdj
);
1378 TRACE("adjustment rect is (%s)\n", wine_dbgstr_rect(&rcAdj
));
1380 adjcx
= get_rect_cx(infoPtr
, &rcAdj
);
1382 if (infoPtr
->uNumBands
== 0) {
1383 TRACE("No bands - setting size to (0,%d), vert: %x\n", adjcx
, infoPtr
->dwStyle
& CCS_VERT
);
1384 infoPtr
->calcSize
.cx
= adjcx
;
1385 /* the calcSize.cy won't change for a 0 band rebar */
1386 infoPtr
->uNumRows
= 0;
1387 REBAR_ForceResize(infoPtr
);
1393 rowstart
= first_visible(infoPtr
);
1395 for (i
= rowstart
; i
< infoPtr
->uNumBands
; i
= next_visible(infoPtr
, i
))
1397 lpBand
= REBAR_GetBand(infoPtr
, i
);
1399 if (i
> rowstart
&& (lpBand
->fStyle
& RBBS_BREAK
|| xMin
+ lpBand
->cxMinBand
> adjcx
)) {
1400 TRACE("%s break on band %d\n", (lpBand
->fStyle
& RBBS_BREAK
? "Hard" : "Soft"), i
- 1);
1401 REBAR_LayoutRow(infoPtr
, rowstart
, i
, adjcx
, &row
, &yPos
);
1408 xMin
+= lpBand
->cxMinBand
;
1410 if (rowstart
< infoPtr
->uNumBands
)
1411 REBAR_LayoutRow(infoPtr
, rowstart
, infoPtr
->uNumBands
, adjcx
, &row
, &yPos
);
1413 if (!(infoPtr
->dwStyle
& RBS_VARHEIGHT
))
1414 yPos
= REBAR_SetBandsHeight(infoPtr
, first_visible(infoPtr
), infoPtr
->uNumBands
, 0);
1416 infoPtr
->uNumRows
= row
;
1418 if (infoPtr
->dwStyle
& CCS_VERT
)
1419 REBAR_CalcVertBand(infoPtr
, 0, infoPtr
->uNumBands
);
1421 REBAR_CalcHorzBand(infoPtr
, 0, infoPtr
->uNumBands
);
1422 /* now compute size of Rebar itself */
1423 oldSize
= infoPtr
->calcSize
;
1425 infoPtr
->calcSize
.cx
= adjcx
;
1426 infoPtr
->calcSize
.cy
= yPos
;
1427 TRACE("calcsize size=(%d, %d), origheight=(%d,%d)\n",
1428 infoPtr
->calcSize
.cx
, infoPtr
->calcSize
.cy
,
1429 oldSize
.cx
, oldSize
.cy
);
1431 REBAR_DumpBand (infoPtr
);
1432 REBAR_MoveChildWindows (infoPtr
, 0, infoPtr
->uNumBands
);
1433 REBAR_ForceResize (infoPtr
);
1435 /* note: after a RBN_HEIGHTCHANGE native sends once again all the RBN_CHILDSIZE
1436 * and does another ForceResize */
1437 if (oldSize
.cy
!= infoPtr
->calcSize
.cy
)
1440 REBAR_Notify(&heightchange
, infoPtr
, RBN_HEIGHTCHANGE
);
1441 REBAR_AutoSize(infoPtr
, FALSE
);
1445 /* iBeginBand must be visible */
1447 REBAR_SizeChildrenToHeight(const REBAR_INFO
*infoPtr
, int iBeginBand
, int iEndBand
, int extra
, BOOL
*fChanged
)
1453 TRACE("[%d;%d) by %d\n", iBeginBand
, iEndBand
, extra
);
1455 cyBandsOld
= REBAR_GetBand(infoPtr
, iBeginBand
)->rcBand
.bottom
-
1456 REBAR_GetBand(infoPtr
, iBeginBand
)->rcBand
.top
;
1457 for (i
= iBeginBand
; i
< iEndBand
; i
= next_visible(infoPtr
, i
))
1459 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1460 int cyMaxChild
= cyBandsOld
- REBARSPACE(lpBand
) + extra
;
1461 int cyChild
= round_child_height(lpBand
, cyMaxChild
);
1463 if (lpBand
->hwndChild
&& cyChild
!= lpBand
->cyChild
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
))
1465 TRACE("Resizing %d: %d -> %d [%d]\n", i
, lpBand
->cyChild
, cyChild
, lpBand
->cyMaxChild
);
1467 lpBand
->cyChild
= cyChild
;
1468 lpBand
->fDraw
|= NTF_INVALIDATE
;
1469 update_min_band_height(infoPtr
, lpBand
);
1471 cyBandsNew
= max(cyBandsNew
, lpBand
->cyMinBand
);
1473 return cyBandsNew
- cyBandsOld
;
1476 /* worker function for RB_SIZETORECT and RBS_AUTOSIZE */
1478 REBAR_SizeToHeight(REBAR_INFO
*infoPtr
, int height
)
1480 int extra
= height
- infoPtr
->calcSize
.cy
; /* may be negative */
1481 BOOL fChanged
= FALSE
;
1482 UINT uNumRows
= infoPtr
->uNumRows
;
1485 if (uNumRows
== 0) /* avoid division by 0 */
1488 /* That's not exactly what Windows does but should be similar */
1490 /* Pass one: break-up/glue rows */
1493 for (i
= prev_visible(infoPtr
, infoPtr
->uNumBands
); i
> 0; i
= prev_visible(infoPtr
, i
))
1495 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1496 int cyBreakExtra
; /* additional cy for the rebar after a RBBS_BREAK on this band */
1498 height
= lpBand
->rcBand
.bottom
- lpBand
->rcBand
.top
;
1500 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1501 cyBreakExtra
= lpBand
->cyRowSoFar
; /* 'height' => 'lpBand->cyRowSoFar' + 'height'*/
1503 cyBreakExtra
= height
; /* 'height' => 'height' + 'height'*/
1504 cyBreakExtra
+= SEP_WIDTH
;
1506 if (extra
<= cyBreakExtra
/ 2)
1509 if (!(lpBand
->fStyle
& RBBS_BREAK
))
1511 TRACE("Adding break on band %d - extra %d -> %d\n", i
, extra
, extra
- cyBreakExtra
);
1512 lpBand
->fStyle
|= RBBS_BREAK
;
1513 lpBand
->fDraw
|= NTF_INVALIDATE
;
1515 extra
-= cyBreakExtra
;
1517 /* temporary change for _SizeControlsToHeight. The true values will be computed in _Layout */
1518 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1519 lpBand
->rcBand
.bottom
= lpBand
->rcBand
.top
+ lpBand
->cyMinBand
;
1523 /* TODO: else if (extra < 0) { try to remove some RBBS_BREAKs } */
1525 /* Pass two: increase/decrease control height */
1526 if (infoPtr
->dwStyle
& RBS_VARHEIGHT
)
1528 int i
= first_visible(infoPtr
);
1530 while (i
< infoPtr
->uNumBands
)
1532 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, i
);
1533 int extraForRow
= extra
/ (int)(uNumRows
- iRow
);
1536 /* we can't use get_row_end_for_band as we might have added RBBS_BREAK in the first phase */
1537 for (rowEnd
= next_visible(infoPtr
, i
); rowEnd
< infoPtr
->uNumBands
; rowEnd
= next_visible(infoPtr
, rowEnd
))
1538 if (REBAR_GetBand(infoPtr
, rowEnd
)->iRow
!= lpBand
->iRow
||
1539 REBAR_GetBand(infoPtr
, rowEnd
)->fStyle
& RBBS_BREAK
)
1542 extra
-= REBAR_SizeChildrenToHeight(infoPtr
, i
, rowEnd
, extraForRow
, &fChanged
);
1543 TRACE("extra = %d\n", extra
);
1549 REBAR_SizeChildrenToHeight(infoPtr
, first_visible(infoPtr
), infoPtr
->uNumBands
, extra
/ infoPtr
->uNumRows
, &fChanged
);
1552 REBAR_Layout(infoPtr
);
1556 REBAR_AutoSize(REBAR_INFO
*infoPtr
, BOOL needsLayout
)
1559 NMRBAUTOSIZE autosize
;
1562 REBAR_Layout(infoPtr
);
1563 GetClientRect(infoPtr
->hwndSelf
, &rc
);
1564 REBAR_SizeToHeight(infoPtr
, get_rect_cy(infoPtr
, &rc
));
1565 GetClientRect(infoPtr
->hwndSelf
, &rcNew
);
1567 GetClientRect(infoPtr
->hwndSelf
, &autosize
.rcTarget
);
1568 autosize
.fChanged
= (memcmp(&rc
, &rcNew
, sizeof(RECT
)) == 0);
1569 autosize
.rcTarget
= rc
;
1570 autosize
.rcActual
= rcNew
;
1571 REBAR_Notify((NMHDR
*)&autosize
, infoPtr
, RBN_AUTOSIZE
);
1575 REBAR_ValidateBand (const REBAR_INFO
*infoPtr
, REBAR_BAND
*lpBand
)
1576 /* Function: This routine evaluates the band specs supplied */
1577 /* by the user and updates the following 5 fields in */
1578 /* the internal band structure: cxHeader, cyHeader, cxMinBand, cyMinBand, fStatus */
1581 UINT textheight
=0, imageheight
= 0;
1585 lpBand
->fStatus
= 0;
1586 lpBand
->cxMinBand
= 0;
1587 lpBand
->cyMinBand
= 0;
1589 /* Data coming in from users into the cx... and cy... fields */
1590 /* may be bad, just garbage, because the user never clears */
1591 /* the fields. RB_{SET|INSERT}BAND{A|W} just passes the data */
1592 /* along if the fields exist in the input area. Here we must */
1593 /* determine if the data is valid. I have no idea how MS does */
1594 /* the validation, but it does because the RB_GETBANDINFO */
1595 /* returns a 0 when I know the sample program passed in an */
1596 /* address. Here I will use the algorithm that if the value */
1597 /* is greater than 65535 then it is bad and replace it with */
1598 /* a zero. Feel free to improve the algorithm. - GA 12/2000 */
1599 if (lpBand
->cxMinChild
> 65535) lpBand
->cxMinChild
= 0;
1600 if (lpBand
->cyMinChild
> 65535) lpBand
->cyMinChild
= 0;
1601 if (lpBand
->cx
> 65535) lpBand
->cx
= 0;
1602 if (lpBand
->cyChild
> 65535) lpBand
->cyChild
= 0;
1603 if (lpBand
->cyIntegral
> 65535) lpBand
->cyIntegral
= 0;
1604 if (lpBand
->cxIdeal
> 65535) lpBand
->cxIdeal
= 0;
1605 if (lpBand
->cxHeader
> 65535) lpBand
->cxHeader
= 0;
1607 /* TODO : we could try return to the caller if a value changed so that */
1608 /* a REBAR_Layout is needed. Till now the caller should call it */
1609 /* it always (we should also check what native does) */
1611 /* Header is where the image, text and gripper exist */
1612 /* in the band and precede the child window. */
1614 /* count number of non-FIXEDSIZE and non-Hidden bands */
1616 for (i
=0; i
<infoPtr
->uNumBands
; i
++){
1617 tBand
= REBAR_GetBand(infoPtr
, i
);
1618 if (!HIDDENBAND(tBand
) && !(tBand
->fStyle
& RBBS_FIXEDSIZE
))
1622 /* calculate gripper rectangle */
1623 if ( (!(lpBand
->fStyle
& RBBS_NOGRIPPER
)) &&
1624 ( (lpBand
->fStyle
& RBBS_GRIPPERALWAYS
) ||
1625 ( !(lpBand
->fStyle
& RBBS_FIXEDSIZE
) && (nonfixed
> 1)))
1627 lpBand
->fStatus
|= HAS_GRIPPER
;
1628 if (infoPtr
->dwStyle
& CCS_VERT
)
1629 if (infoPtr
->dwStyle
& RBS_VERTICALGRIPPER
)
1630 header
+= (GRIPPER_HEIGHT
+ REBAR_PRE_GRIPPER
);
1632 header
+= (GRIPPER_WIDTH
+ REBAR_PRE_GRIPPER
);
1634 header
+= (REBAR_PRE_GRIPPER
+ GRIPPER_WIDTH
);
1635 /* Always have 4 pixels before anything else */
1636 header
+= REBAR_ALWAYS_SPACE
;
1639 /* image is visible */
1640 if (lpBand
->iImage
!= -1 && (infoPtr
->himl
)) {
1641 lpBand
->fStatus
|= HAS_IMAGE
;
1642 if (infoPtr
->dwStyle
& CCS_VERT
) {
1643 header
+= (infoPtr
->imageSize
.cy
+ REBAR_POST_IMAGE
);
1644 imageheight
= infoPtr
->imageSize
.cx
+ 4;
1647 header
+= (infoPtr
->imageSize
.cx
+ REBAR_POST_IMAGE
);
1648 imageheight
= infoPtr
->imageSize
.cy
+ 4;
1652 /* text is visible */
1653 if ((lpBand
->fMask
& RBBIM_TEXT
) && (lpBand
->lpText
) &&
1654 !(lpBand
->fStyle
& RBBS_HIDETITLE
)) {
1655 HDC hdc
= GetDC (0);
1656 HFONT hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
1659 lpBand
->fStatus
|= HAS_TEXT
;
1660 GetTextExtentPoint32W (hdc
, lpBand
->lpText
,
1661 lstrlenW (lpBand
->lpText
), &size
);
1662 header
+= ((infoPtr
->dwStyle
& CCS_VERT
) ? (size
.cy
+ REBAR_POST_TEXT
) : (size
.cx
+ REBAR_POST_TEXT
));
1663 textheight
= (infoPtr
->dwStyle
& CCS_VERT
) ? 0 : size
.cy
;
1665 SelectObject (hdc
, hOldFont
);
1669 /* if no gripper but either image or text, then leave space */
1670 if ((lpBand
->fStatus
& (HAS_IMAGE
| HAS_TEXT
)) &&
1671 !(lpBand
->fStatus
& HAS_GRIPPER
)) {
1672 header
+= REBAR_ALWAYS_SPACE
;
1675 /* check if user overrode the header value */
1676 if (!(lpBand
->fStyle
& RBBS_UNDOC_FIXEDHEADER
))
1677 lpBand
->cxHeader
= header
;
1678 lpBand
->cyHeader
= max(textheight
, imageheight
);
1680 /* Now compute minimum size of child window */
1681 update_min_band_height(infoPtr
, lpBand
); /* update lpBand->cyMinBand from cyHeader and cyChild*/
1683 lpBand
->cxMinBand
= lpBand
->cxMinChild
+ lpBand
->cxHeader
+ REBAR_POST_CHILD
;
1684 if (lpBand
->fStyle
& RBBS_USECHEVRON
&& lpBand
->cxMinChild
< lpBand
->cxIdeal
)
1685 lpBand
->cxMinBand
+= CHEVRON_WIDTH
;
1689 REBAR_CommonSetupBand(HWND hwnd
, const REBARBANDINFOW
*lprbbi
, REBAR_BAND
*lpBand
)
1690 /* Function: This routine copies the supplied values from */
1691 /* user input (lprbbi) to the internal band structure. */
1692 /* It returns the mask of what changed. */
1694 UINT uChanged
= 0x0;
1696 lpBand
->fMask
|= lprbbi
->fMask
;
1698 if( (lprbbi
->fMask
& RBBIM_STYLE
) &&
1699 (lpBand
->fStyle
!= lprbbi
->fStyle
) )
1701 lpBand
->fStyle
= lprbbi
->fStyle
;
1702 uChanged
|= RBBIM_STYLE
;
1705 if( (lprbbi
->fMask
& RBBIM_COLORS
) &&
1706 ( ( lpBand
->clrFore
!= lprbbi
->clrFore
) ||
1707 ( lpBand
->clrBack
!= lprbbi
->clrBack
) ) )
1709 lpBand
->clrFore
= lprbbi
->clrFore
;
1710 lpBand
->clrBack
= lprbbi
->clrBack
;
1711 uChanged
|= RBBIM_COLORS
;
1714 if( (lprbbi
->fMask
& RBBIM_IMAGE
) &&
1715 ( lpBand
->iImage
!= lprbbi
->iImage
) )
1717 lpBand
->iImage
= lprbbi
->iImage
;
1718 uChanged
|= RBBIM_IMAGE
;
1721 if( (lprbbi
->fMask
& RBBIM_CHILD
) &&
1722 (lprbbi
->hwndChild
!= lpBand
->hwndChild
) )
1724 if (lprbbi
->hwndChild
) {
1725 lpBand
->hwndChild
= lprbbi
->hwndChild
;
1726 lpBand
->hwndPrevParent
=
1727 SetParent (lpBand
->hwndChild
, hwnd
);
1728 /* below in trace from WinRAR */
1729 ShowWindow(lpBand
->hwndChild
, SW_SHOWNOACTIVATE
| SW_SHOWNORMAL
);
1730 /* above in trace from WinRAR */
1733 TRACE("child: %p prev parent: %p\n",
1734 lpBand
->hwndChild
, lpBand
->hwndPrevParent
);
1735 lpBand
->hwndChild
= 0;
1736 lpBand
->hwndPrevParent
= 0;
1738 uChanged
|= RBBIM_CHILD
;
1741 if( (lprbbi
->fMask
& RBBIM_CHILDSIZE
) &&
1742 ( (lpBand
->cxMinChild
!= lprbbi
->cxMinChild
) ||
1743 (lpBand
->cyMinChild
!= lprbbi
->cyMinChild
) ||
1744 ( (lprbbi
->cbSize
>= REBARBANDINFOA_V6_SIZE
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) &&
1745 ( (lpBand
->cyChild
!= lprbbi
->cyChild
) ||
1746 (lpBand
->cyMaxChild
!= lprbbi
->cyMaxChild
) ||
1747 (lpBand
->cyIntegral
!= lprbbi
->cyIntegral
) ) ) ||
1748 ( (lprbbi
->cbSize
< REBARBANDINFOA_V6_SIZE
) &&
1749 ( (lpBand
->cyChild
||
1750 lpBand
->cyMaxChild
||
1751 lpBand
->cyIntegral
) ) ) ) )
1753 lpBand
->cxMinChild
= lprbbi
->cxMinChild
;
1754 lpBand
->cyMinChild
= lprbbi
->cyMinChild
;
1755 /* These fields where added in WIN32_IE == 0x400 and are set only for RBBS_VARIABLEHEIGHT bands */
1756 if (lprbbi
->cbSize
>= REBARBANDINFOA_V6_SIZE
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) {
1757 lpBand
->cyMaxChild
= lprbbi
->cyMaxChild
;
1758 lpBand
->cyIntegral
= lprbbi
->cyIntegral
;
1760 lpBand
->cyChild
= round_child_height(lpBand
, lprbbi
->cyChild
); /* make (cyChild - cyMinChild) a multiple of cyIntergral */
1763 lpBand
->cyChild
= lpBand
->cyMinChild
;
1764 lpBand
->cyMaxChild
= 0x7fffffff;
1765 lpBand
->cyIntegral
= 0;
1767 uChanged
|= RBBIM_CHILDSIZE
;
1770 if( (lprbbi
->fMask
& RBBIM_SIZE
) &&
1771 (lpBand
->cx
!= lprbbi
->cx
) )
1773 lpBand
->cx
= lprbbi
->cx
;
1774 uChanged
|= RBBIM_SIZE
;
1777 if( (lprbbi
->fMask
& RBBIM_BACKGROUND
) &&
1778 ( lpBand
->hbmBack
!= lprbbi
->hbmBack
) )
1780 lpBand
->hbmBack
= lprbbi
->hbmBack
;
1781 uChanged
|= RBBIM_BACKGROUND
;
1784 if( (lprbbi
->fMask
& RBBIM_ID
) &&
1785 (lpBand
->wID
!= lprbbi
->wID
) )
1787 lpBand
->wID
= lprbbi
->wID
;
1788 uChanged
|= RBBIM_ID
;
1791 /* check for additional data */
1792 if (lprbbi
->cbSize
>= REBARBANDINFOA_V6_SIZE
) {
1793 if( (lprbbi
->fMask
& RBBIM_IDEALSIZE
) &&
1794 ( lpBand
->cxIdeal
!= lprbbi
->cxIdeal
) )
1796 lpBand
->cxIdeal
= lprbbi
->cxIdeal
;
1797 uChanged
|= RBBIM_IDEALSIZE
;
1800 if( (lprbbi
->fMask
& RBBIM_LPARAM
) &&
1801 (lpBand
->lParam
!= lprbbi
->lParam
) )
1803 lpBand
->lParam
= lprbbi
->lParam
;
1804 uChanged
|= RBBIM_LPARAM
;
1807 if( (lprbbi
->fMask
& RBBIM_HEADERSIZE
) &&
1808 (lpBand
->cxHeader
!= lprbbi
->cxHeader
) )
1810 lpBand
->cxHeader
= lprbbi
->cxHeader
;
1811 lpBand
->fStyle
|= RBBS_UNDOC_FIXEDHEADER
;
1812 uChanged
|= RBBIM_HEADERSIZE
;
1819 static LRESULT
REBAR_EraseBkGnd (const REBAR_INFO
*infoPtr
, HDC hdc
)
1820 /* Function: This erases the background rectangle by drawing */
1821 /* each band with its background color (or the default) and */
1822 /* draws each bands right separator if necessary. The row */
1823 /* separators are drawn on the first band of the next row. */
1829 COLORREF old
= CLR_NONE
, new;
1830 HTHEME theme
= GetWindowTheme (infoPtr
->hwndSelf
);
1833 GetClientRect (infoPtr
->hwndSelf
, &cr
);
1838 if (IsThemeBackgroundPartiallyTransparent(theme
, RP_BACKGROUND
, 0))
1840 DrawThemeParentBackground (infoPtr
->hwndSelf
, hdc
, &cr
);
1842 DrawThemeBackground (theme
, hdc
, 0, 0, &cr
, NULL
);
1845 hrgn
= CreateRectRgn(cr
.left
, cr
.top
, cr
.right
, cr
.bottom
);
1848 for(i
=0; i
<infoPtr
->uNumBands
; i
++) {
1853 lpBand
= REBAR_GetBand(infoPtr
, i
);
1855 if (HIDDENBAND(lpBand
)) continue;
1856 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
1858 rcBandReal
= rcBand
;
1860 /* draw band separator between rows */
1861 if (lpBand
->iRow
!= oldrow
) {
1862 oldrow
= lpBand
->iRow
;
1863 if (infoPtr
->dwStyle
& RBS_BANDBORDERS
) {
1866 if (infoPtr
->dwStyle
& CCS_VERT
) {
1867 rcRowSep
.right
+= SEP_WIDTH_SIZE
;
1868 rcRowSep
.bottom
= infoPtr
->calcSize
.cx
;
1870 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcRowSep
, EDGE_ETCHED
, BF_RIGHT
, NULL
);
1872 DrawEdge (hdc
, &rcRowSep
, EDGE_ETCHED
, BF_RIGHT
);
1875 rcRowSep
.bottom
+= SEP_WIDTH_SIZE
;
1876 rcRowSep
.right
= infoPtr
->calcSize
.cx
;
1878 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcRowSep
, EDGE_ETCHED
, BF_BOTTOM
, NULL
);
1880 DrawEdge (hdc
, &rcRowSep
, EDGE_ETCHED
, BF_BOTTOM
);
1882 TRACE ("drawing band separator bottom (%s)\n",
1883 wine_dbgstr_rect(&rcRowSep
));
1884 rcBandReal
= rcRowSep
;
1888 /* draw band separator between bands in a row */
1889 if (infoPtr
->dwStyle
& RBS_BANDBORDERS
&& lpBand
->rcBand
.left
> 0) {
1892 if (infoPtr
->dwStyle
& CCS_VERT
) {
1893 rcSep
.bottom
= rcSep
.top
;
1894 rcSep
.top
-= SEP_WIDTH_SIZE
;
1895 rcBandReal
.top
-= SEP_WIDTH_SIZE
;
1897 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcSep
, EDGE_ETCHED
, BF_BOTTOM
, NULL
);
1899 DrawEdge (hdc
, &rcSep
, EDGE_ETCHED
, BF_BOTTOM
);
1902 rcSep
.right
= rcSep
.left
;
1903 rcSep
.left
-= SEP_WIDTH_SIZE
;
1904 rcBandReal
.left
-= SEP_WIDTH_SIZE
;
1906 DrawThemeEdge (theme
, hdc
, RP_BAND
, 0, &rcSep
, EDGE_ETCHED
, BF_RIGHT
, NULL
);
1908 DrawEdge (hdc
, &rcSep
, EDGE_ETCHED
, BF_RIGHT
);
1910 TRACE("drawing band separator right (%s)\n",
1911 wine_dbgstr_rect(&rcSep
));
1914 /* draw the actual background */
1915 if (lpBand
->clrBack
!= CLR_NONE
) {
1916 new = (lpBand
->clrBack
== CLR_DEFAULT
) ? infoPtr
->clrBtnFace
:
1919 /* testing only - make background green to see it */
1924 /* In the absence of documentation for Rebar vs. CLR_NONE,
1925 * we will use the default BtnFace color. Note documentation
1926 * exists for Listview and Imagelist.
1928 new = infoPtr
->clrBtnFace
;
1930 /* testing only - make background green to see it */
1940 /* When themed, the background color is ignored (but not a
1941 * background bitmap */
1942 DrawThemeBackground (theme
, hdc
, 0, 0, &cr
, &rcBand
);
1947 old
= SetBkColor (hdc
, new);
1948 TRACE("%s background color=0x%06x, band %s\n",
1949 (lpBand
->clrBack
== CLR_NONE
) ? "none" :
1950 ((lpBand
->clrBack
== CLR_DEFAULT
) ? "dft" : ""),
1951 GetBkColor(hdc
), wine_dbgstr_rect(&rcBand
));
1952 ExtTextOutW (hdc
, 0, 0, ETO_OPAQUE
, &rcBand
, NULL
, 0, 0);
1953 if (lpBand
->clrBack
!= CLR_NONE
)
1954 SetBkColor (hdc
, old
);
1957 hrgnBand
= CreateRectRgn(rcBandReal
.left
, rcBandReal
.top
, rcBandReal
.right
, rcBandReal
.bottom
);
1958 CombineRgn(hrgn
, hrgn
, hrgnBand
, RGN_DIFF
);
1959 DeleteObject(hrgnBand
);
1967 //FIXME: Apparently painting the remaining area is a v6 feature
1968 HBRUSH hbrush
= CreateSolidBrush(new);
1969 FillRgn(hdc
, hrgn
, hbrush
);
1970 DeleteObject(hbrush
);
1978 REBAR_InternalHitTest (const REBAR_INFO
*infoPtr
, const POINT
*lpPt
, UINT
*pFlags
, INT
*pBand
)
1984 GetClientRect (infoPtr
->hwndSelf
, &rect
);
1986 *pFlags
= RBHT_NOWHERE
;
1987 if (PtInRect (&rect
, *lpPt
))
1989 if (infoPtr
->uNumBands
== 0) {
1990 *pFlags
= RBHT_NOWHERE
;
1997 /* somewhere inside */
1998 for (iCount
= 0; iCount
< infoPtr
->uNumBands
; iCount
++) {
2000 lpBand
= REBAR_GetBand(infoPtr
, iCount
);
2001 translate_rect(infoPtr
, &rcBand
, &lpBand
->rcBand
);
2002 if (HIDDENBAND(lpBand
)) continue;
2003 if (PtInRect (&rcBand
, *lpPt
)) {
2006 if (PtInRect (&lpBand
->rcGripper
, *lpPt
)) {
2007 *pFlags
= RBHT_GRABBER
;
2008 TRACE("ON GRABBER %d\n", iCount
);
2011 else if (PtInRect (&lpBand
->rcCapImage
, *lpPt
)) {
2012 *pFlags
= RBHT_CAPTION
;
2013 TRACE("ON CAPTION %d\n", iCount
);
2016 else if (PtInRect (&lpBand
->rcCapText
, *lpPt
)) {
2017 *pFlags
= RBHT_CAPTION
;
2018 TRACE("ON CAPTION %d\n", iCount
);
2021 else if (PtInRect (&lpBand
->rcChild
, *lpPt
)) {
2022 *pFlags
= RBHT_CLIENT
;
2023 TRACE("ON CLIENT %d\n", iCount
);
2026 else if (PtInRect (&lpBand
->rcChevron
, *lpPt
)) {
2027 *pFlags
= RBHT_CHEVRON
;
2028 TRACE("ON CHEVRON %d\n", iCount
);
2032 *pFlags
= RBHT_NOWHERE
;
2033 TRACE("NOWHERE %d\n", iCount
);
2039 *pFlags
= RBHT_NOWHERE
;
2048 *pFlags
= RBHT_NOWHERE
;
2057 REBAR_HandleLRDrag (REBAR_INFO
*infoPtr
, const POINT
*ptsmove
)
2058 /* Function: This will implement the functionality of a */
2059 /* Gripper drag within a row. It will not implement "out- */
2060 /* of-row" drags. (They are detected and handled in */
2061 /* REBAR_MouseMove.) */
2063 REBAR_BAND
*hitBand
;
2064 INT iHitBand
, iRowBegin
, iRowEnd
;
2065 INT movement
, xBand
, cxLeft
= 0;
2066 BOOL shrunkBands
= FALSE
;
2068 iHitBand
= infoPtr
->iGrabbedBand
;
2069 iRowBegin
= get_row_begin_for_band(infoPtr
, iHitBand
);
2070 iRowEnd
= get_row_end_for_band(infoPtr
, iHitBand
);
2071 hitBand
= REBAR_GetBand(infoPtr
, iHitBand
);
2073 xBand
= hitBand
->rcBand
.left
;
2074 movement
= (infoPtr
->dwStyle
&CCS_VERT
? ptsmove
->y
: ptsmove
->x
)
2075 - (xBand
+ REBAR_PRE_GRIPPER
- infoPtr
->ihitoffset
);
2077 /* Dragging the first band in a row cannot cause shrinking */
2078 if(iHitBand
!= iRowBegin
)
2081 cxLeft
= REBAR_ShrinkBandsRTL(infoPtr
, iRowBegin
, iHitBand
, -movement
, TRUE
);
2083 if(cxLeft
< -movement
)
2085 hitBand
->cxEffective
+= -movement
- cxLeft
;
2086 hitBand
->cx
= hitBand
->cxEffective
;
2090 } else if (movement
> 0) {
2093 if (prev_visible(infoPtr
, iHitBand
) >= 0)
2094 cxLeft
= REBAR_ShrinkBandsLTR(infoPtr
, iHitBand
, iRowEnd
, movement
, TRUE
);
2096 if(cxLeft
< movement
)
2098 REBAR_BAND
*lpPrev
= REBAR_GetBand(infoPtr
, prev_visible(infoPtr
, iHitBand
));
2099 lpPrev
->cxEffective
+= movement
- cxLeft
;
2100 lpPrev
->cx
= hitBand
->cxEffective
;
2109 /* It was not possible to move the band by shrinking bands.
2110 * Try relocating the band instead. */
2111 REBAR_MoveBandToRowOffset(infoPtr
, iHitBand
, iRowBegin
,
2112 iRowEnd
, xBand
+ movement
, TRUE
);
2115 REBAR_SetRowRectsX(infoPtr
, iRowBegin
, iRowEnd
);
2116 if (infoPtr
->dwStyle
& CCS_VERT
)
2117 REBAR_CalcVertBand(infoPtr
, 0, infoPtr
->uNumBands
);
2119 REBAR_CalcHorzBand(infoPtr
, 0, infoPtr
->uNumBands
);
2120 REBAR_MoveChildWindows(infoPtr
, iRowBegin
, iRowEnd
);
2124 REBAR_HandleUDDrag (REBAR_INFO
*infoPtr
, const POINT
*ptsmove
)
2126 INT yOff
= (infoPtr
->dwStyle
& CCS_VERT
) ? ptsmove
->x
: ptsmove
->y
;
2127 INT iHitBand
, iRowBegin
, iNextRowBegin
;
2128 REBAR_BAND
*hitBand
, *rowBeginBand
;
2130 if(infoPtr
->uNumBands
<= 0)
2131 ERR("There are no bands in this rebar\n");
2133 /* Up/down dragging can only occur when there is more than one
2134 * band in the rebar */
2135 if(infoPtr
->uNumBands
<= 1)
2138 iHitBand
= infoPtr
->iGrabbedBand
;
2139 hitBand
= REBAR_GetBand(infoPtr
, iHitBand
);
2141 /* If we're taking a band that has the RBBS_BREAK style set, this
2142 * style needs to be reapplied to the band that is going to become
2143 * the new start of the row. */
2144 if((hitBand
->fStyle
& RBBS_BREAK
) &&
2145 (iHitBand
< infoPtr
->uNumBands
- 1))
2146 REBAR_GetBand(infoPtr
, iHitBand
+ 1)->fStyle
|= RBBS_BREAK
;
2150 /* Place the band above the current top row */
2151 if(iHitBand
==0 && (infoPtr
->uNumBands
==1 || REBAR_GetBand(infoPtr
, 1)->fStyle
&RBBS_BREAK
))
2153 DPA_DeletePtr(infoPtr
->bands
, iHitBand
);
2154 hitBand
->fStyle
&= ~RBBS_BREAK
;
2155 REBAR_GetBand(infoPtr
, 0)->fStyle
|= RBBS_BREAK
;
2156 infoPtr
->iGrabbedBand
= DPA_InsertPtr(
2157 infoPtr
->bands
, 0, hitBand
);
2159 else if(yOff
> REBAR_GetBand(infoPtr
, infoPtr
->uNumBands
- 1)->rcBand
.bottom
)
2161 /* Place the band below the current bottom row */
2162 if(iHitBand
== infoPtr
->uNumBands
-1 && hitBand
->fStyle
&RBBS_BREAK
)
2164 DPA_DeletePtr(infoPtr
->bands
, iHitBand
);
2165 hitBand
->fStyle
|= RBBS_BREAK
;
2166 infoPtr
->iGrabbedBand
= DPA_InsertPtr(
2167 infoPtr
->bands
, infoPtr
->uNumBands
- 1, hitBand
);
2171 /* Place the band in the prexisting row the mouse is hovering over */
2172 iRowBegin
= first_visible(infoPtr
);
2173 while(iRowBegin
< infoPtr
->uNumBands
)
2175 iNextRowBegin
= get_row_end_for_band(infoPtr
, iRowBegin
);
2176 rowBeginBand
= REBAR_GetBand(infoPtr
, iRowBegin
);
2177 if(rowBeginBand
->rcBand
.bottom
> yOff
)
2179 REBAR_MoveBandToRowOffset(
2180 infoPtr
, iHitBand
, iRowBegin
, iNextRowBegin
,
2181 ((infoPtr
->dwStyle
& CCS_VERT
) ? ptsmove
->y
: ptsmove
->x
)
2182 - REBAR_PRE_GRIPPER
- infoPtr
->ihitoffset
, FALSE
);
2186 iRowBegin
= iNextRowBegin
;
2190 REBAR_Layout(infoPtr
);
2194 /* << REBAR_BeginDrag >> */
2198 REBAR_DeleteBand (REBAR_INFO
*infoPtr
, WPARAM wParam
)
2200 UINT uBand
= (UINT
)wParam
;
2203 if (uBand
>= infoPtr
->uNumBands
)
2206 TRACE("deleting band %u!\n", uBand
);
2207 lpBand
= REBAR_GetBand(infoPtr
, uBand
);
2208 REBAR_Notify_NMREBAR (infoPtr
, uBand
, RBN_DELETINGBAND
);
2209 /* TODO: a return of 1 should probably cancel the deletion */
2211 if (lpBand
->hwndChild
)
2212 ShowWindow(lpBand
->hwndChild
, SW_HIDE
);
2213 Free(lpBand
->lpText
);
2216 infoPtr
->uNumBands
--;
2217 DPA_DeletePtr(infoPtr
->bands
, uBand
);
2219 REBAR_Notify_NMREBAR (infoPtr
, -1, RBN_DELETEDBAND
);
2221 /* if only 1 band left the re-validate to possible eliminate gripper */
2222 if (infoPtr
->uNumBands
== 1)
2223 REBAR_ValidateBand (infoPtr
, REBAR_GetBand(infoPtr
, 0));
2225 REBAR_Layout(infoPtr
);
2231 /* << REBAR_DragMove >> */
2232 /* << REBAR_EndDrag >> */
2236 REBAR_GetBandBorders (const REBAR_INFO
*infoPtr
, UINT uBand
, RECT
*lpRect
)
2242 if (uBand
>= infoPtr
->uNumBands
)
2245 lpBand
= REBAR_GetBand(infoPtr
, uBand
);
2247 /* FIXME - the following values were determined by experimentation */
2248 /* with the REBAR Control Spy. I have guesses as to what the 4 and */
2249 /* 1 are, but I am not sure. There doesn't seem to be any actual */
2250 /* difference in size of the control area with and without the */
2252 if (infoPtr
->dwStyle
& RBS_BANDBORDERS
) {
2253 if (infoPtr
->dwStyle
& CCS_VERT
) {
2255 lpRect
->top
= lpBand
->cxHeader
+ 4;
2260 lpRect
->left
= lpBand
->cxHeader
+ 4;
2267 lpRect
->left
= lpBand
->cxHeader
;
2273 static inline LRESULT
2274 REBAR_GetBandCount (const REBAR_INFO
*infoPtr
)
2276 TRACE("band count %u!\n", infoPtr
->uNumBands
);
2278 return infoPtr
->uNumBands
;
2283 REBAR_GetBandInfoT(const REBAR_INFO
*infoPtr
, UINT uIndex
, LPREBARBANDINFOW lprbbi
, BOOL bUnicode
)
2287 if (!lprbbi
|| lprbbi
->cbSize
< REBARBANDINFOA_V3_SIZE
)
2290 if (uIndex
>= infoPtr
->uNumBands
)
2293 TRACE("index %u (bUnicode=%d)\n", uIndex
, bUnicode
);
2295 /* copy band information */
2296 lpBand
= REBAR_GetBand(infoPtr
, uIndex
);
2298 if (lprbbi
->fMask
& RBBIM_STYLE
)
2299 lprbbi
->fStyle
= lpBand
->fStyle
;
2301 if (lprbbi
->fMask
& RBBIM_COLORS
) {
2302 lprbbi
->clrFore
= lpBand
->clrFore
;
2303 lprbbi
->clrBack
= lpBand
->clrBack
;
2304 if (lprbbi
->clrBack
== CLR_DEFAULT
)
2305 lprbbi
->clrBack
= infoPtr
->clrBtnFace
;
2308 if (lprbbi
->fMask
& RBBIM_TEXT
) {
2310 Str_GetPtrW(lpBand
->lpText
, lprbbi
->lpText
, lprbbi
->cch
);
2312 Str_GetPtrWtoA(lpBand
->lpText
, (LPSTR
)lprbbi
->lpText
, lprbbi
->cch
);
2315 if (lprbbi
->fMask
& RBBIM_IMAGE
)
2316 lprbbi
->iImage
= lpBand
->iImage
;
2318 if (lprbbi
->fMask
& RBBIM_CHILD
)
2319 lprbbi
->hwndChild
= lpBand
->hwndChild
;
2321 if (lprbbi
->fMask
& RBBIM_CHILDSIZE
) {
2322 lprbbi
->cxMinChild
= lpBand
->cxMinChild
;
2323 lprbbi
->cyMinChild
= lpBand
->cyMinChild
;
2324 /* to make tests pass we follow Windows behaviour and allow to read these fields only
2325 * for RBBS_VARIABLEHEIGHTS bands */
2326 if (lprbbi
->cbSize
>= REBARBANDINFOW_V6_SIZE
&& (lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) {
2327 lprbbi
->cyChild
= lpBand
->cyChild
;
2328 lprbbi
->cyMaxChild
= lpBand
->cyMaxChild
;
2329 lprbbi
->cyIntegral
= lpBand
->cyIntegral
;
2333 if (lprbbi
->fMask
& RBBIM_SIZE
)
2334 lprbbi
->cx
= lpBand
->cx
;
2336 if (lprbbi
->fMask
& RBBIM_BACKGROUND
)
2337 lprbbi
->hbmBack
= lpBand
->hbmBack
;
2339 if (lprbbi
->fMask
& RBBIM_ID
)
2340 lprbbi
->wID
= lpBand
->wID
;
2342 /* check for additional data */
2343 if (lprbbi
->cbSize
>= REBARBANDINFOW_V6_SIZE
) {
2344 if (lprbbi
->fMask
& RBBIM_IDEALSIZE
)
2345 lprbbi
->cxIdeal
= lpBand
->cxIdeal
;
2347 if (lprbbi
->fMask
& RBBIM_LPARAM
)
2348 lprbbi
->lParam
= lpBand
->lParam
;
2350 if (lprbbi
->fMask
& RBBIM_HEADERSIZE
)
2351 lprbbi
->cxHeader
= lpBand
->cxHeader
;
2354 REBAR_DumpBandInfo(lprbbi
);
2361 REBAR_GetBarHeight (const REBAR_INFO
*infoPtr
)
2365 nHeight
= infoPtr
->calcSize
.cy
;
2367 TRACE("height = %d\n", nHeight
);
2374 REBAR_GetBarInfo (const REBAR_INFO
*infoPtr
, LPREBARINFO lpInfo
)
2376 if (!lpInfo
|| lpInfo
->cbSize
< sizeof (REBARINFO
))
2379 TRACE("getting bar info!\n");
2381 if (infoPtr
->himl
) {
2382 lpInfo
->himl
= infoPtr
->himl
;
2383 lpInfo
->fMask
|= RBIM_IMAGELIST
;
2390 static inline LRESULT
2391 REBAR_GetBkColor (const REBAR_INFO
*infoPtr
)
2393 COLORREF clr
= infoPtr
->clrBk
;
2395 if (clr
== CLR_DEFAULT
)
2396 clr
= infoPtr
->clrBtnFace
;
2398 TRACE("background color 0x%06x!\n", clr
);
2404 /* << REBAR_GetColorScheme >> */
2405 /* << REBAR_GetDropTarget >> */
2409 REBAR_GetPalette (const REBAR_INFO
*infoPtr
)
2411 FIXME("empty stub!\n");
2418 REBAR_GetRect (const REBAR_INFO
*infoPtr
, INT iBand
, RECT
*lprc
)
2422 if (iBand
< 0 || iBand
>= infoPtr
->uNumBands
)
2427 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2428 /* For CCS_VERT the coordinates will be swapped - like on Windows */
2429 CopyRect (lprc
, &lpBand
->rcBand
);
2431 TRACE("band %d, (%s)\n", iBand
, wine_dbgstr_rect(lprc
));
2437 static inline LRESULT
2438 REBAR_GetRowCount (const REBAR_INFO
*infoPtr
)
2440 TRACE("%u\n", infoPtr
->uNumRows
);
2442 return infoPtr
->uNumRows
;
2447 REBAR_GetRowHeight (const REBAR_INFO
*infoPtr
, INT iRow
)
2453 for (i
=0; i
<infoPtr
->uNumBands
; i
++) {
2454 lpBand
= REBAR_GetBand(infoPtr
, i
);
2455 if (HIDDENBAND(lpBand
)) continue;
2456 if (lpBand
->iRow
!= iRow
) continue;
2457 j
= lpBand
->rcBand
.bottom
- lpBand
->rcBand
.top
;
2458 if (j
> ret
) ret
= j
;
2461 TRACE("row %d, height %d\n", iRow
, ret
);
2467 static inline LRESULT
2468 REBAR_GetTextColor (const REBAR_INFO
*infoPtr
)
2470 TRACE("text color 0x%06x!\n", infoPtr
->clrText
);
2472 return infoPtr
->clrText
;
2476 static inline LRESULT
2477 REBAR_GetToolTips (const REBAR_INFO
*infoPtr
)
2479 return (LRESULT
)infoPtr
->hwndToolTip
;
2483 static inline LRESULT
2484 REBAR_GetUnicodeFormat (const REBAR_INFO
*infoPtr
)
2486 TRACE("%s hwnd=%p\n",
2487 infoPtr
->bUnicode
? "TRUE" : "FALSE", infoPtr
->hwndSelf
);
2489 return infoPtr
->bUnicode
;
2493 static inline LRESULT
2494 REBAR_GetVersion (const REBAR_INFO
*infoPtr
)
2496 TRACE("version %d\n", infoPtr
->iVersion
);
2497 return infoPtr
->iVersion
;
2502 REBAR_HitTest (const REBAR_INFO
*infoPtr
, LPRBHITTESTINFO lprbht
)
2507 REBAR_InternalHitTest (infoPtr
, &lprbht
->pt
, &lprbht
->flags
, &lprbht
->iBand
);
2509 return lprbht
->iBand
;
2514 REBAR_IdToIndex (const REBAR_INFO
*infoPtr
, UINT uId
)
2518 if (infoPtr
->uNumBands
< 1)
2521 for (i
= 0; i
< infoPtr
->uNumBands
; i
++) {
2522 if (REBAR_GetBand(infoPtr
, i
)->wID
== uId
) {
2523 TRACE("id %u is band %u found!\n", uId
, i
);
2528 TRACE("id %u is not found\n", uId
);
2534 REBAR_InsertBandT(REBAR_INFO
*infoPtr
, INT iIndex
, const REBARBANDINFOW
*lprbbi
, BOOL bUnicode
)
2538 if (!lprbbi
|| lprbbi
->cbSize
< REBARBANDINFOA_V3_SIZE
)
2541 /* trace the index as signed to see the -1 */
2542 TRACE("insert band at %d (bUnicode=%d)!\n", iIndex
, bUnicode
);
2543 REBAR_DumpBandInfo(lprbbi
);
2545 if (!(lpBand
= Alloc(sizeof(REBAR_BAND
)))) return FALSE
;
2546 if ((iIndex
== -1) || (iIndex
> infoPtr
->uNumBands
))
2547 iIndex
= infoPtr
->uNumBands
;
2548 if (DPA_InsertPtr(infoPtr
->bands
, iIndex
, lpBand
) == -1)
2553 infoPtr
->uNumBands
++;
2555 TRACE("index %d!\n", iIndex
);
2557 /* initialize band */
2558 memset(lpBand
, 0, sizeof(*lpBand
));
2559 lpBand
->clrFore
= infoPtr
->clrText
== CLR_NONE
? infoPtr
->clrBtnText
:
2561 lpBand
->clrBack
= infoPtr
->clrBk
== CLR_NONE
? infoPtr
->clrBtnFace
:
2563 lpBand
->iImage
= -1;
2565 REBAR_CommonSetupBand(infoPtr
->hwndSelf
, lprbbi
, lpBand
);
2567 /* Make sure the defaults for these are correct */
2568 if (lprbbi
->cbSize
< REBARBANDINFOA_V6_SIZE
|| !(lpBand
->fStyle
& RBBS_VARIABLEHEIGHT
)) {
2569 lpBand
->cyChild
= lpBand
->cyMinChild
;
2570 lpBand
->cyMaxChild
= 0x7fffffff;
2571 lpBand
->cyIntegral
= 0;
2574 if ((lprbbi
->fMask
& RBBIM_TEXT
) && (lprbbi
->lpText
)) {
2576 Str_SetPtrW(&lpBand
->lpText
, lprbbi
->lpText
);
2578 Str_SetPtrAtoW(&lpBand
->lpText
, (LPSTR
)lprbbi
->lpText
);
2581 REBAR_ValidateBand (infoPtr
, lpBand
);
2582 /* On insert of second band, revalidate band 1 to possible add gripper */
2583 if (infoPtr
->uNumBands
== 2)
2584 REBAR_ValidateBand (infoPtr
, REBAR_GetBand(infoPtr
, 0));
2586 REBAR_DumpBand (infoPtr
);
2588 REBAR_Layout(infoPtr
);
2589 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
2596 REBAR_MaximizeBand (const REBAR_INFO
*infoPtr
, INT iBand
, LPARAM lParam
)
2599 int iRowBegin
, iRowEnd
;
2600 int cxDesired
, extra
, extraOrig
;
2604 if (infoPtr
->uNumBands
== 0 || iBand
< 0 || iBand
>= infoPtr
->uNumBands
) {
2606 ERR("Illegal MaximizeBand, requested=%d, current band count=%d\n",
2607 iBand
, infoPtr
->uNumBands
);
2611 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2613 if (lpBand
->fStyle
& RBBS_HIDDEN
)
2615 /* Windows is buggy and creates a hole */
2616 WARN("Ignoring maximize request on a hidden band (%d)\n", iBand
);
2620 cxIdealBand
= lpBand
->cxIdeal
+ lpBand
->cxHeader
+ REBAR_POST_CHILD
;
2621 if (lParam
&& (lpBand
->cxEffective
< cxIdealBand
))
2622 cxDesired
= cxIdealBand
;
2624 cxDesired
= infoPtr
->calcSize
.cx
;
2626 iRowBegin
= get_row_begin_for_band(infoPtr
, iBand
);
2627 iRowEnd
= get_row_end_for_band(infoPtr
, iBand
);
2628 extraOrig
= extra
= cxDesired
- lpBand
->cxEffective
;
2630 extra
= REBAR_ShrinkBandsRTL(infoPtr
, iRowBegin
, iBand
, extra
, TRUE
);
2632 extra
= REBAR_ShrinkBandsLTR(infoPtr
, next_visible(infoPtr
, iBand
), iRowEnd
, extra
, TRUE
);
2633 lpBand
->cxEffective
+= extraOrig
- extra
;
2634 lpBand
->cx
= lpBand
->cxEffective
;
2635 TRACE("(%d, %ld): Wanted size %d, obtained %d (shrink %d, %d)\n", iBand
, lParam
, cxDesired
, lpBand
->cx
, extraOrig
, extra
);
2636 REBAR_SetRowRectsX(infoPtr
, iRowBegin
, iRowEnd
);
2638 if (infoPtr
->dwStyle
& CCS_VERT
)
2639 REBAR_CalcVertBand(infoPtr
, iRowBegin
, iRowEnd
);
2641 REBAR_CalcHorzBand(infoPtr
, iRowBegin
, iRowEnd
);
2642 REBAR_MoveChildWindows(infoPtr
, iRowBegin
, iRowEnd
);
2649 REBAR_MinimizeBand (const REBAR_INFO
*infoPtr
, INT iBand
)
2652 int iPrev
, iRowBegin
, iRowEnd
;
2654 /* A "minimize" band is equivalent to "dragging" the gripper
2655 * of than band to the right till the band is only the size
2660 if (infoPtr
->uNumBands
== 0 || iBand
< 0 || iBand
>= infoPtr
->uNumBands
) {
2662 ERR("Illegal MinimizeBand, requested=%d, current band count=%d\n",
2663 iBand
, infoPtr
->uNumBands
);
2667 /* compute amount of movement and validate */
2668 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2670 if (lpBand
->fStyle
& RBBS_HIDDEN
)
2672 /* Windows is buggy and creates a hole/overlap */
2673 WARN("Ignoring minimize request on a hidden band (%d)\n", iBand
);
2677 iPrev
= prev_visible(infoPtr
, iBand
);
2678 /* if first band in row */
2679 if (iPrev
< 0 || REBAR_GetBand(infoPtr
, iPrev
)->iRow
!= lpBand
->iRow
) {
2680 int iNext
= next_visible(infoPtr
, iBand
);
2681 if (iNext
< infoPtr
->uNumBands
&& REBAR_GetBand(infoPtr
, iNext
)->iRow
== lpBand
->iRow
) {
2682 TRACE("(%d): Minimizing the first band in row is by maximizing the second\n", iBand
);
2683 REBAR_MaximizeBand(infoPtr
, iNext
, FALSE
);
2686 TRACE("(%d): Only one band in row - nothing to do\n", iBand
);
2690 REBAR_GetBand(infoPtr
, iPrev
)->cxEffective
+= lpBand
->cxEffective
- lpBand
->cxMinBand
;
2691 REBAR_GetBand(infoPtr
, iPrev
)->cx
= REBAR_GetBand(infoPtr
, iPrev
)->cxEffective
;
2692 lpBand
->cx
= lpBand
->cxEffective
= lpBand
->cxMinBand
;
2694 iRowBegin
= get_row_begin_for_band(infoPtr
, iBand
);
2695 iRowEnd
= get_row_end_for_band(infoPtr
, iBand
);
2696 REBAR_SetRowRectsX(infoPtr
, iRowBegin
, iRowEnd
);
2698 if (infoPtr
->dwStyle
& CCS_VERT
)
2699 REBAR_CalcVertBand(infoPtr
, iRowBegin
, iRowEnd
);
2701 REBAR_CalcHorzBand(infoPtr
, iRowBegin
, iRowEnd
);
2702 REBAR_MoveChildWindows(infoPtr
, iRowBegin
, iRowEnd
);
2708 REBAR_MoveBand (REBAR_INFO
*infoPtr
, INT iFrom
, INT iTo
)
2713 if ((infoPtr
->uNumBands
== 0) ||
2714 (iFrom
< 0) || iFrom
>= infoPtr
->uNumBands
||
2715 (iTo
< 0) || iTo
>= infoPtr
->uNumBands
) {
2717 ERR("Illegal MoveBand, from=%d, to=%d, current band count=%d\n",
2718 iFrom
, iTo
, infoPtr
->uNumBands
);
2722 lpBand
= REBAR_GetBand(infoPtr
, iFrom
);
2723 DPA_DeletePtr(infoPtr
->bands
, iFrom
);
2724 DPA_InsertPtr(infoPtr
->bands
, iTo
, lpBand
);
2726 TRACE("moved band %d to index %d\n", iFrom
, iTo
);
2727 REBAR_DumpBand (infoPtr
);
2729 /* **************************************************** */
2731 /* We do not do a REBAR_Layout here because the native */
2732 /* control does not do that. The actual layout and */
2733 /* repaint is done by the *next* real action, ex.: */
2734 /* RB_INSERTBAND, RB_DELETEBAND, RB_SIZETORECT, etc. */
2736 /* **************************************************** */
2742 /* return TRUE if two strings are different */
2744 REBAR_strdifW( LPCWSTR a
, LPCWSTR b
)
2746 return ( (a
&& !b
) || (b
&& !a
) || (a
&& b
&& lstrcmpW(a
, b
) ) );
2750 REBAR_SetBandInfoT(REBAR_INFO
*infoPtr
, INT iBand
, const REBARBANDINFOW
*lprbbi
, BOOL bUnicode
)
2755 if (!lprbbi
|| lprbbi
->cbSize
< REBARBANDINFOA_V3_SIZE
)
2758 if (iBand
>= infoPtr
->uNumBands
)
2761 TRACE("index %d\n", iBand
);
2762 REBAR_DumpBandInfo (lprbbi
);
2764 /* set band information */
2765 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2767 uChanged
= REBAR_CommonSetupBand (infoPtr
->hwndSelf
, lprbbi
, lpBand
);
2768 if (lprbbi
->fMask
& RBBIM_TEXT
) {
2771 Str_SetPtrW(&wstr
, lprbbi
->lpText
);
2773 Str_SetPtrAtoW(&wstr
, (LPSTR
)lprbbi
->lpText
);
2775 if (REBAR_strdifW(wstr
, lpBand
->lpText
)) {
2776 Free(lpBand
->lpText
);
2777 lpBand
->lpText
= wstr
;
2778 uChanged
|= RBBIM_TEXT
;
2784 REBAR_ValidateBand (infoPtr
, lpBand
);
2786 REBAR_DumpBand (infoPtr
);
2788 if (uChanged
& (RBBIM_CHILDSIZE
| RBBIM_SIZE
| RBBIM_STYLE
| RBBIM_IMAGE
)) {
2789 REBAR_Layout(infoPtr
);
2790 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
2798 REBAR_SetBarInfo (REBAR_INFO
*infoPtr
, const REBARINFO
*lpInfo
)
2803 if (!lpInfo
|| lpInfo
->cbSize
< sizeof (REBARINFO
))
2806 TRACE("setting bar info!\n");
2808 if (lpInfo
->fMask
& RBIM_IMAGELIST
) {
2809 infoPtr
->himl
= lpInfo
->himl
;
2810 if (infoPtr
->himl
) {
2812 ImageList_GetIconSize (infoPtr
->himl
, &cx
, &cy
);
2813 infoPtr
->imageSize
.cx
= cx
;
2814 infoPtr
->imageSize
.cy
= cy
;
2817 infoPtr
->imageSize
.cx
= 0;
2818 infoPtr
->imageSize
.cy
= 0;
2820 TRACE("new image cx=%d, cy=%d\n", infoPtr
->imageSize
.cx
,
2821 infoPtr
->imageSize
.cy
);
2824 /* revalidate all bands to reset flags for images in headers of bands */
2825 for (i
=0; i
<infoPtr
->uNumBands
; i
++) {
2826 lpBand
= REBAR_GetBand(infoPtr
, i
);
2827 REBAR_ValidateBand (infoPtr
, lpBand
);
2835 REBAR_SetBkColor (REBAR_INFO
*infoPtr
, COLORREF clr
)
2839 clrTemp
= infoPtr
->clrBk
;
2840 infoPtr
->clrBk
= clr
;
2842 TRACE("background color 0x%06x!\n", infoPtr
->clrBk
);
2848 /* << REBAR_SetColorScheme >> */
2849 /* << REBAR_SetPalette >> */
2853 REBAR_SetParent (REBAR_INFO
*infoPtr
, HWND parent
)
2855 HWND hwndTemp
= infoPtr
->hwndNotify
;
2857 infoPtr
->hwndNotify
= parent
;
2859 return (LRESULT
)hwndTemp
;
2864 REBAR_SetTextColor (REBAR_INFO
*infoPtr
, COLORREF clr
)
2868 clrTemp
= infoPtr
->clrText
;
2869 infoPtr
->clrText
= clr
;
2871 TRACE("text color 0x%06x!\n", infoPtr
->clrText
);
2877 /* << REBAR_SetTooltips >> */
2880 static inline LRESULT
2881 REBAR_SetUnicodeFormat (REBAR_INFO
*infoPtr
, BOOL unicode
)
2883 BOOL bTemp
= infoPtr
->bUnicode
;
2885 TRACE("to %s hwnd=%p, was %s\n",
2886 unicode
? "TRUE" : "FALSE", infoPtr
->hwndSelf
,
2887 (bTemp
) ? "TRUE" : "FALSE");
2889 infoPtr
->bUnicode
= unicode
;
2896 REBAR_SetVersion (REBAR_INFO
*infoPtr
, INT iVersion
)
2898 INT iOldVersion
= infoPtr
->iVersion
;
2900 if (iVersion
> COMCTL32_VERSION
)
2903 infoPtr
->iVersion
= iVersion
;
2905 TRACE("new version %d\n", iVersion
);
2912 REBAR_ShowBand (REBAR_INFO
*infoPtr
, INT iBand
, BOOL show
)
2916 if (iBand
< 0 || iBand
>= infoPtr
->uNumBands
)
2919 lpBand
= REBAR_GetBand(infoPtr
, iBand
);
2922 TRACE("show band %d\n", iBand
);
2923 lpBand
->fStyle
= lpBand
->fStyle
& ~RBBS_HIDDEN
;
2924 if (IsWindow (lpBand
->hwndChild
))
2925 ShowWindow (lpBand
->hwndChild
, SW_SHOW
);
2928 TRACE("hide band %d\n", iBand
);
2929 lpBand
->fStyle
= lpBand
->fStyle
| RBBS_HIDDEN
;
2930 if (IsWindow (lpBand
->hwndChild
))
2931 ShowWindow (lpBand
->hwndChild
, SW_HIDE
);
2934 REBAR_Layout(infoPtr
);
2935 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
2942 REBAR_SizeToRect (REBAR_INFO
*infoPtr
, WPARAM flags
, RECT
*lpRect
)
2944 if (!lpRect
) return FALSE
;
2946 TRACE("[%s]\n", wine_dbgstr_rect(lpRect
));
2947 REBAR_SizeToHeight(infoPtr
, get_rect_cy(infoPtr
, lpRect
));
2950 /* Note that this undocumented flag is available on comctl32 v6 or later */
2951 if ((flags
& RBSTR_CHANGERECT
) != 0)
2954 GetClientRect(infoPtr
->hwndSelf
, &rcRebar
);
2955 lpRect
->bottom
= lpRect
->top
+ (rcRebar
.bottom
- rcRebar
.top
);
2964 REBAR_Create (REBAR_INFO
*infoPtr
, LPCREATESTRUCTW cs
)
2968 if (TRACE_ON(rebar
)) {
2969 GetWindowRect(infoPtr
->hwndSelf
, &wnrc1
);
2970 GetClientRect(infoPtr
->hwndSelf
, &clrc1
);
2971 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
2972 wine_dbgstr_rect(&wnrc1
), wine_dbgstr_rect(&clrc1
),
2973 cs
->x
, cs
->y
, cs
->cx
, cs
->cy
);
2976 TRACE("created!\n");
2978 if (OpenThemeData (infoPtr
->hwndSelf
, themeClass
))
2980 /* native seems to clear WS_BORDER when themed */
2981 infoPtr
->dwStyle
&= ~WS_BORDER
;
2989 REBAR_Destroy (REBAR_INFO
*infoPtr
)
2994 /* clean up each band */
2995 for (i
= 0; i
< infoPtr
->uNumBands
; i
++) {
2996 lpBand
= REBAR_GetBand(infoPtr
, i
);
2998 /* delete text strings */
2999 Free (lpBand
->lpText
);
3000 lpBand
->lpText
= NULL
;
3001 /* destroy child window */
3002 DestroyWindow (lpBand
->hwndChild
);
3006 /* free band array */
3007 DPA_Destroy (infoPtr
->bands
);
3008 infoPtr
->bands
= NULL
;
3010 DestroyCursor (infoPtr
->hcurArrow
);
3011 DestroyCursor (infoPtr
->hcurHorz
);
3012 DestroyCursor (infoPtr
->hcurVert
);
3013 DestroyCursor (infoPtr
->hcurDrag
);
3014 if (infoPtr
->hDefaultFont
) DeleteObject (infoPtr
->hDefaultFont
);
3015 SetWindowLongPtrW (infoPtr
->hwndSelf
, 0, 0);
3017 CloseThemeData (GetWindowTheme (infoPtr
->hwndSelf
));
3019 /* free rebar info data */
3021 TRACE("destroyed!\n");
3026 REBAR_GetFont (const REBAR_INFO
*infoPtr
)
3028 return (LRESULT
)infoPtr
->hFont
;
3032 REBAR_PushChevron(const REBAR_INFO
*infoPtr
, UINT uBand
, LPARAM lParam
)
3034 if (uBand
< infoPtr
->uNumBands
)
3036 NMREBARCHEVRON nmrbc
;
3037 REBAR_BAND
*lpBand
= REBAR_GetBand(infoPtr
, uBand
);
3039 TRACE("Pressed chevron on band %u\n", uBand
);
3041 /* redraw chevron in pushed state */
3042 lpBand
->fDraw
|= DRAW_CHEVRONPUSHED
;
3043 RedrawWindow(infoPtr
->hwndSelf
, &lpBand
->rcChevron
,0,
3044 RDW_ERASE
|RDW_INVALIDATE
|RDW_UPDATENOW
);
3046 /* notify app so it can display a popup menu or whatever */
3047 nmrbc
.uBand
= uBand
;
3048 nmrbc
.wID
= lpBand
->wID
;
3049 nmrbc
.lParam
= lpBand
->lParam
;
3050 nmrbc
.rc
= lpBand
->rcChevron
;
3051 nmrbc
.lParamNM
= lParam
;
3052 REBAR_Notify((NMHDR
*)&nmrbc
, infoPtr
, RBN_CHEVRONPUSHED
);
3054 /* redraw chevron in previous state */
3055 lpBand
->fDraw
&= ~DRAW_CHEVRONPUSHED
;
3056 InvalidateRect(infoPtr
->hwndSelf
, &lpBand
->rcChevron
, TRUE
);
3064 REBAR_LButtonDown (REBAR_INFO
*infoPtr
, LPARAM lParam
)
3069 ptMouseDown
.x
= (short)LOWORD(lParam
);
3070 ptMouseDown
.y
= (short)HIWORD(lParam
);
3072 REBAR_InternalHitTest(infoPtr
, &ptMouseDown
, &htFlags
, &iHitBand
);