Merge r68232 to get Windows' rpcrt4.dll to work under ReactOS.
[reactos.git] / reactos / dll / win32 / comctl32 / rebar.c
1 /*
2 * Rebar control
3 *
4 * Copyright 1998, 1999 Eric Kohl
5 * Copyright 2007, 2008 Mikolaj Zalewski
6 *
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.
11 *
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.
16 *
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
20 *
21 * NOTES
22 *
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.
25 *
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.
29 *
30 * TODO
31 * Styles:
32 * - RBS_DBLCLKTOGGLE
33 * - RBS_FIXEDORDER
34 * - RBS_REGISTERDROP
35 * - RBS_TOOLTIPS
36 * Messages:
37 * - RB_BEGINDRAG
38 * - RB_DRAGMOVE
39 * - RB_ENDDRAG
40 * - RB_GETBANDMARGINS
41 * - RB_GETCOLORSCHEME
42 * - RB_GETDROPTARGET
43 * - RB_GETPALETTE
44 * - RB_SETCOLORSCHEME
45 * - RB_SETPALETTE
46 * - RB_SETTOOLTIPS
47 * - WM_CHARTOITEM
48 * - WM_LBUTTONDBLCLK
49 * - WM_PALETTECHANGED
50 * - WM_QUERYNEWPALETTE
51 * - WM_RBUTTONDOWN
52 * - WM_RBUTTONUP
53 * - WM_VKEYTOITEM
54 * - WM_WININICHANGE
55 * Notifications:
56 * - NM_HCHITTEST
57 * - NM_RELEASEDCAPTURE
58 * - RBN_AUTOBREAK
59 * - RBN_GETOBJECT
60 * - RBN_MINMAX
61 * Band styles:
62 * - RBBS_FIXEDBMP
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!!
66 */
67
68 /*
69 * Testing: set to 1 to make background brush *always* green
70 */
71 #define GLATESTING 0
72
73 /*
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
77 */
78
79 #include "comctl32.h"
80
81 WINE_DEFAULT_DEBUG_CHANNEL(rebar);
82
83 typedef struct
84 {
85 UINT fStyle;
86 UINT fMask;
87 COLORREF clrFore;
88 COLORREF clrBack;
89 INT iImage;
90 HWND hwndChild;
91 UINT cxMinChild; /* valid if _CHILDSIZE */
92 UINT cyMinChild; /* valid if _CHILDSIZE */
93 UINT cx; /* valid if _SIZE */
94 HBITMAP hbmBack;
95 UINT wID;
96 UINT cyChild; /* valid if _CHILDSIZE */
97 UINT cyMaxChild; /* valid if _CHILDSIZE */
98 UINT cyIntegral; /* valid if _CHILDSIZE */
99 UINT cxIdeal;
100 LPARAM lParam;
101 UINT cxHeader;
102
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 */
107
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 */
119
120 LPWSTR lpText;
121 HWND hwndPrevParent;
122 } REBAR_BAND;
123
124 /* has a value of: 0, CCS_TOP, CCS_NOMOVEY, CCS_BOTTOM */
125 #define CCS_LAYOUT_MASK 0x3
126
127 /* fStatus flags */
128 #define HAS_GRIPPER 0x00000001
129 #define HAS_IMAGE 0x00000002
130 #define HAS_TEXT 0x00000004
131
132 /* fDraw flags */
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
139
140 typedef struct
141 {
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) */
152 HFONT hDefaultFont;
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 */
172
173 HDPA bands; /* pointer to the array of rebar bands */
174 } REBAR_INFO;
175
176 /* fStatus flags */
177 #define BEGIN_DRAG_ISSUED 0x00000001
178 #define SELF_RESIZE 0x00000002
179 #define BAND_NEEDS_REDRAW 0x00000020
180
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
183
184 /* ---- REBAR layout constants. Mostly determined by ---- */
185 /* ---- experiment on WIN 98. ---- */
186
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)
191
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
195
196 /* Blank (background color) space after Image (if present). */
197 #define REBAR_POST_IMAGE 2
198
199 /* Blank (background color) space after Text (if present). */
200 #define REBAR_POST_TEXT 4
201
202 /* Height of vertical gripper in a CCS_VERT rebar. */
203 #define GRIPPER_HEIGHT 16
204
205 /* Blank (background color) space before Gripper (if present). */
206 #define REBAR_PRE_GRIPPER 2
207
208 /* Width (of normal vertical gripper) or height (of horz. gripper) */
209 /* if present. */
210 #define GRIPPER_WIDTH 3
211
212 /* Width of the chevron button if present */
213 #define CHEVRON_WIDTH 10
214
215 /* the gap between the child and the next band */
216 #define REBAR_POST_CHILD 4
217
218 /* Height of divider for Rebar if not disabled (CCS_NODIVIDER) */
219 /* either top or bottom */
220 #define REBAR_DIVIDER 2
221
222 /* height of a rebar without a child */
223 #define REBAR_NO_CHILD_HEIGHT 4
224
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
228
229 /* This is the increment that is used over the band height */
230 #define REBARSPACE(a) ((a->fStyle & RBBS_CHILDEDGE) ? 2*REBAR_DIVIDER : 0)
231
232 /* ---- End of REBAR layout constants. ---- */
233
234 #define RB_GETBANDINFO_OLD (WM_USER+5) /* obsoleted after IE3, but we have to support it anyway */
235
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)))
240
241 #define REBAR_GetInfoPtr(wndPtr) ((REBAR_INFO *)GetWindowLongPtrW (hwnd, 0))
242
243 static LRESULT REBAR_NotifyFormat(REBAR_INFO *infoPtr, LPARAM lParam);
244 static void REBAR_AutoSize(REBAR_INFO *infoPtr, BOOL needsLayout);
245
246 /* no index check here */
247 static inline REBAR_BAND* REBAR_GetBand(const REBAR_INFO *infoPtr, INT i)
248 {
249 assert(i >= 0 && i < infoPtr->uNumBands);
250 return DPA_GetPtr(infoPtr->bands, i);
251 }
252
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;
257
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 */
268 NULL };
269
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 */
283 NULL };
284
285
286 static CHAR line[200];
287
288 static const WCHAR themeClass[] = { 'R','e','b','a','r',0 };
289
290 static CHAR *
291 REBAR_FmtStyle( UINT style)
292 {
293 INT i = 0;
294
295 *line = 0;
296 while (band_stylename[i]) {
297 if (style & (1<<i)) {
298 if (*line != 0) strcat(line, " | ");
299 strcat(line, band_stylename[i]);
300 }
301 i++;
302 }
303 return line;
304 }
305
306
307 static CHAR *
308 REBAR_FmtMask( UINT mask)
309 {
310 INT i = 0;
311
312 *line = 0;
313 while (band_maskname[i]) {
314 if (mask & (1<<i)) {
315 if (*line != 0) strcat(line, " | ");
316 strcat(line, band_maskname[i]);
317 }
318 i++;
319 }
320 return line;
321 }
322
323
324 static VOID
325 REBAR_DumpBandInfo(const REBARBANDINFOW *pB)
326 {
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);
334 TRACE("\n");
335
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 )) {
340 TRACE("band info:");
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);
349 TRACE("\n");
350 }
351 if (pB->fMask & RBBIM_CHILDSIZE)
352 TRACE("band info: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
353 pB->cxMinChild,
354 pB->cyMinChild, pB->cyChild, pB->cyMaxChild, pB->cyIntegral);
355 }
356
357 static VOID
358 REBAR_DumpBand (const REBAR_INFO *iP)
359 {
360 REBAR_BAND *pB;
361 UINT i;
362
363 if(! TRACE_ON(rebar) ) return;
364
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,
371 iP->iGrabbedBand);
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);
384 TRACE("\n");
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",
390 i, pB->cxHeader);
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);
398 }
399 TRACE("\n");
400 if (RBBIM_CHILDSIZE)
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));
414 }
415
416 }
417
418 /* dest can be equal to src */
419 static void translate_rect(const REBAR_INFO *infoPtr, RECT *dest, const RECT *src)
420 {
421 if (infoPtr->dwStyle & CCS_VERT) {
422 int tmp;
423 tmp = src->left;
424 dest->left = src->top;
425 dest->top = tmp;
426
427 tmp = src->right;
428 dest->right = src->bottom;
429 dest->bottom = tmp;
430 } else {
431 *dest = *src;
432 }
433 }
434
435 static int get_rect_cx(const REBAR_INFO *infoPtr, const RECT *lpRect)
436 {
437 if (infoPtr->dwStyle & CCS_VERT)
438 return lpRect->bottom - lpRect->top;
439 return lpRect->right - lpRect->left;
440 }
441
442 static int get_rect_cy(const REBAR_INFO *infoPtr, const RECT *lpRect)
443 {
444 if (infoPtr->dwStyle & CCS_VERT)
445 return lpRect->right - lpRect->left;
446 return lpRect->bottom - lpRect->top;
447 }
448
449 static int round_child_height(const REBAR_BAND *lpBand, int cyHeight)
450 {
451 int cy = 0;
452 if (lpBand->cyIntegral == 0)
453 return cyHeight;
454 cy = max(cyHeight - (int)lpBand->cyMinChild, 0);
455 cy = lpBand->cyMinChild + (cy/lpBand->cyIntegral) * lpBand->cyIntegral;
456 cy = min(cy, lpBand->cyMaxChild);
457 return cy;
458 }
459
460 static void update_min_band_height(const REBAR_INFO *infoPtr, REBAR_BAND *lpBand)
461 {
462 lpBand->cyMinBand = max(lpBand->cyHeader,
463 (lpBand->hwndChild ? lpBand->cyChild + REBARSPACE(lpBand) : REBAR_NO_CHILD_HEIGHT));
464 }
465
466 static void
467 REBAR_DrawChevron (HDC hdc, INT left, INT top, INT colorRef)
468 {
469 INT x, y;
470 HPEN hPen, hOldPen;
471
472 if (!(hPen = CreatePen( PS_SOLID, 1, GetSysColor( colorRef )))) return;
473 hOldPen = SelectObject ( hdc, hPen );
474 x = left + 2;
475 y = top;
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 );
484 }
485
486 static HWND
487 REBAR_GetNotifyParent (const REBAR_INFO *infoPtr)
488 {
489 HWND parent, owner;
490
491 parent = infoPtr->hwndNotify;
492 if (!parent) {
493 parent = GetParent (infoPtr->hwndSelf);
494 owner = GetWindow (infoPtr->hwndSelf, GW_OWNER);
495 if (owner) parent = owner;
496 }
497 return parent;
498 }
499
500
501 static INT
502 REBAR_Notify (NMHDR *nmhdr, const REBAR_INFO *infoPtr, UINT code)
503 {
504 HWND parent;
505
506 parent = REBAR_GetNotifyParent (infoPtr);
507 nmhdr->idFrom = GetDlgCtrlID (infoPtr->hwndSelf);
508 nmhdr->hwndFrom = infoPtr->hwndSelf;
509 nmhdr->code = code;
510
511 TRACE("window %p, code=%08x, via %s\n", parent, code, (infoPtr->bUnicode)?"Unicode":"ANSI");
512
513 return SendMessageW(parent, WM_NOTIFY, nmhdr->idFrom, (LPARAM)nmhdr);
514 }
515
516 static INT
517 REBAR_Notify_NMREBAR (const REBAR_INFO *infoPtr, UINT uBand, UINT code)
518 {
519 NMREBAR notify_rebar;
520
521 notify_rebar.dwMask = 0;
522 if (uBand != -1) {
523 REBAR_BAND *lpBand = REBAR_GetBand(infoPtr, uBand);
524
525 if (lpBand->fMask & RBBIM_ID) {
526 notify_rebar.dwMask |= RBNM_ID;
527 notify_rebar.wID = lpBand->wID;
528 }
529 if (lpBand->fMask & RBBIM_LPARAM) {
530 notify_rebar.dwMask |= RBNM_LPARAM;
531 notify_rebar.lParam = lpBand->lParam;
532 }
533 if (lpBand->fMask & RBBIM_STYLE) {
534 notify_rebar.dwMask |= RBNM_STYLE;
535 notify_rebar.fStyle = lpBand->fStyle;
536 }
537 }
538 notify_rebar.uBand = uBand;
539 return REBAR_Notify ((NMHDR *)&notify_rebar, infoPtr, code);
540 }
541
542 static VOID
543 REBAR_DrawBand (HDC hdc, const REBAR_INFO *infoPtr, REBAR_BAND *lpBand)
544 {
545 HFONT hOldFont = 0;
546 INT oldBkMode = 0;
547 NMCUSTOMDRAW nmcd;
548 HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
549 RECT rcBand;
550
551 translate_rect(infoPtr, &rcBand, &lpBand->rcBand);
552
553 if (lpBand->fDraw & DRAW_TEXT) {
554 hOldFont = SelectObject (hdc, infoPtr->hFont);
555 oldBkMode = SetBkMode (hdc, TRANSPARENT);
556 }
557
558 /* should test for CDRF_NOTIFYITEMDRAW here */
559 nmcd.dwDrawStage = CDDS_ITEMPREPAINT;
560 nmcd.hdc = hdc;
561 nmcd.rc = rcBand;
562 nmcd.rc.right = lpBand->rcCapText.right;
563 nmcd.rc.bottom = lpBand->rcCapText.bottom;
564 nmcd.dwItemSpec = lpBand->wID;
565 nmcd.uItemState = 0;
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);
572 return;
573 }
574
575 /* draw gripper */
576 if (lpBand->fDraw & DRAW_GRIPPER)
577 {
578 if (theme)
579 {
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);
586 }
587 else
588 DrawEdge (hdc, &lpBand->rcGripper, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
589 }
590
591 /* draw caption image */
592 if (lpBand->fDraw & DRAW_IMAGE) {
593 POINT pt;
594
595 /* center 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;
598
599 ImageList_Draw (infoPtr->himl, lpBand->iImage, hdc,
600 pt.x, pt.y,
601 ILD_TRANSPARENT);
602 }
603
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;
609 COLORREF new;
610 if (lpBand->clrFore != CLR_NONE) {
611 new = (lpBand->clrFore == CLR_DEFAULT) ? infoPtr->clrBtnText :
612 lpBand->clrFore;
613 oldcolor = SetTextColor (hdc, new);
614 }
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);
622 }
623
624 if (!IsRectEmpty(&lpBand->rcChevron))
625 {
626 if (theme)
627 {
628 int stateId;
629 if (lpBand->fDraw & DRAW_CHEVRONPUSHED)
630 stateId = CHEVS_PRESSED;
631 else if (lpBand->fDraw & DRAW_CHEVRONHOT)
632 stateId = CHEVS_HOT;
633 else
634 stateId = CHEVS_NORMAL;
635 DrawThemeBackground (theme, hdc, RP_CHEVRON, stateId, &lpBand->rcChevron, NULL);
636 }
637 else
638 {
639 if (lpBand->fDraw & DRAW_CHEVRONPUSHED)
640 {
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);
643 }
644 else if (lpBand->fDraw & DRAW_CHEVRONHOT)
645 {
646 DrawEdge(hdc, &lpBand->rcChevron, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
647 REBAR_DrawChevron(hdc, lpBand->rcChevron.left, lpBand->rcChevron.top + 10, COLOR_WINDOWFRAME);
648 }
649 else
650 REBAR_DrawChevron(hdc, lpBand->rcChevron.left, lpBand->rcChevron.top + 10, COLOR_WINDOWFRAME);
651 }
652 }
653
654 if (lpBand->uCDret == (CDRF_NOTIFYPOSTPAINT | CDRF_NOTIFYITEMDRAW)) {
655 nmcd.dwDrawStage = CDDS_ITEMPOSTPAINT;
656 nmcd.hdc = hdc;
657 nmcd.rc = rcBand;
658 nmcd.rc.right = lpBand->rcCapText.right;
659 nmcd.rc.bottom = lpBand->rcCapText.bottom;
660 nmcd.dwItemSpec = lpBand->wID;
661 nmcd.uItemState = 0;
662 nmcd.lItemlParam = lpBand->lParam;
663 lpBand->uCDret = REBAR_Notify ((NMHDR *)&nmcd, infoPtr, NM_CUSTOMDRAW);
664 }
665 }
666
667
668 static VOID
669 REBAR_Refresh (const REBAR_INFO *infoPtr, HDC hdc)
670 {
671 REBAR_BAND *lpBand;
672 UINT i;
673
674 if (!infoPtr->DoRedraw) return;
675
676 for (i = 0; i < infoPtr->uNumBands; i++) {
677 lpBand = REBAR_GetBand(infoPtr, i);
678
679 if (HIDDENBAND(lpBand)) continue;
680
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);
685 }
686 }
687
688
689 static void
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. *** */
694 {
695 REBAR_BAND *lpBand;
696 UINT i, xoff;
697 RECT work;
698
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);
705 continue;
706 }
707
708 /* set initial gripper rectangle */
709 SetRect (&lpBand->rcGripper, lpBand->rcBand.left, lpBand->rcBand.top,
710 lpBand->rcBand.left, lpBand->rcBand.bottom);
711
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;
719
720 SetRect (&lpBand->rcCapImage,
721 lpBand->rcGripper.right+REBAR_ALWAYS_SPACE, lpBand->rcBand.top,
722 lpBand->rcGripper.right+REBAR_ALWAYS_SPACE, lpBand->rcBand.bottom);
723 }
724 else { /* no gripper will be drawn */
725 xoff = 0;
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);
732 }
733
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;
739
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);
744 }
745 else {
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);
749 }
750
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);
756 }
757
758 /* set initial child window rectangle if there is a child */
759 if (lpBand->hwndChild) {
760
761 lpBand->rcChild.left = lpBand->rcBand.left + lpBand->cxHeader;
762 lpBand->rcChild.right = lpBand->rcBand.right - REBAR_POST_CHILD;
763
764 if (lpBand->cyChild > 0) {
765
766 UINT yoff = (lpBand->rcBand.bottom - lpBand->rcBand.top - lpBand->cyChild) / 2;
767
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;
771 }
772 else {
773 lpBand->rcChild.top = lpBand->rcBand.top;
774 lpBand->rcChild.bottom = lpBand->rcBand.bottom;
775 }
776
777 if ((lpBand->fStyle & RBBS_USECHEVRON) && (lpBand->rcChild.right - lpBand->rcChild.left < lpBand->cxIdeal))
778 {
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);
783 }
784 }
785 else {
786 SetRect (&lpBand->rcChild,
787 lpBand->rcBand.left+lpBand->cxHeader, lpBand->rcBand.top,
788 lpBand->rcBand.right, lpBand->rcBand.bottom);
789 }
790
791 /* flag if notify required and invalidate rectangle */
792 if (lpBand->fDraw & NTF_INVALIDATE) {
793 TRACE("invalidating (%d,%d)-(%d,%d)\n",
794 lpBand->rcBand.left,
795 lpBand->rcBand.top,
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);
804 }
805
806 }
807
808 }
809
810
811 static VOID
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. *** */
816 {
817 REBAR_BAND *lpBand;
818 UINT i, xoff;
819 RECT work;
820
821 for(i=rstart; i<rend; i++){
822 RECT rcBand;
823 lpBand = REBAR_GetBand(infoPtr, i);
824 if (HIDDENBAND(lpBand)) continue;
825
826 translate_rect(infoPtr, &rcBand, &lpBand->rcBand);
827
828 /* set initial gripper rectangle */
829 SetRect (&lpBand->rcGripper, rcBand.left, rcBand.top, rcBand.right, rcBand.top);
830
831 /* calculate gripper rectangle */
832 if (lpBand->fStatus & HAS_GRIPPER) {
833 lpBand->fDraw |= DRAW_GRIPPER;
834
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;
841
842 /* initialize Caption image rectangle */
843 SetRect (&lpBand->rcCapImage, rcBand.left,
844 lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE,
845 rcBand.right,
846 lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE);
847 }
848 else {
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;
854
855 /* initialize Caption image rectangle */
856 SetRect (&lpBand->rcCapImage, rcBand.left,
857 lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE,
858 rcBand.right,
859 lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE);
860 }
861 }
862 else { /* no gripper will be drawn */
863 xoff = 0;
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);
871 }
872
873 /* image is visible */
874 if (lpBand->fStatus & HAS_IMAGE) {
875 lpBand->fDraw |= DRAW_IMAGE;
876
877 lpBand->rcCapImage.right = lpBand->rcCapImage.left + infoPtr->imageSize.cx;
878 lpBand->rcCapImage.bottom += infoPtr->imageSize.cy;
879
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);
884 }
885 else {
886 /* set initial caption text rectangle */
887 SetRect (&lpBand->rcCapText,
888 rcBand.left, lpBand->rcCapImage.bottom,
889 rcBand.right, rcBand.top+lpBand->cxHeader);
890 }
891
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);
897 }
898
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);
906 }
907 else {
908 SetRect (&lpBand->rcChild,
909 rcBand.left, rcBand.top+lpBand->cxHeader,
910 rcBand.right, rcBand.bottom);
911 }
912
913 if (lpBand->fDraw & NTF_INVALIDATE) {
914 TRACE("invalidating (%d,%d)-(%d,%d)\n",
915 rcBand.left,
916 rcBand.top,
917 rcBand.right + SEP_WIDTH,
918 rcBand.bottom + SEP_WIDTH);
919 lpBand->fDraw &= ~NTF_INVALIDATE;
920 work = rcBand;
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);
925 }
926
927 }
928 }
929
930
931 static VOID
932 REBAR_ForceResize (REBAR_INFO *infoPtr)
933 /* Function: This changes the size of the REBAR window to that */
934 /* calculated by REBAR_Layout. */
935 {
936 INT x, y, width, height;
937 INT xedge = 0, yedge = 0;
938 RECT rcSelf;
939
940 TRACE("new size [%d x %d]\n", infoPtr->calcSize.cx, infoPtr->calcSize.cy);
941
942 if (infoPtr->dwStyle & CCS_NORESIZE)
943 return;
944
945 if (infoPtr->dwStyle & WS_BORDER)
946 {
947 xedge = GetSystemMetrics(SM_CXEDGE);
948 yedge = GetSystemMetrics(SM_CYEDGE);
949 /* swap for CCS_VERT? */
950 }
951
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);
956
957 height = infoPtr->calcSize.cy + 2*yedge;
958 if (!(infoPtr->dwStyle & CCS_NOPARENTALIGN)) {
959 RECT rcParent;
960
961 x = -xedge;
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 */
966 case CCS_TOP:
967 y = ((infoPtr->dwStyle & CCS_NODIVIDER) ? 0 : REBAR_DIVIDER) - yedge;
968 break;
969 case CCS_NOMOVEY:
970 y = rcSelf.top;
971 break;
972 case CCS_BOTTOM:
973 GetClientRect(GetParent(infoPtr->hwndSelf), &rcParent);
974 translate_rect(infoPtr, &rcParent, &rcParent);
975 y = rcParent.bottom - infoPtr->calcSize.cy - yedge;
976 break;
977 }
978 }
979 else {
980 x = rcSelf.left;
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;
985 }
986
987 TRACE("hwnd %p, style=%08x, setting at (%d,%d) for (%d,%d)\n",
988 infoPtr->hwndSelf, infoPtr->dwStyle, x, y, width, height);
989
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);
994 else
995 SetWindowPos(infoPtr->hwndSelf, 0, y, x, height, width, SWP_NOZORDER);
996 infoPtr->fStatus &= ~SELF_RESIZE;
997 }
998
999
1000 static VOID
1001 REBAR_MoveChildWindows (const REBAR_INFO *infoPtr, UINT start, UINT endplus)
1002 {
1003 static const WCHAR strComboBox[] = { 'C','o','m','b','o','B','o','x',0 };
1004 REBAR_BAND *lpBand;
1005 WCHAR szClassName[40];
1006 UINT i;
1007 NMREBARCHILDSIZE rbcz;
1008 HDWP deferpos;
1009
1010 if (!(deferpos = BeginDeferWindowPos(infoPtr->uNumBands)))
1011 ERR("BeginDeferWindowPos returned NULL\n");
1012
1013 for (i = start; i < endplus; i++) {
1014 lpBand = REBAR_GetBand(infoPtr, i);
1015
1016 if (HIDDENBAND(lpBand)) continue;
1017 if (lpBand->hwndChild) {
1018 TRACE("hwndChild = %p\n", lpBand->hwndChild);
1019
1020 /* Always generate the RBN_CHILDSIZE even if child
1021 did not change */
1022 rbcz.uBand = i;
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;
1028 else
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; /* *** ??? */
1037 }
1038
1039 GetClassNameW (lpBand->hwndChild, szClassName, sizeof(szClassName)/sizeof(szClassName[0]));
1040 if (!lstrcmpW (szClassName, strComboBox) ||
1041 !lstrcmpW (szClassName, WC_COMBOBOXEXW)) {
1042 INT nEditHeight, yPos;
1043 RECT rc;
1044
1045 /* special placement code for combo or comboex box */
1046
1047
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;
1052
1053 /* center combo box inside child area */
1054 TRACE("moving child (Combo(Ex)) %p to (%d,%d) for (%d,%d)\n",
1055 lpBand->hwndChild,
1056 lpBand->rcChild.left, yPos,
1057 lpBand->rcChild.right - lpBand->rcChild.left,
1058 nEditHeight);
1059 deferpos = DeferWindowPos (deferpos, lpBand->hwndChild, HWND_TOP,
1060 lpBand->rcChild.left,
1061 /*lpBand->rcChild.top*/ yPos,
1062 lpBand->rcChild.right - lpBand->rcChild.left,
1063 nEditHeight,
1064 SWP_NOZORDER);
1065 if (!deferpos)
1066 ERR("DeferWindowPos returned NULL\n");
1067 }
1068 else {
1069 TRACE("moving child (Other) %p to (%d,%d) for (%d,%d)\n",
1070 lpBand->hwndChild,
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,
1079 SWP_NOZORDER);
1080 if (!deferpos)
1081 ERR("DeferWindowPos returned NULL\n");
1082 }
1083 }
1084 }
1085 if (!EndDeferWindowPos(deferpos))
1086 ERR("EndDeferWindowPos returned NULL\n");
1087
1088 if (infoPtr->DoRedraw)
1089 UpdateWindow (infoPtr->hwndSelf);
1090 }
1091
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)
1095 {
1096 unsigned int n;
1097 for (n = i + 1; n < infoPtr->uNumBands; n++)
1098 if (!HIDDENBAND(REBAR_GetBand(infoPtr, n)))
1099 break;
1100 return n;
1101 }
1102
1103 /* Returns the previous visible band (the last visible band in [0; i) )
1104 * or -1 if none */
1105 static int prev_visible(const REBAR_INFO *infoPtr, int i)
1106 {
1107 int n;
1108 for (n = i - 1; n >= 0; n--)
1109 if (!HIDDENBAND(REBAR_GetBand(infoPtr, n)))
1110 break;
1111 return n;
1112 }
1113
1114 /* Returns the first visible band or infoPtr->uNumBands if none */
1115 static int first_visible(const REBAR_INFO *infoPtr)
1116 {
1117 return next_visible(infoPtr, -1); /* this works*/
1118 }
1119
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)
1122 {
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)
1127 break;
1128 else
1129 iLastBand = iBand;
1130 }
1131 return iLastBand;
1132 }
1133
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)
1136 {
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)
1140 break;
1141 return iBand;
1142 }
1143
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)
1147 {
1148 int xPos = 0, i;
1149 for (i = iBeginBand; i < iEndBand; i = next_visible(infoPtr, i))
1150 {
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;
1157 }
1158 xPos += lpBand->cxEffective + SEP_WIDTH;
1159 }
1160 }
1161
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
1167 */
1168 static REBAR_BAND *REBAR_FindBandToGrow(const REBAR_INFO *infoPtr, INT iBeginBand, INT iEndBand)
1169 {
1170 INT cxMinFirstBand = 0, i;
1171
1172 cxMinFirstBand = REBAR_GetBand(infoPtr, iBeginBand)->cxMinBand;
1173
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))
1177 break;
1178
1179 if (i < iBeginBand)
1180 for (i = prev_visible(infoPtr, iEndBand); i >= iBeginBand; i = prev_visible(infoPtr, i))
1181 if (REBAR_GetBand(infoPtr, i)->cxMinBand == cxMinFirstBand)
1182 break;
1183
1184 TRACE("Extra space for row [%d..%d) should be added to band %d\n", iBeginBand, iEndBand, i);
1185 return REBAR_GetBand(infoPtr, i);
1186 }
1187
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)
1190 {
1191 REBAR_BAND *lpBand;
1192 INT width, i;
1193
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))
1196 {
1197 lpBand = REBAR_GetBand(infoPtr, i);
1198
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;
1204 if (cxShrink == 0)
1205 break;
1206 }
1207 return cxShrink;
1208 }
1209
1210
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)
1214 {
1215 REBAR_BAND *lpBand;
1216 INT width, i;
1217
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))
1220 {
1221 lpBand = REBAR_GetBand(infoPtr, i);
1222
1223 width = max(lpBand->cxEffective - cxShrink, (int)lpBand->cxMinBand);
1224 cxShrink -= lpBand->cxEffective - width;
1225 lpBand->cxEffective = width;
1226 if (bEnforce)
1227 lpBand->cx = lpBand->cxEffective;
1228 if (cxShrink == 0)
1229 break;
1230 }
1231 return cxShrink;
1232 }
1233
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)
1237 {
1238 REBAR_BAND *insertBand = REBAR_GetBand(infoPtr, iBand);
1239 int xPos = 0, i;
1240 const BOOL setBreak = REBAR_GetBand(infoPtr, iFirstBand)->fStyle & RBBS_BREAK;
1241
1242 /* Find the band's new position */
1243 if(reorder)
1244 {
1245 /* Used during an LR band reorder drag */
1246 for (i = iFirstBand; i < iLastBand; i = next_visible(infoPtr, i))
1247 {
1248 if(xPos > xOff)
1249 break;
1250 xPos += REBAR_GetBand(infoPtr, i)->cxEffective + SEP_WIDTH;
1251 }
1252 }
1253 else
1254 {
1255 /* Used during a UD band insertion drag */
1256 for (i = iFirstBand; i < iLastBand; i = next_visible(infoPtr, i))
1257 {
1258 const REBAR_BAND *band = REBAR_GetBand(infoPtr, i);
1259 if(xPos + band->cxMinBand / 2 > xOff)
1260 break;
1261 xPos += band->cxEffective + SEP_WIDTH;
1262 }
1263 }
1264
1265 /* Move the band to its new position */
1266 DPA_DeletePtr(infoPtr->bands, iBand);
1267 if(i > iBand)
1268 i--;
1269 DPA_InsertPtr(infoPtr->bands, i, insertBand);
1270
1271 /* Ensure only the last band has the RBBS_BREAK flag set */
1272 insertBand->fStyle &= ~RBBS_BREAK;
1273 if(setBreak)
1274 REBAR_GetBand(infoPtr, iFirstBand)->fStyle |= RBBS_BREAK;
1275
1276 /* Return the currently grabbed band */
1277 if(infoPtr->iGrabbedBand == iBand)
1278 {
1279 infoPtr->iGrabbedBand = i;
1280 return i;
1281 }
1282 else return -1;
1283 }
1284
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)
1287 {
1288 REBAR_BAND *lpBand;
1289 int yMaxHeight = 0;
1290 int yPos = yStart;
1291 int row = REBAR_GetBand(infoPtr, iBeginBand)->iRow;
1292 int i;
1293 for (i = iBeginBand; i < iEndBand; i = next_visible(infoPtr, i))
1294 {
1295 lpBand = REBAR_GetBand(infoPtr, i);
1296 lpBand->cyRowSoFar = yMaxHeight;
1297 yMaxHeight = max(yMaxHeight, lpBand->cyMinBand);
1298 }
1299 TRACE("Bands [%d; %d) height: %d\n", iBeginBand, iEndBand, yMaxHeight);
1300
1301 for (i = iBeginBand; i < iEndBand; i = next_visible(infoPtr, i))
1302 {
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;
1307 row = lpBand->iRow;
1308 }
1309
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));
1315 }
1316 }
1317 return yPos + yMaxHeight;
1318 }
1319
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)
1322 {
1323 REBAR_BAND *lpBand;
1324 int i, extra;
1325 int width = 0;
1326
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;
1330
1331 /* compute the extra space */
1332 for (i = iBeginBand; i < iEndBand; i = next_visible(infoPtr, i))
1333 {
1334 lpBand = REBAR_GetBand(infoPtr, i);
1335 if (i > iBeginBand)
1336 width += SEP_WIDTH;
1337 lpBand->cxEffective = max(lpBand->cxMinBand, lpBand->cx);
1338 width += lpBand->cxEffective;
1339 }
1340
1341 extra = cx - width;
1342 TRACE("Extra space: %d\n", extra);
1343 if (extra < 0) {
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);
1347 } else
1348 if (extra > 0) {
1349 lpBand = REBAR_FindBandToGrow(infoPtr, iBeginBand, iEndBand);
1350 lpBand->cxEffective += extra;
1351 }
1352
1353 REBAR_SetRowRectsX(infoPtr, iBeginBand, iEndBand);
1354 if (infoPtr->dwStyle & RBS_VARHEIGHT)
1355 {
1356 if (*piRow > 0)
1357 *pyPos += SEP_WIDTH;
1358 *pyPos = REBAR_SetBandsHeight(infoPtr, iBeginBand, iEndBand, *pyPos);
1359 }
1360 (*piRow)++;
1361 }
1362
1363 static VOID
1364 REBAR_Layout(REBAR_INFO *infoPtr)
1365 {
1366 REBAR_BAND *lpBand;
1367 RECT rcAdj;
1368 SIZE oldSize;
1369 INT adjcx, i;
1370 INT rowstart;
1371 INT row = 0;
1372 INT xMin, yPos;
1373
1374 if (infoPtr->dwStyle & (CCS_NORESIZE | CCS_NOPARENTALIGN) || GetParent(infoPtr->hwndSelf) == NULL)
1375 GetClientRect(infoPtr->hwndSelf, &rcAdj);
1376 else
1377 GetClientRect(GetParent(infoPtr->hwndSelf), &rcAdj);
1378 TRACE("adjustment rect is (%s)\n", wine_dbgstr_rect(&rcAdj));
1379
1380 adjcx = get_rect_cx(infoPtr, &rcAdj);
1381
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);
1388 return;
1389 }
1390
1391 yPos = 0;
1392 xMin = 0;
1393 rowstart = first_visible(infoPtr);
1394 /* divide rows */
1395 for (i = rowstart; i < infoPtr->uNumBands; i = next_visible(infoPtr, i))
1396 {
1397 lpBand = REBAR_GetBand(infoPtr, i);
1398
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);
1402 rowstart = i;
1403 xMin = 0;
1404 }
1405 else
1406 xMin += SEP_WIDTH;
1407
1408 xMin += lpBand->cxMinBand;
1409 }
1410 if (rowstart < infoPtr->uNumBands)
1411 REBAR_LayoutRow(infoPtr, rowstart, infoPtr->uNumBands, adjcx, &row, &yPos);
1412
1413 if (!(infoPtr->dwStyle & RBS_VARHEIGHT))
1414 yPos = REBAR_SetBandsHeight(infoPtr, first_visible(infoPtr), infoPtr->uNumBands, 0);
1415
1416 infoPtr->uNumRows = row;
1417
1418 if (infoPtr->dwStyle & CCS_VERT)
1419 REBAR_CalcVertBand(infoPtr, 0, infoPtr->uNumBands);
1420 else
1421 REBAR_CalcHorzBand(infoPtr, 0, infoPtr->uNumBands);
1422 /* now compute size of Rebar itself */
1423 oldSize = infoPtr->calcSize;
1424
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);
1430
1431 REBAR_DumpBand (infoPtr);
1432 REBAR_MoveChildWindows (infoPtr, 0, infoPtr->uNumBands);
1433 REBAR_ForceResize (infoPtr);
1434
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)
1438 {
1439 NMHDR heightchange;
1440 REBAR_Notify(&heightchange, infoPtr, RBN_HEIGHTCHANGE);
1441 REBAR_AutoSize(infoPtr, FALSE);
1442 }
1443 }
1444
1445 /* iBeginBand must be visible */
1446 static int
1447 REBAR_SizeChildrenToHeight(const REBAR_INFO *infoPtr, int iBeginBand, int iEndBand, int extra, BOOL *fChanged)
1448 {
1449 int cyBandsOld;
1450 int cyBandsNew = 0;
1451 int i;
1452
1453 TRACE("[%d;%d) by %d\n", iBeginBand, iEndBand, extra);
1454
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))
1458 {
1459 REBAR_BAND *lpBand = REBAR_GetBand(infoPtr, i);
1460 int cyMaxChild = cyBandsOld - REBARSPACE(lpBand) + extra;
1461 int cyChild = round_child_height(lpBand, cyMaxChild);
1462
1463 if (lpBand->hwndChild && cyChild != lpBand->cyChild && (lpBand->fStyle & RBBS_VARIABLEHEIGHT))
1464 {
1465 TRACE("Resizing %d: %d -> %d [%d]\n", i, lpBand->cyChild, cyChild, lpBand->cyMaxChild);
1466 *fChanged = TRUE;
1467 lpBand->cyChild = cyChild;
1468 lpBand->fDraw |= NTF_INVALIDATE;
1469 update_min_band_height(infoPtr, lpBand);
1470 }
1471 cyBandsNew = max(cyBandsNew, lpBand->cyMinBand);
1472 }
1473 return cyBandsNew - cyBandsOld;
1474 }
1475
1476 /* worker function for RB_SIZETORECT and RBS_AUTOSIZE */
1477 static VOID
1478 REBAR_SizeToHeight(REBAR_INFO *infoPtr, int height)
1479 {
1480 int extra = height - infoPtr->calcSize.cy; /* may be negative */
1481 BOOL fChanged = FALSE;
1482 UINT uNumRows = infoPtr->uNumRows;
1483 int i;
1484
1485 if (uNumRows == 0) /* avoid division by 0 */
1486 return;
1487
1488 /* That's not exactly what Windows does but should be similar */
1489
1490 /* Pass one: break-up/glue rows */
1491 if (extra > 0)
1492 {
1493 for (i = prev_visible(infoPtr, infoPtr->uNumBands); i > 0; i = prev_visible(infoPtr, i))
1494 {
1495 REBAR_BAND *lpBand = REBAR_GetBand(infoPtr, i);
1496 int cyBreakExtra; /* additional cy for the rebar after a RBBS_BREAK on this band */
1497
1498 height = lpBand->rcBand.bottom - lpBand->rcBand.top;
1499
1500 if (infoPtr->dwStyle & RBS_VARHEIGHT)
1501 cyBreakExtra = lpBand->cyRowSoFar; /* 'height' => 'lpBand->cyRowSoFar' + 'height'*/
1502 else
1503 cyBreakExtra = height; /* 'height' => 'height' + 'height'*/
1504 cyBreakExtra += SEP_WIDTH;
1505
1506 if (extra <= cyBreakExtra / 2)
1507 break;
1508
1509 if (!(lpBand->fStyle & RBBS_BREAK))
1510 {
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;
1514 fChanged = TRUE;
1515 extra -= cyBreakExtra;
1516 uNumRows++;
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;
1520 }
1521 }
1522 }
1523 /* TODO: else if (extra < 0) { try to remove some RBBS_BREAKs } */
1524
1525 /* Pass two: increase/decrease control height */
1526 if (infoPtr->dwStyle & RBS_VARHEIGHT)
1527 {
1528 int i = first_visible(infoPtr);
1529 int iRow = 0;
1530 while (i < infoPtr->uNumBands)
1531 {
1532 REBAR_BAND *lpBand = REBAR_GetBand(infoPtr, i);
1533 int extraForRow = extra / (int)(uNumRows - iRow);
1534 int rowEnd;
1535
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)
1540 break;
1541
1542 extra -= REBAR_SizeChildrenToHeight(infoPtr, i, rowEnd, extraForRow, &fChanged);
1543 TRACE("extra = %d\n", extra);
1544 i = rowEnd;
1545 iRow++;
1546 }
1547 }
1548 else
1549 REBAR_SizeChildrenToHeight(infoPtr, first_visible(infoPtr), infoPtr->uNumBands, extra / infoPtr->uNumRows, &fChanged);
1550
1551 if (fChanged)
1552 REBAR_Layout(infoPtr);
1553 }
1554
1555 static VOID
1556 REBAR_AutoSize(REBAR_INFO *infoPtr, BOOL needsLayout)
1557 {
1558 RECT rc, rcNew;
1559 NMRBAUTOSIZE autosize;
1560
1561 if (needsLayout)
1562 REBAR_Layout(infoPtr);
1563 GetClientRect(infoPtr->hwndSelf, &rc);
1564 REBAR_SizeToHeight(infoPtr, get_rect_cy(infoPtr, &rc));
1565 GetClientRect(infoPtr->hwndSelf, &rcNew);
1566
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);
1572 }
1573
1574 static VOID
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 */
1579 {
1580 UINT header=0;
1581 UINT textheight=0, imageheight = 0;
1582 UINT i, nonfixed;
1583 REBAR_BAND *tBand;
1584
1585 lpBand->fStatus = 0;
1586 lpBand->cxMinBand = 0;
1587 lpBand->cyMinBand = 0;
1588
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;
1606
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) */
1610
1611 /* Header is where the image, text and gripper exist */
1612 /* in the band and precede the child window. */
1613
1614 /* count number of non-FIXEDSIZE and non-Hidden bands */
1615 nonfixed = 0;
1616 for (i=0; i<infoPtr->uNumBands; i++){
1617 tBand = REBAR_GetBand(infoPtr, i);
1618 if (!HIDDENBAND(tBand) && !(tBand->fStyle & RBBS_FIXEDSIZE))
1619 nonfixed++;
1620 }
1621
1622 /* calculate gripper rectangle */
1623 if ( (!(lpBand->fStyle & RBBS_NOGRIPPER)) &&
1624 ( (lpBand->fStyle & RBBS_GRIPPERALWAYS) ||
1625 ( !(lpBand->fStyle & RBBS_FIXEDSIZE) && (nonfixed > 1)))
1626 ) {
1627 lpBand->fStatus |= HAS_GRIPPER;
1628 if (infoPtr->dwStyle & CCS_VERT)
1629 if (infoPtr->dwStyle & RBS_VERTICALGRIPPER)
1630 header += (GRIPPER_HEIGHT + REBAR_PRE_GRIPPER);
1631 else
1632 header += (GRIPPER_WIDTH + REBAR_PRE_GRIPPER);
1633 else
1634 header += (REBAR_PRE_GRIPPER + GRIPPER_WIDTH);
1635 /* Always have 4 pixels before anything else */
1636 header += REBAR_ALWAYS_SPACE;
1637 }
1638
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;
1645 }
1646 else {
1647 header += (infoPtr->imageSize.cx + REBAR_POST_IMAGE);
1648 imageheight = infoPtr->imageSize.cy + 4;
1649 }
1650 }
1651
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);
1657 SIZE size;
1658
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;
1664
1665 SelectObject (hdc, hOldFont);
1666 ReleaseDC (0, hdc);
1667 }
1668
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;
1673 }
1674
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);
1679
1680 /* Now compute minimum size of child window */
1681 update_min_band_height(infoPtr, lpBand); /* update lpBand->cyMinBand from cyHeader and cyChild*/
1682
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;
1686 }
1687
1688 static UINT
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. */
1693 {
1694 UINT uChanged = 0x0;
1695
1696 lpBand->fMask |= lprbbi->fMask;
1697
1698 if( (lprbbi->fMask & RBBIM_STYLE) &&
1699 (lpBand->fStyle != lprbbi->fStyle ) )
1700 {
1701 lpBand->fStyle = lprbbi->fStyle;
1702 uChanged |= RBBIM_STYLE;
1703 }
1704
1705 if( (lprbbi->fMask & RBBIM_COLORS) &&
1706 ( ( lpBand->clrFore != lprbbi->clrFore ) ||
1707 ( lpBand->clrBack != lprbbi->clrBack ) ) )
1708 {
1709 lpBand->clrFore = lprbbi->clrFore;
1710 lpBand->clrBack = lprbbi->clrBack;
1711 uChanged |= RBBIM_COLORS;
1712 }
1713
1714 if( (lprbbi->fMask & RBBIM_IMAGE) &&
1715 ( lpBand->iImage != lprbbi->iImage ) )
1716 {
1717 lpBand->iImage = lprbbi->iImage;
1718 uChanged |= RBBIM_IMAGE;
1719 }
1720
1721 if( (lprbbi->fMask & RBBIM_CHILD) &&
1722 (lprbbi->hwndChild != lpBand->hwndChild ) )
1723 {
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 */
1731 }
1732 else {
1733 TRACE("child: %p prev parent: %p\n",
1734 lpBand->hwndChild, lpBand->hwndPrevParent);
1735 lpBand->hwndChild = 0;
1736 lpBand->hwndPrevParent = 0;
1737 }
1738 uChanged |= RBBIM_CHILD;
1739 }
1740
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 ) ) ) ) )
1752 {
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;
1759
1760 lpBand->cyChild = round_child_height(lpBand, lprbbi->cyChild); /* make (cyChild - cyMinChild) a multiple of cyIntergral */
1761 }
1762 else {
1763 lpBand->cyChild = lpBand->cyMinChild;
1764 lpBand->cyMaxChild = 0x7fffffff;
1765 lpBand->cyIntegral = 0;
1766 }
1767 uChanged |= RBBIM_CHILDSIZE;
1768 }
1769
1770 if( (lprbbi->fMask & RBBIM_SIZE) &&
1771 (lpBand->cx != lprbbi->cx ) )
1772 {
1773 lpBand->cx = lprbbi->cx;
1774 uChanged |= RBBIM_SIZE;
1775 }
1776
1777 if( (lprbbi->fMask & RBBIM_BACKGROUND) &&
1778 ( lpBand->hbmBack != lprbbi->hbmBack ) )
1779 {
1780 lpBand->hbmBack = lprbbi->hbmBack;
1781 uChanged |= RBBIM_BACKGROUND;
1782 }
1783
1784 if( (lprbbi->fMask & RBBIM_ID) &&
1785 (lpBand->wID != lprbbi->wID ) )
1786 {
1787 lpBand->wID = lprbbi->wID;
1788 uChanged |= RBBIM_ID;
1789 }
1790
1791 /* check for additional data */
1792 if (lprbbi->cbSize >= REBARBANDINFOA_V6_SIZE) {
1793 if( (lprbbi->fMask & RBBIM_IDEALSIZE) &&
1794 ( lpBand->cxIdeal != lprbbi->cxIdeal ) )
1795 {
1796 lpBand->cxIdeal = lprbbi->cxIdeal;
1797 uChanged |= RBBIM_IDEALSIZE;
1798 }
1799
1800 if( (lprbbi->fMask & RBBIM_LPARAM) &&
1801 (lpBand->lParam != lprbbi->lParam ) )
1802 {
1803 lpBand->lParam = lprbbi->lParam;
1804 uChanged |= RBBIM_LPARAM;
1805 }
1806
1807 if( (lprbbi->fMask & RBBIM_HEADERSIZE) &&
1808 (lpBand->cxHeader != lprbbi->cxHeader ) )
1809 {
1810 lpBand->cxHeader = lprbbi->cxHeader;
1811 lpBand->fStyle |= RBBS_UNDOC_FIXEDHEADER;
1812 uChanged |= RBBIM_HEADERSIZE;
1813 }
1814 }
1815
1816 return uChanged;
1817 }
1818
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. */
1824 {
1825 REBAR_BAND *lpBand;
1826 UINT i;
1827 INT oldrow;
1828 RECT cr;
1829 COLORREF old = CLR_NONE, new;
1830 HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
1831 HRGN hrgn;
1832
1833 GetClientRect (infoPtr->hwndSelf, &cr);
1834 hrgn = CreateRectRgn(cr.left, cr.top, cr.right, cr.bottom);
1835
1836 oldrow = -1;
1837 for(i=0; i<infoPtr->uNumBands; i++) {
1838 RECT rcBand;
1839 RECT rcBandReal;
1840 HRGN hrgnBand;
1841
1842 lpBand = REBAR_GetBand(infoPtr, i);
1843
1844 if (HIDDENBAND(lpBand)) continue;
1845 translate_rect(infoPtr, &rcBand, &lpBand->rcBand);
1846
1847 rcBandReal = rcBand;
1848
1849 /* draw band separator between rows */
1850 if (lpBand->iRow != oldrow) {
1851 oldrow = lpBand->iRow;
1852 if (infoPtr->dwStyle & RBS_BANDBORDERS) {
1853 RECT rcRowSep;
1854 rcRowSep = rcBand;
1855 if (infoPtr->dwStyle & CCS_VERT) {
1856 rcRowSep.right += SEP_WIDTH_SIZE;
1857 rcRowSep.bottom = infoPtr->calcSize.cx;
1858 if (theme)
1859 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcRowSep, EDGE_ETCHED, BF_RIGHT, NULL);
1860 else
1861 DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_RIGHT);
1862 }
1863 else {
1864 rcRowSep.bottom += SEP_WIDTH_SIZE;
1865 rcRowSep.right = infoPtr->calcSize.cx;
1866 if (theme)
1867 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcRowSep, EDGE_ETCHED, BF_BOTTOM, NULL);
1868 else
1869 DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_BOTTOM);
1870 }
1871 TRACE ("drawing band separator bottom (%s)\n",
1872 wine_dbgstr_rect(&rcRowSep));
1873 rcBandReal = rcRowSep;
1874 }
1875 }
1876
1877 /* draw band separator between bands in a row */
1878 if (infoPtr->dwStyle & RBS_BANDBORDERS && lpBand->rcBand.left > 0) {
1879 RECT rcSep;
1880 rcSep = rcBand;
1881 if (infoPtr->dwStyle & CCS_VERT) {
1882 rcSep.bottom = rcSep.top;
1883 rcSep.top -= SEP_WIDTH_SIZE;
1884 rcBandReal.top -= SEP_WIDTH_SIZE;
1885 if (theme)
1886 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcSep, EDGE_ETCHED, BF_BOTTOM, NULL);
1887 else
1888 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_BOTTOM);
1889 }
1890 else {
1891 rcSep.right = rcSep.left;
1892 rcSep.left -= SEP_WIDTH_SIZE;
1893 rcBandReal.left -= SEP_WIDTH_SIZE;
1894 if (theme)
1895 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcSep, EDGE_ETCHED, BF_RIGHT, NULL);
1896 else
1897 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_RIGHT);
1898 }
1899 TRACE("drawing band separator right (%s)\n",
1900 wine_dbgstr_rect(&rcSep));
1901 }
1902
1903 /* draw the actual background */
1904 if (lpBand->clrBack != CLR_NONE) {
1905 new = (lpBand->clrBack == CLR_DEFAULT) ? infoPtr->clrBtnFace :
1906 lpBand->clrBack;
1907 #if GLATESTING
1908 /* testing only - make background green to see it */
1909 new = RGB(0,128,0);
1910 #endif
1911 }
1912 else {
1913 /* In the absence of documentation for Rebar vs. CLR_NONE,
1914 * we will use the default BtnFace color. Note documentation
1915 * exists for Listview and Imagelist.
1916 */
1917 new = infoPtr->clrBtnFace;
1918 #if GLATESTING
1919 /* testing only - make background green to see it */
1920 new = RGB(0,128,0);
1921 #endif
1922 }
1923
1924 if (theme)
1925 {
1926 /* When themed, the background color is ignored (but not a
1927 * background bitmap */
1928 DrawThemeBackground (theme, hdc, 0, 0, &cr, &rcBand);
1929 }
1930 else
1931 {
1932 old = SetBkColor (hdc, new);
1933 TRACE("%s background color=0x%06x, band %s\n",
1934 (lpBand->clrBack == CLR_NONE) ? "none" :
1935 ((lpBand->clrBack == CLR_DEFAULT) ? "dft" : ""),
1936 GetBkColor(hdc), wine_dbgstr_rect(&rcBand));
1937 ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &rcBand, NULL, 0, 0);
1938 if (lpBand->clrBack != CLR_NONE)
1939 SetBkColor (hdc, old);
1940 }
1941
1942 hrgnBand = CreateRectRgn(rcBandReal.left, rcBandReal.top, rcBandReal.right, rcBandReal.bottom);
1943 CombineRgn(hrgn, hrgn, hrgnBand, RGN_DIFF);
1944 DeleteObject(hrgnBand);
1945 }
1946
1947 #if 1
1948 {
1949 //FIXME: Apparently painting the remaining area is a v6 feature
1950 HBRUSH hbrush = CreateSolidBrush(new);
1951 FillRgn(hdc, hrgn, hbrush);
1952 DeleteObject(hbrush);
1953 DeleteObject(hrgn);
1954 }
1955 #endif
1956 return TRUE;
1957 }
1958
1959 static void
1960 REBAR_InternalHitTest (const REBAR_INFO *infoPtr, const POINT *lpPt, UINT *pFlags, INT *pBand)
1961 {
1962 REBAR_BAND *lpBand;
1963 RECT rect;
1964 UINT iCount;
1965
1966 GetClientRect (infoPtr->hwndSelf, &rect);
1967
1968 *pFlags = RBHT_NOWHERE;
1969 if (PtInRect (&rect, *lpPt))
1970 {
1971 if (infoPtr->uNumBands == 0) {
1972 *pFlags = RBHT_NOWHERE;
1973 if (pBand)
1974 *pBand = -1;
1975 TRACE("NOWHERE\n");
1976 return;
1977 }
1978 else {
1979 /* somewhere inside */
1980 for (iCount = 0; iCount < infoPtr->uNumBands; iCount++) {
1981 RECT rcBand;
1982 lpBand = REBAR_GetBand(infoPtr, iCount);
1983 translate_rect(infoPtr, &rcBand, &lpBand->rcBand);
1984 if (HIDDENBAND(lpBand)) continue;
1985 if (PtInRect (&rcBand, *lpPt)) {
1986 if (pBand)
1987 *pBand = iCount;
1988 if (PtInRect (&lpBand->rcGripper, *lpPt)) {
1989 *pFlags = RBHT_GRABBER;
1990 TRACE("ON GRABBER %d\n", iCount);
1991 return;
1992 }
1993 else if (PtInRect (&lpBand->rcCapImage, *lpPt)) {
1994 *pFlags = RBHT_CAPTION;
1995 TRACE("ON CAPTION %d\n", iCount);
1996 return;
1997 }
1998 else if (PtInRect (&lpBand->rcCapText, *lpPt)) {
1999 *pFlags = RBHT_CAPTION;
2000 TRACE("ON CAPTION %d\n", iCount);
2001 return;
2002 }
2003 else if (PtInRect (&lpBand->rcChild, *lpPt)) {
2004 *pFlags = RBHT_CLIENT;
2005 TRACE("ON CLIENT %d\n", iCount);
2006 return;
2007 }
2008 else if (PtInRect (&lpBand->rcChevron, *lpPt)) {
2009 *pFlags = RBHT_CHEVRON;
2010 TRACE("ON CHEVRON %d\n", iCount);
2011 return;
2012 }
2013 else {
2014 *pFlags = RBHT_NOWHERE;
2015 TRACE("NOWHERE %d\n", iCount);
2016 return;
2017 }
2018 }
2019 }
2020
2021 *pFlags = RBHT_NOWHERE;
2022 if (pBand)
2023 *pBand = -1;
2024
2025 TRACE("NOWHERE\n");
2026 return;
2027 }
2028 }
2029 else {
2030 *pFlags = RBHT_NOWHERE;
2031 if (pBand)
2032 *pBand = -1;
2033 TRACE("NOWHERE\n");
2034 return;
2035 }
2036 }
2037
2038 static void
2039 REBAR_HandleLRDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
2040 /* Function: This will implement the functionality of a */
2041 /* Gripper drag within a row. It will not implement "out- */
2042 /* of-row" drags. (They are detected and handled in */
2043 /* REBAR_MouseMove.) */
2044 {
2045 REBAR_BAND *hitBand;
2046 INT iHitBand, iRowBegin, iRowEnd;
2047 INT movement, xBand, cxLeft = 0;
2048 BOOL shrunkBands = FALSE;
2049
2050 iHitBand = infoPtr->iGrabbedBand;
2051 iRowBegin = get_row_begin_for_band(infoPtr, iHitBand);
2052 iRowEnd = get_row_end_for_band(infoPtr, iHitBand);
2053 hitBand = REBAR_GetBand(infoPtr, iHitBand);
2054
2055 xBand = hitBand->rcBand.left;
2056 movement = (infoPtr->dwStyle&CCS_VERT ? ptsmove->y : ptsmove->x)
2057 - (xBand + REBAR_PRE_GRIPPER - infoPtr->ihitoffset);
2058
2059 /* Dragging the first band in a row cannot cause shrinking */
2060 if(iHitBand != iRowBegin)
2061 {
2062 if (movement < 0) {
2063 cxLeft = REBAR_ShrinkBandsRTL(infoPtr, iRowBegin, iHitBand, -movement, TRUE);
2064
2065 if(cxLeft < -movement)
2066 {
2067 hitBand->cxEffective += -movement - cxLeft;
2068 hitBand->cx = hitBand->cxEffective;
2069 shrunkBands = TRUE;
2070 }
2071
2072 } else if (movement > 0) {
2073
2074 cxLeft = movement;
2075 if (prev_visible(infoPtr, iHitBand) >= 0)
2076 cxLeft = REBAR_ShrinkBandsLTR(infoPtr, iHitBand, iRowEnd, movement, TRUE);
2077
2078 if(cxLeft < movement)
2079 {
2080 REBAR_BAND *lpPrev = REBAR_GetBand(infoPtr, prev_visible(infoPtr, iHitBand));
2081 lpPrev->cxEffective += movement - cxLeft;
2082 lpPrev->cx = hitBand->cxEffective;
2083 shrunkBands = TRUE;
2084 }
2085
2086 }
2087 }
2088
2089 if(!shrunkBands)
2090 {
2091 /* It was not possible to move the band by shrinking bands.
2092 * Try relocating the band instead. */
2093 REBAR_MoveBandToRowOffset(infoPtr, iHitBand, iRowBegin,
2094 iRowEnd, xBand + movement, TRUE);
2095 }
2096
2097 REBAR_SetRowRectsX(infoPtr, iRowBegin, iRowEnd);
2098 if (infoPtr->dwStyle & CCS_VERT)
2099 REBAR_CalcVertBand(infoPtr, 0, infoPtr->uNumBands);
2100 else
2101 REBAR_CalcHorzBand(infoPtr, 0, infoPtr->uNumBands);
2102 REBAR_MoveChildWindows(infoPtr, iRowBegin, iRowEnd);
2103 }
2104
2105 static void
2106 REBAR_HandleUDDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
2107 {
2108 INT yOff = (infoPtr->dwStyle & CCS_VERT) ? ptsmove->x : ptsmove->y;
2109 INT iHitBand, iRowBegin, iNextRowBegin;
2110 REBAR_BAND *hitBand, *rowBeginBand;
2111
2112 if(infoPtr->uNumBands <= 0)
2113 ERR("There are no bands in this rebar\n");
2114
2115 /* Up/down dragging can only occur when there is more than one
2116 * band in the rebar */
2117 if(infoPtr->uNumBands <= 1)
2118 return;
2119
2120 iHitBand = infoPtr->iGrabbedBand;
2121 hitBand = REBAR_GetBand(infoPtr, iHitBand);
2122
2123 /* If we're taking a band that has the RBBS_BREAK style set, this
2124 * style needs to be reapplied to the band that is going to become
2125 * the new start of the row. */
2126 if((hitBand->fStyle & RBBS_BREAK) &&
2127 (iHitBand < infoPtr->uNumBands - 1))
2128 REBAR_GetBand(infoPtr, iHitBand + 1)->fStyle |= RBBS_BREAK;
2129
2130 if(yOff < 0)
2131 {
2132 /* Place the band above the current top row */
2133 if(iHitBand==0 && (infoPtr->uNumBands==1 || REBAR_GetBand(infoPtr, 1)->fStyle&RBBS_BREAK))
2134 return;
2135 DPA_DeletePtr(infoPtr->bands, iHitBand);
2136 hitBand->fStyle &= ~RBBS_BREAK;
2137 REBAR_GetBand(infoPtr, 0)->fStyle |= RBBS_BREAK;
2138 infoPtr->iGrabbedBand = DPA_InsertPtr(
2139 infoPtr->bands, 0, hitBand);
2140 }
2141 else if(yOff > REBAR_GetBand(infoPtr, infoPtr->uNumBands - 1)->rcBand.bottom)
2142 {
2143 /* Place the band below the current bottom row */
2144 if(iHitBand == infoPtr->uNumBands-1 && hitBand->fStyle&RBBS_BREAK)
2145 return;
2146 DPA_DeletePtr(infoPtr->bands, iHitBand);
2147 hitBand->fStyle |= RBBS_BREAK;
2148 infoPtr->iGrabbedBand = DPA_InsertPtr(
2149 infoPtr->bands, infoPtr->uNumBands - 1, hitBand);
2150 }
2151 else
2152 {
2153 /* Place the band in the prexisting row the mouse is hovering over */
2154 iRowBegin = first_visible(infoPtr);
2155 while(iRowBegin < infoPtr->uNumBands)
2156 {
2157 iNextRowBegin = get_row_end_for_band(infoPtr, iRowBegin);
2158 rowBeginBand = REBAR_GetBand(infoPtr, iRowBegin);
2159 if(rowBeginBand->rcBand.bottom > yOff)
2160 {
2161 REBAR_MoveBandToRowOffset(
2162 infoPtr, iHitBand, iRowBegin, iNextRowBegin,
2163 ((infoPtr->dwStyle & CCS_VERT) ? ptsmove->y : ptsmove->x)
2164 - REBAR_PRE_GRIPPER - infoPtr->ihitoffset, FALSE);
2165 break;
2166 }
2167
2168 iRowBegin = iNextRowBegin;
2169 }
2170 }
2171
2172 REBAR_Layout(infoPtr);
2173 }
2174
2175
2176 /* << REBAR_BeginDrag >> */
2177
2178
2179 static LRESULT
2180 REBAR_DeleteBand (REBAR_INFO *infoPtr, WPARAM wParam)
2181 {
2182 UINT uBand = (UINT)wParam;
2183 REBAR_BAND *lpBand;
2184
2185 if (uBand >= infoPtr->uNumBands)
2186 return FALSE;
2187
2188 TRACE("deleting band %u!\n", uBand);
2189 lpBand = REBAR_GetBand(infoPtr, uBand);
2190 REBAR_Notify_NMREBAR (infoPtr, uBand, RBN_DELETINGBAND);
2191 /* TODO: a return of 1 should probably cancel the deletion */
2192
2193 if (lpBand->hwndChild)
2194 ShowWindow(lpBand->hwndChild, SW_HIDE);
2195 Free(lpBand->lpText);
2196 Free(lpBand);
2197
2198 infoPtr->uNumBands--;
2199 DPA_DeletePtr(infoPtr->bands, uBand);
2200
2201 REBAR_Notify_NMREBAR (infoPtr, -1, RBN_DELETEDBAND);
2202
2203 /* if only 1 band left the re-validate to possible eliminate gripper */
2204 if (infoPtr->uNumBands == 1)
2205 REBAR_ValidateBand (infoPtr, REBAR_GetBand(infoPtr, 0));
2206
2207 REBAR_Layout(infoPtr);
2208
2209 return TRUE;
2210 }
2211
2212
2213 /* << REBAR_DragMove >> */
2214 /* << REBAR_EndDrag >> */
2215
2216
2217 static LRESULT
2218 REBAR_GetBandBorders (const REBAR_INFO *infoPtr, UINT uBand, RECT *lpRect)
2219 {
2220 REBAR_BAND *lpBand;
2221
2222 if (!lpRect)
2223 return 0;
2224 if (uBand >= infoPtr->uNumBands)
2225 return 0;
2226
2227 lpBand = REBAR_GetBand(infoPtr, uBand);
2228
2229 /* FIXME - the following values were determined by experimentation */
2230 /* with the REBAR Control Spy. I have guesses as to what the 4 and */
2231 /* 1 are, but I am not sure. There doesn't seem to be any actual */
2232 /* difference in size of the control area with and without the */
2233 /* style. - GA */
2234 if (infoPtr->dwStyle & RBS_BANDBORDERS) {
2235 if (infoPtr->dwStyle & CCS_VERT) {
2236 lpRect->left = 1;
2237 lpRect->top = lpBand->cxHeader + 4;
2238 lpRect->right = 1;
2239 lpRect->bottom = 0;
2240 }
2241 else {
2242 lpRect->left = lpBand->cxHeader + 4;
2243 lpRect->top = 1;
2244 lpRect->right = 0;
2245 lpRect->bottom = 1;
2246 }
2247 }
2248 else {
2249 lpRect->left = lpBand->cxHeader;
2250 }
2251 return 0;
2252 }
2253
2254
2255 static inline LRESULT
2256 REBAR_GetBandCount (const REBAR_INFO *infoPtr)
2257 {
2258 TRACE("band count %u!\n", infoPtr->uNumBands);
2259
2260 return infoPtr->uNumBands;
2261 }
2262
2263
2264 static LRESULT
2265 REBAR_GetBandInfoT(const REBAR_INFO *infoPtr, UINT uIndex, LPREBARBANDINFOW lprbbi, BOOL bUnicode)
2266 {
2267 REBAR_BAND *lpBand;
2268
2269 if (!lprbbi || lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2270 return FALSE;
2271
2272 if (uIndex >= infoPtr->uNumBands)
2273 return FALSE;
2274
2275 TRACE("index %u (bUnicode=%d)\n", uIndex, bUnicode);
2276
2277 /* copy band information */
2278 lpBand = REBAR_GetBand(infoPtr, uIndex);
2279
2280 if (lprbbi->fMask & RBBIM_STYLE)
2281 lprbbi->fStyle = lpBand->fStyle;
2282
2283 if (lprbbi->fMask & RBBIM_COLORS) {
2284 lprbbi->clrFore = lpBand->clrFore;
2285 lprbbi->clrBack = lpBand->clrBack;
2286 if (lprbbi->clrBack == CLR_DEFAULT)
2287 lprbbi->clrBack = infoPtr->clrBtnFace;
2288 }
2289
2290 if (lprbbi->fMask & RBBIM_TEXT) {
2291 if (bUnicode)
2292 Str_GetPtrW(lpBand->lpText, lprbbi->lpText, lprbbi->cch);
2293 else
2294 Str_GetPtrWtoA(lpBand->lpText, (LPSTR)lprbbi->lpText, lprbbi->cch);
2295 }
2296
2297 if (lprbbi->fMask & RBBIM_IMAGE)
2298 lprbbi->iImage = lpBand->iImage;
2299
2300 if (lprbbi->fMask & RBBIM_CHILD)
2301 lprbbi->hwndChild = lpBand->hwndChild;
2302
2303 if (lprbbi->fMask & RBBIM_CHILDSIZE) {
2304 lprbbi->cxMinChild = lpBand->cxMinChild;
2305 lprbbi->cyMinChild = lpBand->cyMinChild;
2306 /* to make tests pass we follow Windows behaviour and allow to read these fields only
2307 * for RBBS_VARIABLEHEIGHTS bands */
2308 if (lprbbi->cbSize >= REBARBANDINFOW_V6_SIZE && (lpBand->fStyle & RBBS_VARIABLEHEIGHT)) {
2309 lprbbi->cyChild = lpBand->cyChild;
2310 lprbbi->cyMaxChild = lpBand->cyMaxChild;
2311 lprbbi->cyIntegral = lpBand->cyIntegral;
2312 }
2313 }
2314
2315 if (lprbbi->fMask & RBBIM_SIZE)
2316 lprbbi->cx = lpBand->cx;
2317
2318 if (lprbbi->fMask & RBBIM_BACKGROUND)
2319 lprbbi->hbmBack = lpBand->hbmBack;
2320
2321 if (lprbbi->fMask & RBBIM_ID)
2322 lprbbi->wID = lpBand->wID;
2323
2324 /* check for additional data */
2325 if (lprbbi->cbSize >= REBARBANDINFOW_V6_SIZE) {
2326 if (lprbbi->fMask & RBBIM_IDEALSIZE)
2327 lprbbi->cxIdeal = lpBand->cxIdeal;
2328
2329 if (lprbbi->fMask & RBBIM_LPARAM)
2330 lprbbi->lParam = lpBand->lParam;
2331
2332 if (lprbbi->fMask & RBBIM_HEADERSIZE)
2333 lprbbi->cxHeader = lpBand->cxHeader;
2334 }
2335
2336 REBAR_DumpBandInfo(lprbbi);
2337
2338 return TRUE;
2339 }
2340
2341
2342 static LRESULT
2343 REBAR_GetBarHeight (const REBAR_INFO *infoPtr)
2344 {
2345 INT nHeight;
2346
2347 nHeight = infoPtr->calcSize.cy;
2348
2349 TRACE("height = %d\n", nHeight);
2350
2351 return nHeight;
2352 }
2353
2354
2355 static LRESULT
2356 REBAR_GetBarInfo (const REBAR_INFO *infoPtr, LPREBARINFO lpInfo)
2357 {
2358 if (!lpInfo || lpInfo->cbSize < sizeof (REBARINFO))
2359 return FALSE;
2360
2361 TRACE("getting bar info!\n");
2362
2363 if (infoPtr->himl) {
2364 lpInfo->himl = infoPtr->himl;
2365 lpInfo->fMask |= RBIM_IMAGELIST;
2366 }
2367
2368 return TRUE;
2369 }
2370
2371
2372 static inline LRESULT
2373 REBAR_GetBkColor (const REBAR_INFO *infoPtr)
2374 {
2375 COLORREF clr = infoPtr->clrBk;
2376
2377 if (clr == CLR_DEFAULT)
2378 clr = infoPtr->clrBtnFace;
2379
2380 TRACE("background color 0x%06x!\n", clr);
2381
2382 return clr;
2383 }
2384
2385
2386 /* << REBAR_GetColorScheme >> */
2387 /* << REBAR_GetDropTarget >> */
2388
2389
2390 static LRESULT
2391 REBAR_GetPalette (const REBAR_INFO *infoPtr)
2392 {
2393 FIXME("empty stub!\n");
2394
2395 return 0;
2396 }
2397
2398
2399 static LRESULT
2400 REBAR_GetRect (const REBAR_INFO *infoPtr, INT iBand, RECT *lprc)
2401 {
2402 REBAR_BAND *lpBand;
2403
2404 if (iBand < 0 || iBand >= infoPtr->uNumBands)
2405 return FALSE;
2406 if (!lprc)
2407 return FALSE;
2408
2409 lpBand = REBAR_GetBand(infoPtr, iBand);
2410 /* For CCS_VERT the coordinates will be swapped - like on Windows */
2411 CopyRect (lprc, &lpBand->rcBand);
2412
2413 TRACE("band %d, (%s)\n", iBand, wine_dbgstr_rect(lprc));
2414
2415 return TRUE;
2416 }
2417
2418
2419 static inline LRESULT
2420 REBAR_GetRowCount (const REBAR_INFO *infoPtr)
2421 {
2422 TRACE("%u\n", infoPtr->uNumRows);
2423
2424 return infoPtr->uNumRows;
2425 }
2426
2427
2428 static LRESULT
2429 REBAR_GetRowHeight (const REBAR_INFO *infoPtr, INT iRow)
2430 {
2431 int j = 0, ret = 0;
2432 UINT i;
2433 REBAR_BAND *lpBand;
2434
2435 for (i=0; i<infoPtr->uNumBands; i++) {
2436 lpBand = REBAR_GetBand(infoPtr, i);
2437 if (HIDDENBAND(lpBand)) continue;
2438 if (lpBand->iRow != iRow) continue;
2439 j = lpBand->rcBand.bottom - lpBand->rcBand.top;
2440 if (j > ret) ret = j;
2441 }
2442
2443 TRACE("row %d, height %d\n", iRow, ret);
2444
2445 return ret;
2446 }
2447
2448
2449 static inline LRESULT
2450 REBAR_GetTextColor (const REBAR_INFO *infoPtr)
2451 {
2452 TRACE("text color 0x%06x!\n", infoPtr->clrText);
2453
2454 return infoPtr->clrText;
2455 }
2456
2457
2458 static inline LRESULT
2459 REBAR_GetToolTips (const REBAR_INFO *infoPtr)
2460 {
2461 return (LRESULT)infoPtr->hwndToolTip;
2462 }
2463
2464
2465 static inline LRESULT
2466 REBAR_GetUnicodeFormat (const REBAR_INFO *infoPtr)
2467 {
2468 TRACE("%s hwnd=%p\n",
2469 infoPtr->bUnicode ? "TRUE" : "FALSE", infoPtr->hwndSelf);
2470
2471 return infoPtr->bUnicode;
2472 }
2473
2474
2475 static inline LRESULT
2476 REBAR_GetVersion (const REBAR_INFO *infoPtr)
2477 {
2478 TRACE("version %d\n", infoPtr->iVersion);
2479 return infoPtr->iVersion;
2480 }
2481
2482
2483 static LRESULT
2484 REBAR_HitTest (const REBAR_INFO *infoPtr, LPRBHITTESTINFO lprbht)
2485 {
2486 if (!lprbht)
2487 return -1;
2488
2489 REBAR_InternalHitTest (infoPtr, &lprbht->pt, &lprbht->flags, &lprbht->iBand);
2490
2491 return lprbht->iBand;
2492 }
2493
2494
2495 static LRESULT
2496 REBAR_IdToIndex (const REBAR_INFO *infoPtr, UINT uId)
2497 {
2498 UINT i;
2499
2500 if (infoPtr->uNumBands < 1)
2501 return -1;
2502
2503 for (i = 0; i < infoPtr->uNumBands; i++) {
2504 if (REBAR_GetBand(infoPtr, i)->wID == uId) {
2505 TRACE("id %u is band %u found!\n", uId, i);
2506 return i;
2507 }
2508 }
2509
2510 TRACE("id %u is not found\n", uId);
2511 return -1;
2512 }
2513
2514
2515 static LRESULT
2516 REBAR_InsertBandT(REBAR_INFO *infoPtr, INT iIndex, const REBARBANDINFOW *lprbbi, BOOL bUnicode)
2517 {
2518 REBAR_BAND *lpBand;
2519
2520 if (!lprbbi || lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2521 return FALSE;
2522
2523 /* trace the index as signed to see the -1 */
2524 TRACE("insert band at %d (bUnicode=%d)!\n", iIndex, bUnicode);
2525 REBAR_DumpBandInfo(lprbbi);
2526
2527 if (!(lpBand = Alloc(sizeof(REBAR_BAND)))) return FALSE;
2528 if ((iIndex == -1) || (iIndex > infoPtr->uNumBands))
2529 iIndex = infoPtr->uNumBands;
2530 if (DPA_InsertPtr(infoPtr->bands, iIndex, lpBand) == -1)
2531 {
2532 Free(lpBand);
2533 return FALSE;
2534 }
2535 infoPtr->uNumBands++;
2536
2537 TRACE("index %d!\n", iIndex);
2538
2539 /* initialize band */
2540 memset(lpBand, 0, sizeof(*lpBand));
2541 lpBand->clrFore = infoPtr->clrText == CLR_NONE ? infoPtr->clrBtnText :
2542 infoPtr->clrText;
2543 lpBand->clrBack = infoPtr->clrBk == CLR_NONE ? infoPtr->clrBtnFace :
2544 infoPtr->clrBk;
2545 lpBand->iImage = -1;
2546
2547 REBAR_CommonSetupBand(infoPtr->hwndSelf, lprbbi, lpBand);
2548
2549 /* Make sure the defaults for these are correct */
2550 if (lprbbi->cbSize < REBARBANDINFOA_V6_SIZE || !(lpBand->fStyle & RBBS_VARIABLEHEIGHT)) {
2551 lpBand->cyChild = lpBand->cyMinChild;
2552 lpBand->cyMaxChild = 0x7fffffff;
2553 lpBand->cyIntegral = 0;
2554 }
2555
2556 if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
2557 if (bUnicode)
2558 Str_SetPtrW(&lpBand->lpText, lprbbi->lpText);
2559 else
2560 Str_SetPtrAtoW(&lpBand->lpText, (LPSTR)lprbbi->lpText);
2561 }
2562
2563 REBAR_ValidateBand (infoPtr, lpBand);
2564 /* On insert of second band, revalidate band 1 to possible add gripper */
2565 if (infoPtr->uNumBands == 2)
2566 REBAR_ValidateBand (infoPtr, REBAR_GetBand(infoPtr, 0));
2567
2568 REBAR_DumpBand (infoPtr);
2569
2570 REBAR_Layout(infoPtr);
2571 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
2572
2573 return TRUE;
2574 }
2575
2576
2577 static LRESULT
2578 REBAR_MaximizeBand (const REBAR_INFO *infoPtr, INT iBand, LPARAM lParam)
2579 {
2580 REBAR_BAND *lpBand;
2581 int iRowBegin, iRowEnd;
2582 int cxDesired, extra, extraOrig;
2583 int cxIdealBand;
2584
2585 /* Validate */
2586 if (infoPtr->uNumBands == 0 || iBand < 0 || iBand >= infoPtr->uNumBands) {
2587 /* error !!! */
2588 ERR("Illegal MaximizeBand, requested=%d, current band count=%d\n",
2589 iBand, infoPtr->uNumBands);
2590 return FALSE;
2591 }
2592
2593 lpBand = REBAR_GetBand(infoPtr, iBand);
2594
2595 if (lpBand->fStyle & RBBS_HIDDEN)
2596 {
2597 /* Windows is buggy and creates a hole */
2598 WARN("Ignoring maximize request on a hidden band (%d)\n", iBand);
2599 return FALSE;
2600 }
2601
2602 cxIdealBand = lpBand->cxIdeal + lpBand->cxHeader + REBAR_POST_CHILD;
2603 if (lParam && (lpBand->cxEffective < cxIdealBand))
2604 cxDesired = cxIdealBand;
2605 else
2606 cxDesired = infoPtr->calcSize.cx;
2607
2608 iRowBegin = get_row_begin_for_band(infoPtr, iBand);
2609 iRowEnd = get_row_end_for_band(infoPtr, iBand);
2610 extraOrig = extra = cxDesired - lpBand->cxEffective;
2611 if (extra > 0)
2612 extra = REBAR_ShrinkBandsRTL(infoPtr, iRowBegin, iBand, extra, TRUE);
2613 if (extra > 0)
2614 extra = REBAR_ShrinkBandsLTR(infoPtr, next_visible(infoPtr, iBand), iRowEnd, extra, TRUE);
2615 lpBand->cxEffective += extraOrig - extra;
2616 lpBand->cx = lpBand->cxEffective;
2617 TRACE("(%d, %ld): Wanted size %d, obtained %d (shrink %d, %d)\n", iBand, lParam, cxDesired, lpBand->cx, extraOrig, extra);
2618 REBAR_SetRowRectsX(infoPtr, iRowBegin, iRowEnd);
2619
2620 if (infoPtr->dwStyle & CCS_VERT)
2621 REBAR_CalcVertBand(infoPtr, iRowBegin, iRowEnd);
2622 else
2623 REBAR_CalcHorzBand(infoPtr, iRowBegin, iRowEnd);
2624 REBAR_MoveChildWindows(infoPtr, iRowBegin, iRowEnd);
2625 return TRUE;
2626
2627 }
2628
2629
2630 static LRESULT
2631 REBAR_MinimizeBand (const REBAR_INFO *infoPtr, INT iBand)
2632 {
2633 REBAR_BAND *lpBand;
2634 int iPrev, iRowBegin, iRowEnd;
2635
2636 /* A "minimize" band is equivalent to "dragging" the gripper
2637 * of than band to the right till the band is only the size
2638 * of the cxHeader.
2639 */
2640
2641 /* Validate */
2642 if (infoPtr->uNumBands == 0 || iBand < 0 || iBand >= infoPtr->uNumBands) {
2643 /* error !!! */
2644 ERR("Illegal MinimizeBand, requested=%d, current band count=%d\n",
2645 iBand, infoPtr->uNumBands);
2646 return FALSE;
2647 }
2648
2649 /* compute amount of movement and validate */
2650 lpBand = REBAR_GetBand(infoPtr, iBand);
2651
2652 if (lpBand->fStyle & RBBS_HIDDEN)
2653 {
2654 /* Windows is buggy and creates a hole/overlap */
2655 WARN("Ignoring minimize request on a hidden band (%d)\n", iBand);
2656 return FALSE;
2657 }
2658
2659 iPrev = prev_visible(infoPtr, iBand);
2660 /* if first band in row */
2661 if (iPrev < 0 || REBAR_GetBand(infoPtr, iPrev)->iRow != lpBand->iRow) {
2662 int iNext = next_visible(infoPtr, iBand);
2663 if (iNext < infoPtr->uNumBands && REBAR_GetBand(infoPtr, iNext)->iRow == lpBand->iRow) {
2664 TRACE("(%d): Minimizing the first band in row is by maximizing the second\n", iBand);
2665 REBAR_MaximizeBand(infoPtr, iNext, FALSE);
2666 }
2667 else
2668 TRACE("(%d): Only one band in row - nothing to do\n", iBand);
2669 return TRUE;
2670 }
2671
2672 REBAR_GetBand(infoPtr, iPrev)->cxEffective += lpBand->cxEffective - lpBand->cxMinBand;
2673 REBAR_GetBand(infoPtr, iPrev)->cx = REBAR_GetBand(infoPtr, iPrev)->cxEffective;
2674 lpBand->cx = lpBand->cxEffective = lpBand->cxMinBand;
2675
2676 iRowBegin = get_row_begin_for_band(infoPtr, iBand);
2677 iRowEnd = get_row_end_for_band(infoPtr, iBand);
2678 REBAR_SetRowRectsX(infoPtr, iRowBegin, iRowEnd);
2679
2680 if (infoPtr->dwStyle & CCS_VERT)
2681 REBAR_CalcVertBand(infoPtr, iRowBegin, iRowEnd);
2682 else
2683 REBAR_CalcHorzBand(infoPtr, iRowBegin, iRowEnd);
2684 REBAR_MoveChildWindows(infoPtr, iRowBegin, iRowEnd);
2685 return FALSE;
2686 }
2687
2688
2689 static LRESULT
2690 REBAR_MoveBand (REBAR_INFO *infoPtr, INT iFrom, INT iTo)
2691 {
2692 REBAR_BAND *lpBand;
2693
2694 /* Validate */
2695 if ((infoPtr->uNumBands == 0) ||
2696 (iFrom < 0) || iFrom >= infoPtr->uNumBands ||
2697 (iTo < 0) || iTo >= infoPtr->uNumBands) {
2698 /* error !!! */
2699 ERR("Illegal MoveBand, from=%d, to=%d, current band count=%d\n",
2700 iFrom, iTo, infoPtr->uNumBands);
2701 return FALSE;
2702 }
2703
2704 lpBand = REBAR_GetBand(infoPtr, iFrom);
2705 DPA_DeletePtr(infoPtr->bands, iFrom);
2706 DPA_InsertPtr(infoPtr->bands, iTo, lpBand);
2707
2708 TRACE("moved band %d to index %d\n", iFrom, iTo);
2709 REBAR_DumpBand (infoPtr);
2710
2711 /* **************************************************** */
2712 /* */
2713 /* We do not do a REBAR_Layout here because the native */
2714 /* control does not do that. The actual layout and */
2715 /* repaint is done by the *next* real action, ex.: */
2716 /* RB_INSERTBAND, RB_DELETEBAND, RB_SIZETORECT, etc. */
2717 /* */
2718 /* **************************************************** */
2719
2720 return TRUE;
2721 }
2722
2723
2724 /* return TRUE if two strings are different */
2725 static BOOL
2726 REBAR_strdifW( LPCWSTR a, LPCWSTR b )
2727 {
2728 return ( (a && !b) || (b && !a) || (a && b && lstrcmpW(a, b) ) );
2729 }
2730
2731 static LRESULT
2732 REBAR_SetBandInfoT(REBAR_INFO *infoPtr, INT iBand, const REBARBANDINFOW *lprbbi, BOOL bUnicode)
2733 {
2734 REBAR_BAND *lpBand;
2735 UINT uChanged;
2736
2737 if (!lprbbi || lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2738 return FALSE;
2739
2740 if (iBand >= infoPtr->uNumBands)
2741 return FALSE;
2742
2743 TRACE("index %d\n", iBand);
2744 REBAR_DumpBandInfo (lprbbi);
2745
2746 /* set band information */
2747 lpBand = REBAR_GetBand(infoPtr, iBand);
2748
2749 uChanged = REBAR_CommonSetupBand (infoPtr->hwndSelf, lprbbi, lpBand);
2750 if (lprbbi->fMask & RBBIM_TEXT) {
2751 LPWSTR wstr = NULL;
2752 if (bUnicode)
2753 Str_SetPtrW(&wstr, lprbbi->lpText);
2754 else
2755 Str_SetPtrAtoW(&wstr, (LPSTR)lprbbi->lpText);
2756
2757 if (REBAR_strdifW(wstr, lpBand->lpText)) {
2758 Free(lpBand->lpText);
2759 lpBand->lpText = wstr;
2760 uChanged |= RBBIM_TEXT;
2761 }
2762 else
2763 Free(wstr);
2764 }
2765
2766 REBAR_ValidateBand (infoPtr, lpBand);
2767
2768 REBAR_DumpBand (infoPtr);
2769
2770 if (uChanged & (RBBIM_CHILDSIZE | RBBIM_SIZE | RBBIM_STYLE | RBBIM_IMAGE)) {
2771 REBAR_Layout(infoPtr);
2772 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
2773 }
2774
2775 return TRUE;
2776 }
2777
2778
2779 static LRESULT
2780 REBAR_SetBarInfo (REBAR_INFO *infoPtr, const REBARINFO *lpInfo)
2781 {
2782 REBAR_BAND *lpBand;
2783 UINT i;
2784
2785 if (!lpInfo || lpInfo->cbSize < sizeof (REBARINFO))
2786 return FALSE;
2787
2788 TRACE("setting bar info!\n");
2789
2790 if (lpInfo->fMask & RBIM_IMAGELIST) {
2791 infoPtr->himl = lpInfo->himl;
2792 if (infoPtr->himl) {
2793 INT cx, cy;
2794 ImageList_GetIconSize (infoPtr->himl, &cx, &cy);
2795 infoPtr->imageSize.cx = cx;
2796 infoPtr->imageSize.cy = cy;
2797 }
2798 else {
2799 infoPtr->imageSize.cx = 0;
2800 infoPtr->imageSize.cy = 0;
2801 }
2802 TRACE("new image cx=%d, cy=%d\n", infoPtr->imageSize.cx,
2803 infoPtr->imageSize.cy);
2804 }
2805
2806 /* revalidate all bands to reset flags for images in headers of bands */
2807 for (i=0; i<infoPtr->uNumBands; i++) {
2808 lpBand = REBAR_GetBand(infoPtr, i);
2809 REBAR_ValidateBand (infoPtr, lpBand);
2810 }
2811
2812 return TRUE;
2813 }
2814
2815
2816 static LRESULT
2817 REBAR_SetBkColor (REBAR_INFO *infoPtr, COLORREF clr)
2818 {
2819 COLORREF clrTemp;
2820
2821 clrTemp = infoPtr->clrBk;
2822 infoPtr->clrBk = clr;
2823
2824 TRACE("background color 0x%06x!\n", infoPtr->clrBk);
2825
2826 return clrTemp;
2827 }
2828
2829
2830 /* << REBAR_SetColorScheme >> */
2831 /* << REBAR_SetPalette >> */
2832
2833
2834 static LRESULT
2835 REBAR_SetParent (REBAR_INFO *infoPtr, HWND parent)
2836 {
2837 HWND hwndTemp = infoPtr->hwndNotify;
2838
2839 infoPtr->hwndNotify = parent;
2840
2841 return (LRESULT)hwndTemp;
2842 }
2843
2844
2845 static LRESULT
2846 REBAR_SetTextColor (REBAR_INFO *infoPtr, COLORREF clr)
2847 {
2848 COLORREF clrTemp;
2849
2850 clrTemp = infoPtr->clrText;
2851 infoPtr->clrText = clr;
2852
2853 TRACE("text color 0x%06x!\n", infoPtr->clrText);
2854
2855 return clrTemp;
2856 }
2857
2858
2859 /* << REBAR_SetTooltips >> */
2860
2861
2862 static inline LRESULT
2863 REBAR_SetUnicodeFormat (REBAR_INFO *infoPtr, BOOL unicode)
2864 {
2865 BOOL bTemp = infoPtr->bUnicode;
2866
2867 TRACE("to %s hwnd=%p, was %s\n",
2868 unicode ? "TRUE" : "FALSE", infoPtr->hwndSelf,
2869 (bTemp) ? "TRUE" : "FALSE");
2870
2871 infoPtr->bUnicode = unicode;
2872
2873 return bTemp;
2874 }
2875
2876
2877 static LRESULT
2878 REBAR_SetVersion (REBAR_INFO *infoPtr, INT iVersion)
2879 {
2880 INT iOldVersion = infoPtr->iVersion;
2881
2882 if (iVersion > COMCTL32_VERSION)
2883 return -1;
2884
2885 infoPtr->iVersion = iVersion;
2886
2887 TRACE("new version %d\n", iVersion);
2888
2889 return iOldVersion;
2890 }
2891
2892
2893 static LRESULT
2894 REBAR_ShowBand (REBAR_INFO *infoPtr, INT iBand, BOOL show)
2895 {
2896 REBAR_BAND *lpBand;
2897
2898 if (iBand < 0 || iBand >= infoPtr->uNumBands)
2899 return FALSE;
2900
2901 lpBand = REBAR_GetBand(infoPtr, iBand);
2902
2903 if (show) {
2904 TRACE("show band %d\n", iBand);
2905 lpBand->fStyle = lpBand->fStyle & ~RBBS_HIDDEN;
2906 if (IsWindow (lpBand->hwndChild))
2907 ShowWindow (lpBand->hwndChild, SW_SHOW);
2908 }
2909 else {
2910 TRACE("hide band %d\n", iBand);
2911 lpBand->fStyle = lpBand->fStyle | RBBS_HIDDEN;
2912 if (IsWindow (lpBand->hwndChild))
2913 ShowWindow (lpBand->hwndChild, SW_HIDE);
2914 }
2915
2916 REBAR_Layout(infoPtr);
2917 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
2918
2919 return TRUE;
2920 }
2921
2922
2923 static LRESULT
2924 REBAR_SizeToRect (REBAR_INFO *infoPtr, WPARAM flags, RECT *lpRect)
2925 {
2926 if (!lpRect) return FALSE;
2927
2928 TRACE("[%s]\n", wine_dbgstr_rect(lpRect));
2929 REBAR_SizeToHeight(infoPtr, get_rect_cy(infoPtr, lpRect));
2930
2931 #ifdef __REACTOS__
2932 /* Note that this undocumented flag is available on comctl32 v6 or later */
2933 if ((flags & RBSTR_CHANGERECT) != 0)
2934 {
2935 RECT rcRebar;
2936 GetClientRect(infoPtr->hwndSelf, &rcRebar);
2937 lpRect->bottom = lpRect->top + (rcRebar.bottom - rcRebar.top);
2938 }
2939 #endif
2940 return TRUE;
2941 }
2942
2943
2944
2945 static LRESULT
2946 REBAR_Create (REBAR_INFO *infoPtr, LPCREATESTRUCTW cs)
2947 {
2948 RECT wnrc1, clrc1;
2949
2950 if (TRACE_ON(rebar)) {
2951 GetWindowRect(infoPtr->hwndSelf, &wnrc1);
2952 GetClientRect(infoPtr->hwndSelf, &clrc1);
2953 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
2954 wine_dbgstr_rect(&wnrc1), wine_dbgstr_rect(&clrc1),
2955 cs->x, cs->y, cs->cx, cs->cy);
2956 }
2957
2958 TRACE("created!\n");
2959
2960 if (OpenThemeData (infoPtr->hwndSelf, themeClass))
2961 {
2962 /* native seems to clear WS_BORDER when themed */
2963 infoPtr->dwStyle &= ~WS_BORDER;
2964 }
2965
2966 return 0;
2967 }
2968
2969
2970 static LRESULT
2971 REBAR_Destroy (REBAR_INFO *infoPtr)
2972 {
2973 REBAR_BAND *lpBand;
2974 UINT i;
2975
2976 /* clean up each band */
2977 for (i = 0; i < infoPtr->uNumBands; i++) {
2978 lpBand = REBAR_GetBand(infoPtr, i);
2979
2980 /* delete text strings */
2981 Free (lpBand->lpText);
2982 lpBand->lpText = NULL;
2983 /* destroy child window */
2984 DestroyWindow (lpBand->hwndChild);
2985 Free (lpBand);
2986 }
2987
2988 /* free band array */
2989 DPA_Destroy (infoPtr->bands);
2990 infoPtr->bands = NULL;
2991
2992 DestroyCursor (infoPtr->hcurArrow);
2993 DestroyCursor (infoPtr->hcurHorz);
2994 DestroyCursor (infoPtr->hcurVert);
2995 DestroyCursor (infoPtr->hcurDrag);
2996 if (infoPtr->hDefaultFont) DeleteObject (infoPtr->hDefaultFont);
2997 SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
2998
2999 CloseThemeData (GetWindowTheme (infoPtr->hwndSelf));
3000
3001 /* free rebar info data */
3002 Free (infoPtr);
3003 TRACE("destroyed!\n");
3004 return 0;
3005 }
3006
3007 static LRESULT
3008 REBAR_GetFont (const REBAR_INFO *infoPtr)
3009 {
3010 return (LRESULT)infoPtr->hFont;
3011 }
3012
3013 static LRESULT
3014 REBAR_PushChevron(const REBAR_INFO *infoPtr, UINT uBand, LPARAM lParam)
3015 {
3016 if (uBand < infoPtr->uNumBands)
3017 {
3018 NMREBARCHEVRON nmrbc;
3019 REBAR_BAND *lpBand = REBAR_GetBand(infoPtr, uBand);
3020
3021 TRACE("Pressed chevron on band %u\n", uBand);
3022
3023 /* redraw chevron in pushed state */
3024 lpBand->fDraw |= DRAW_CHEVRONPUSHED;
3025 RedrawWindow(infoPtr->hwndSelf, &lpBand->rcChevron,0,
3026 RDW_ERASE|RDW_INVALIDATE|RDW_UPDATENOW);
3027
3028 /* notify app so it can display a popup menu or whatever */
3029 nmrbc.uBand = uBand;
3030 nmrbc.wID = lpBand->wID;
3031 nmrbc.lParam = lpBand->lParam;
3032 nmrbc.rc = lpBand->rcChevron;
3033 nmrbc.lParamNM = lParam;
3034 REBAR_Notify((NMHDR*)&nmrbc, infoPtr, RBN_CHEVRONPUSHED);
3035
3036 /* redraw chevron in previous state */
3037 lpBand->fDraw &= ~DRAW_CHEVRONPUSHED;
3038 InvalidateRect(infoPtr->hwndSelf, &lpBand->rcChevron, TRUE);
3039
3040 return TRUE;
3041 }
3042 return FALSE;
3043 }
3044
3045 static LRESULT
3046 REBAR_LButtonDown (REBAR_INFO *infoPtr, LPARAM lParam)
3047 {
3048 UINT htFlags;
3049 INT iHitBand;
3050 POINT ptMouseDown;
3051 ptMouseDown.x = (short)LOWORD(lParam);
3052 ptMouseDown.y = (short)HIWORD(lParam);
3053
3054 REBAR_InternalHitTest(infoPtr, &ptMouseDown, &htFlags, &iHitBand);
3055
3056 if (htFlags == RBHT_CHEVRON)
3057 {
3058 REBAR_PushChevron(infoPtr, iHitBand, 0);
3059 }
3060 else if (htFlags == RBHT_GRABBER || htFlags == RBHT_CAPTION)
3061 {
3062 REBAR_BAND *lpBand;
3063
3064 TRACE("Starting drag\n");
3065
3066 lpBand = REBAR_GetBand(infoPtr, iHitBand);
3067
3068 SetCapture (infoPtr->hwndSelf);
3069 infoPtr->iGrabbedBand = iHitBand;
3070
3071 /* save off the LOWORD and HIWORD of lParam as initial x,y */
3072 infoPtr->dragStart.x = (short)LOWORD(lParam);
3073 infoPtr->dragStart.y = (short)HIWORD(lParam);
3074 infoPtr->dragNow = infoPtr->dragStart;
3075 if (infoPtr->dwStyle & CCS_VERT)
3076 infoPtr->ihitoffset = infoPtr->dragStart.y - (lpBand->rcBand.left + REBAR_PRE_GRIPPER);
3077 else
3078 infoPtr->ihitoffset = infoPtr->dragStart.x - (lpBand->rcBand.left + REBAR_PRE_GRIPPER);
3079 }
3080 return 0;
3081 }
3082
3083 static LRESULT
3084 REBAR_LButtonUp (REBAR_INFO *infoPtr)
3085 {
3086 if (infoPtr->iGrabbedBand >= 0)
3087 {
3088 NMHDR layout;
3089 RECT rect;
3090
3091 infoPtr->dragStart.x = 0;
3092 infoPtr->dragStart.y = 0;
3093 infoPtr->dragNow = infoPtr->dragStart;
3094
3095 ReleaseCapture ();
3096
3097 if (infoPtr->fStatus & BEGIN_DRAG_ISSUED) {
3098 REBAR_Notify(&layout, infoPtr, RBN_LAYOUTCHANGED);
3099 REBAR_Notify_NMREBAR (infoPtr, infoPtr->iGrabbedBand, RBN_ENDDRAG);
3100 infoPtr->fStatus &= ~BEGIN_DRAG_ISSUED;
3101 }
3102
3103 infoPtr->iGrabbedBand = -1;
3104
3105 GetClientRect(infoPtr->hwndSelf, &rect);
3106 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
3107 }
3108
3109 return 0;
3110 }
3111
3112 static LRESULT
3113 REBAR_MouseLeave (REBAR_INFO *infoPtr)
3114 {
3115 if (infoPtr->ichevronhotBand >= 0)
3116 {
3117 REBAR_BAND *lpChevronBand = REBAR_GetBand(infoPtr, infoPtr->ichevronhotBand);
3118 if (lpChevronBand->fDraw & DRAW_CHEVRONHOT)
3119 {
3120 lpChevronBand->fDraw &= ~DRAW_CHEVRONHOT;
3121 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3122 }
3123 }
3124 infoPtr->iOldBand = -1;
3125 infoPtr->ichevronhotBand = -2;
3126
3127 return TRUE;
3128 }
3129
3130 static LRESULT
3131 REBAR_MouseMove (REBAR_INFO *infoPtr, LPARAM lParam)
3132 {
3133 REBAR_BAND *lpChevronBand;
3134 POINT ptMove;
3135
3136 ptMove.x = (short)LOWORD(lParam);
3137 ptMove.y = (short)HIWORD(lParam);
3138
3139 /* if we are currently dragging a band */
3140 if (infoPtr->iGrabbedBand >= 0)
3141 {
3142 REBAR_BAND *band;
3143 int yPtMove = (infoPtr->dwStyle & CCS_VERT ? ptMove.x : ptMove.y);
3144
3145 if (GetCapture() != infoPtr->hwndSelf)
3146 ERR("We are dragging but haven't got capture?!?\n");
3147
3148 band = REBAR_GetBand(infoPtr, infoPtr->iGrabbedBand);
3149
3150 /* if mouse did not move much, exit */
3151 if ((abs(ptMove.x - infoPtr->dragNow.x) <= mindragx) &&
3152 (abs(ptMove.y - infoPtr->dragNow.y) <= mindragy)) return 0;
3153
3154 /* on first significant mouse movement, issue notify */
3155 if (!(infoPtr->fStatus & BEGIN_DRAG_ISSUED)) {
3156 if (REBAR_Notify_NMREBAR (infoPtr, -1, RBN_BEGINDRAG)) {
3157 /* Notify returned TRUE - abort drag */
3158 infoPtr->dragStart.x = 0;
3159 infoPtr->dragStart.y = 0;
3160 infoPtr->dragNow = infoPtr->dragStart;
3161 infoPtr->iGrabbedBand = -1;
3162 ReleaseCapture ();
3163 return 0;
3164 }
3165 infoPtr->fStatus |= BEGIN_DRAG_ISSUED;
3166 }
3167
3168 /* Test for valid drag case - must not be first band in row */
3169 if ((yPtMove < band->rcBand.top) ||
3170 (yPtMove > band->rcBand.bottom)) {
3171 REBAR_HandleUDDrag (infoPtr, &ptMove);
3172 }
3173 else {
3174 REBAR_HandleLRDrag (infoPtr, &ptMove);
3175 }
3176 }
3177 else
3178 {
3179 INT iHitBand;
3180 UINT htFlags;
3181 TRACKMOUSEEVENT trackinfo;
3182
3183 REBAR_InternalHitTest(infoPtr, &ptMove, &htFlags, &iHitBand);
3184
3185 if (infoPtr->iOldBand >= 0 && infoPtr->iOldBand == infoPtr->ichevronhotBand)
3186 {
3187 lpChevronBand = REBAR_GetBand(infoPtr, infoPtr->ichevronhotBand);
3188 if (lpChevronBand->fDraw & DRAW_CHEVRONHOT)
3189 {
3190 lpChevronBand->fDraw &= ~DRAW_CHEVRONHOT;
3191 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3192 }
3193 infoPtr->ichevronhotBand = -2;
3194 }
3195
3196 if (htFlags == RBHT_CHEVRON)
3197 {
3198 /* fill in the TRACKMOUSEEVENT struct */
3199 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
3200 trackinfo.dwFlags = TME_QUERY;
3201 trackinfo.hwndTrack = infoPtr->hwndSelf;
3202 trackinfo.dwHoverTime = 0;
3203
3204 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
3205 _TrackMouseEvent(&trackinfo);
3206
3207 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
3208 if(!(trackinfo.dwFlags & TME_LEAVE))
3209 {
3210 trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
3211
3212 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
3213 /* and can properly deactivate the hot chevron */
3214 _TrackMouseEvent(&trackinfo);
3215 }
3216
3217 lpChevronBand = REBAR_GetBand(infoPtr, iHitBand);
3218 if (!(lpChevronBand->fDraw & DRAW_CHEVRONHOT))
3219 {
3220 lpChevronBand->fDraw |= DRAW_CHEVRONHOT;
3221 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3222 infoPtr->ichevronhotBand = iHitBand;
3223 }
3224 }
3225 infoPtr->iOldBand = iHitBand;
3226 }
3227
3228 return 0;
3229 }
3230
3231
3232 static inline LRESULT
3233 REBAR_NCCalcSize (const REBAR_INFO *infoPtr, RECT *rect)
3234 {
3235 HTHEME theme;
3236
3237 if (infoPtr->dwStyle & WS_BORDER) {
3238 rect->left = min(rect->left + GetSystemMetrics(SM_CXEDGE), rect->right);
3239 rect->right = max(rect->right - GetSystemMetrics(SM_CXEDGE), rect->left);
3240 rect->top = min(rect->top + GetSystemMetrics(SM_CYEDGE), rect->bottom);
3241 rect->bottom = max(rect->bottom - GetSystemMetrics(SM_CYEDGE), rect->top);
3242 }
3243 else if ((theme = GetWindowTheme (infoPtr->hwndSelf)))
3244 {
3245 /* FIXME: should use GetThemeInt */
3246 rect->top = min(rect->top + 1, rect->bottom);
3247 }
3248 TRACE("new client=(%s)\n", wine_dbgstr_rect(rect));
3249 return 0;
3250 }
3251
3252
3253 static LRESULT
3254 REBAR_NCCreate (HWND hwnd, const CREATESTRUCTW *cs)
3255 {
3256 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
3257 RECT wnrc1, clrc1;
3258 NONCLIENTMETRICSW ncm;
3259 HFONT tfont;
3260
3261 if (infoPtr) {
3262 ERR("Strange info structure pointer *not* NULL\n");
3263 return FALSE;
3264 }
3265
3266 if (TRACE_ON(rebar)) {
3267 GetWindowRect(hwnd, &wnrc1);
3268 GetClientRect(hwnd, &clrc1);
3269 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
3270 wine_dbgstr_rect(&wnrc1), wine_dbgstr_rect(&clrc1),
3271 cs->x, cs->y, cs->cx, cs->cy);
3272 }
3273
3274 /* allocate memory for info structure */
3275 infoPtr = Alloc (sizeof(REBAR_INFO));
3276 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
3277
3278 /* initialize info structure - initial values are 0 */
3279 infoPtr->clrBk = CLR_NONE;
3280 infoPtr->clrText = CLR_NONE;
3281 infoPtr->clrBtnText = comctl32_color.clrBtnText;
3282 infoPtr->clrBtnFace = comctl32_color.clrBtnFace;
3283 infoPtr->iOldBand = -1;
3284 infoPtr->ichevronhotBand = -2;
3285 infoPtr->iGrabbedBand = -1;
3286 infoPtr->hwndSelf = hwnd;
3287 infoPtr->DoRedraw = TRUE;
3288 infoPtr->hcurArrow = LoadCursorW (0, (LPWSTR)IDC_ARROW);
3289 infoPtr->hcurHorz = LoadCursorW (0, (LPWSTR)IDC_SIZEWE);
3290 infoPtr->hcurVert = LoadCursorW (0, (LPWSTR)IDC_SIZENS);
3291 infoPtr->hcurDrag = LoadCursorW (0, (LPWSTR)IDC_SIZE);
3292 infoPtr->fStatus = 0;
3293 infoPtr->hFont = GetStockObject (SYSTEM_FONT);
3294 infoPtr->bands = DPA_Create(8);
3295
3296 /* issue WM_NOTIFYFORMAT to get unicode status of parent */
3297 REBAR_NotifyFormat(infoPtr, NF_REQUERY);
3298
3299 /* Stow away the original style */
3300 infoPtr->orgStyle = cs->style;
3301 /* add necessary styles to the requested styles */
3302 infoPtr->dwStyle = cs->style | WS_VISIBLE;
3303 if ((infoPtr->dwStyle & CCS_LAYOUT_MASK) == 0)
3304 infoPtr->dwStyle |= CCS_TOP;
3305 SetWindowLongW (hwnd, GWL_STYLE, infoPtr->dwStyle);
3306
3307 /* get font handle for Caption Font */
3308 ncm.cbSize = sizeof(ncm);
3309 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, ncm.cbSize, &ncm, 0);
3310 /* if the font is bold, set to normal */
3311 if (ncm.lfCaptionFont.lfWeight > FW_NORMAL) {
3312 ncm.lfCaptionFont.lfWeight = FW_NORMAL;
3313 }
3314 tfont = CreateFontIndirectW (&ncm.lfCaptionFont);
3315 if (tfont) {
3316 infoPtr->hFont = infoPtr->hDefaultFont = tfont;
3317 }
3318
3319 return TRUE;
3320 }
3321
3322
3323 static LRESULT
3324 REBAR_NCHitTest (const REBAR_INFO *infoPtr, LPARAM lParam)
3325 {
3326 NMMOUSE nmmouse;
3327 POINT clpt;
3328 INT i;
3329 UINT scrap;
3330 LRESULT ret = HTCLIENT;
3331
3332 /*
3333 * Differences from doc at MSDN (as observed with version 4.71 of
3334 * comctl32.dll
3335 * 1. doc says nmmouse.pt is in screen coord, trace shows client coord.
3336 * 2. if band is not identified .dwItemSpec is 0xffffffff.
3337 * 3. native always seems to return HTCLIENT if notify return is 0.
3338 */
3339
3340 clpt.x = (short)LOWORD(lParam);
3341 clpt.y = (short)HIWORD(lParam);
3342 ScreenToClient (infoPtr->hwndSelf, &clpt);
3343 REBAR_InternalHitTest (infoPtr, &clpt, &scrap,
3344 (INT *)&nmmouse.dwItemSpec);
3345 nmmouse.dwItemData = 0;
3346 nmmouse.pt = clpt;
3347 nmmouse.dwHitInfo = 0;
3348 if ((i = REBAR_Notify((NMHDR *) &nmmouse, infoPtr, NM_NCHITTEST))) {
3349 TRACE("notify changed return value from %ld to %d\n",
3350 ret, i);
3351 ret = (LRESULT) i;
3352 }
3353 TRACE("returning %ld, client point (%d,%d)\n", ret, clpt.x, clpt.y);
3354 return ret;
3355 }
3356
3357
3358 static LRESULT
3359 REBAR_NCPaint (const REBAR_INFO *infoPtr)
3360 {
3361 RECT rcWindow;
3362 HDC hdc;
3363 HTHEME theme;
3364
3365 if (infoPtr->dwStyle & WS_MINIMIZE)
3366 return 0; /* Nothing to do */
3367
3368 if (infoPtr->dwStyle & WS_BORDER) {
3369
3370 /* adjust rectangle and draw the necessary edge */
3371 if (!(hdc = GetDCEx( infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW )))
3372 return 0;
3373 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
3374 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
3375 TRACE("rect (%s)\n", wine_dbgstr_rect(&rcWindow));
3376 DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_RECT);
3377 ReleaseDC( infoPtr->hwndSelf, hdc );
3378 }
3379 else if ((theme = GetWindowTheme (infoPtr->hwndSelf)))
3380 {
3381 /* adjust rectangle and draw the necessary edge */
3382 if (!(hdc = GetDCEx( infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW )))
3383 return 0;
3384 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
3385 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
3386 TRACE("rect (%s)\n", wine_dbgstr_rect(&rcWindow));
3387 DrawThemeEdge (theme, hdc, 0, 0, &rcWindow, BDR_RAISEDINNER, BF_TOP, NULL);
3388 ReleaseDC( infoPtr->hwndSelf, hdc );
3389 }
3390
3391 return 0;
3392 }
3393
3394
3395 static LRESULT
3396 REBAR_NotifyFormat (REBAR_INFO *infoPtr, LPARAM cmd)
3397 {
3398 INT i;
3399
3400 if (cmd == NF_REQUERY) {
3401 i = SendMessageW(REBAR_GetNotifyParent (infoPtr),
3402 WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
3403 if ((i != NFR_ANSI) && (i != NFR_UNICODE)) {
3404 ERR("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n", i);
3405 i = NFR_ANSI;
3406 }
3407 infoPtr->bUnicode = (i == NFR_UNICODE);
3408 return (LRESULT)i;
3409 }
3410 return (LRESULT)((infoPtr->bUnicode) ? NFR_UNICODE : NFR_ANSI);
3411 }
3412
3413
3414 static LRESULT
3415 REBAR_Paint (const REBAR_INFO *infoPtr, HDC hdc)
3416 {
3417 if (hdc) {
3418 TRACE("painting\n");
3419 REBAR_Refresh (infoPtr, hdc);
3420 } else {
3421 PAINTSTRUCT ps;
3422 hdc = BeginPaint (infoPtr->hwndSelf, &ps);
3423 TRACE("painting (%s)\n", wine_dbgstr_rect(&ps.rcPaint));
3424 if (ps.fErase) {
3425 /* Erase area of paint if requested */
3426 REBAR_EraseBkGnd (infoPtr, hdc);
3427 }
3428 REBAR_Refresh (infoPtr, hdc);
3429 EndPaint (infoPtr->hwndSelf, &ps);
3430 }
3431
3432 return 0;
3433 }
3434
3435
3436 static LRESULT
3437 REBAR_SetCursor (const REBAR_INFO *infoPtr, LPARAM lParam)
3438 {
3439 POINT pt;
3440 UINT flags;
3441
3442 TRACE("code=0x%X id=0x%X\n", LOWORD(lParam), HIWORD(lParam));
3443
3444 GetCursorPos (&pt);
3445 ScreenToClient (infoPtr->hwndSelf, &pt);
3446
3447 REBAR_InternalHitTest (infoPtr, &pt, &flags, NULL);
3448
3449 if (flags == RBHT_GRABBER) {
3450 if ((infoPtr->dwStyle & CCS_VERT) &&
3451 !(infoPtr->dwStyle & RBS_VERTICALGRIPPER))
3452 SetCursor (infoPtr->hcurVert);
3453 else
3454 SetCursor (infoPtr->hcurHorz);
3455 }
3456 else if (flags != RBHT_CLIENT)
3457 SetCursor (infoPtr->hcurArrow);
3458
3459 return 0;
3460 }
3461
3462
3463 static LRESULT
3464 REBAR_SetFont (REBAR_INFO *infoPtr, HFONT font)
3465 {
3466 REBAR_BAND *lpBand;
3467 UINT i;
3468
3469 infoPtr->hFont = font;
3470
3471 /* revalidate all bands to change sizes of text in headers of bands */
3472 for (i=0; i<infoPtr->uNumBands; i++) {
3473 lpBand = REBAR_GetBand(infoPtr, i);
3474 REBAR_ValidateBand (infoPtr, lpBand);
3475 }
3476
3477 REBAR_Layout(infoPtr);
3478 return 0;
3479 }
3480
3481
3482 /*****************************************************
3483 *
3484 * Handles the WM_SETREDRAW message.
3485 *
3486 * Documentation:
3487 * According to testing V4.71 of COMCTL32 returns the
3488 * *previous* status of the redraw flag (either 0 or -1)
3489 * instead of the MSDN documented value of 0 if handled
3490 *
3491 *****************************************************/
3492 static inline LRESULT
3493 REBAR_SetRedraw (REBAR_INFO *infoPtr, BOOL redraw)
3494 {
3495 BOOL oldredraw = infoPtr->DoRedraw;
3496
3497 TRACE("set to %s, fStatus=%08x\n",
3498 (redraw) ? "TRUE" : "FALSE", infoPtr->fStatus);
3499 infoPtr->DoRedraw = redraw;
3500 if (redraw) {
3501 if (infoPtr->fStatus & BAND_NEEDS_REDRAW) {
3502 REBAR_MoveChildWindows (infoPtr, 0, infoPtr->uNumBands);
3503 REBAR_ForceResize (infoPtr);
3504 InvalidateRect (infoPtr->hwndSelf, NULL, TRUE);
3505 }
3506 infoPtr->fStatus &= ~BAND_NEEDS_REDRAW;
3507 }
3508 return (oldredraw) ? -1 : 0;
3509 }
3510
3511
3512 static LRESULT
3513 REBAR_Size (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3514 {
3515 TRACE("wParam=%lx, lParam=%lx\n", wParam, lParam);
3516
3517 /* avoid _Layout resize recursion (but it shouldn't be infinite and it seems Windows does recurse) */
3518 if (infoPtr->fStatus & SELF_RESIZE) {
3519 infoPtr->fStatus &= ~SELF_RESIZE;
3520 TRACE("SELF_RESIZE was set, reset, fStatus=%08x lparam=%08lx\n",
3521 infoPtr->fStatus, lParam);
3522 return 0;
3523 }
3524
3525 if (infoPtr->dwStyle & RBS_AUTOSIZE)
3526 REBAR_AutoSize(infoPtr, TRUE);
3527 else
3528 REBAR_Layout(infoPtr);
3529
3530 return 0;
3531 }
3532
3533
3534 static LRESULT
3535 REBAR_StyleChanged (REBAR_INFO *infoPtr, INT nType, const STYLESTRUCT *lpStyle)
3536 {
3537 TRACE("current style=%08x, styleOld=%08x, style being set to=%08x\n",
3538 infoPtr->dwStyle, lpStyle->styleOld, lpStyle->styleNew);
3539 if (nType == GWL_STYLE)
3540 {
3541 infoPtr->orgStyle = infoPtr->dwStyle = lpStyle->styleNew;
3542 if (GetWindowTheme (infoPtr->hwndSelf))
3543 infoPtr->dwStyle &= ~WS_BORDER;
3544 /* maybe it should be COMMON_STYLES like in toolbar */
3545 if ((lpStyle->styleNew ^ lpStyle->styleOld) & CCS_VERT)
3546 REBAR_Layout(infoPtr);
3547 }
3548 return FALSE;
3549 }
3550
3551 /* update theme after a WM_THEMECHANGED message */
3552 static LRESULT theme_changed (REBAR_INFO* infoPtr)
3553 {
3554 HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
3555 CloseThemeData (theme);
3556 theme = OpenThemeData (infoPtr->hwndSelf, themeClass);
3557 /* WS_BORDER disappears when theming is enabled and reappears when
3558 * disabled... */
3559 infoPtr->dwStyle &= ~WS_BORDER;
3560 infoPtr->dwStyle |= theme ? 0 : (infoPtr->orgStyle & WS_BORDER);
3561 return 0;
3562 }
3563
3564 static LRESULT
3565 REBAR_WindowPosChanged (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3566 {
3567 LRESULT ret;
3568 RECT rc;
3569
3570 ret = DefWindowProcW(infoPtr->hwndSelf, WM_WINDOWPOSCHANGED,
3571 wParam, lParam);
3572 GetWindowRect(infoPtr->hwndSelf, &rc);
3573 TRACE("hwnd %p new pos (%s)\n", infoPtr->hwndSelf, wine_dbgstr_rect(&rc));
3574 return ret;
3575 }
3576
3577
3578 static LRESULT WINAPI
3579 REBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3580 {
3581 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
3582
3583 TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n",
3584 hwnd, uMsg, wParam, lParam);
3585 if (!infoPtr && (uMsg != WM_NCCREATE))
3586 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
3587 switch (uMsg)
3588 {
3589 /* case RB_BEGINDRAG: */
3590
3591 case RB_DELETEBAND:
3592 return REBAR_DeleteBand (infoPtr, wParam);
3593
3594 /* case RB_DRAGMOVE: */
3595 /* case RB_ENDDRAG: */
3596
3597 case RB_GETBANDBORDERS:
3598 return REBAR_GetBandBorders (infoPtr, wParam, (LPRECT)lParam);
3599
3600 case RB_GETBANDCOUNT:
3601 return REBAR_GetBandCount (infoPtr);
3602
3603 case RB_GETBANDINFO_OLD:
3604 case RB_GETBANDINFOA:
3605 case RB_GETBANDINFOW:
3606 return REBAR_GetBandInfoT(infoPtr, wParam, (LPREBARBANDINFOW)lParam,
3607 uMsg == RB_GETBANDINFOW);
3608 case RB_GETBARHEIGHT:
3609 return REBAR_GetBarHeight (infoPtr);
3610
3611 case RB_GETBARINFO:
3612 return REBAR_GetBarInfo (infoPtr, (LPREBARINFO)lParam);
3613
3614 case RB_GETBKCOLOR:
3615 return REBAR_GetBkColor (infoPtr);
3616
3617 /* case RB_GETCOLORSCHEME: */
3618 /* case RB_GETDROPTARGET: */
3619
3620 case RB_GETPALETTE:
3621 return REBAR_GetPalette (infoPtr);
3622
3623 case RB_GETRECT:
3624 return REBAR_GetRect (infoPtr, wParam, (LPRECT)lParam);
3625
3626 case RB_GETROWCOUNT:
3627 return REBAR_GetRowCount (infoPtr);
3628
3629 case RB_GETROWHEIGHT:
3630 return REBAR_GetRowHeight (infoPtr, wParam);
3631
3632 case RB_GETTEXTCOLOR:
3633 return REBAR_GetTextColor (infoPtr);
3634
3635 case RB_GETTOOLTIPS:
3636 return REBAR_GetToolTips (infoPtr);
3637
3638 case RB_GETUNICODEFORMAT:
3639 return REBAR_GetUnicodeFormat (infoPtr);
3640
3641 case CCM_GETVERSION:
3642 return REBAR_GetVersion (infoPtr);
3643
3644 case RB_HITTEST:
3645 return REBAR_HitTest (infoPtr, (LPRBHITTESTINFO)lParam);
3646
3647 case RB_IDTOINDEX:
3648 return REBAR_IdToIndex (infoPtr, wParam);
3649
3650 case RB_INSERTBANDA:
3651 case RB_INSERTBANDW:
3652 return REBAR_InsertBandT(infoPtr, wParam, (LPREBARBANDINFOW)lParam,
3653 uMsg == RB_INSERTBANDW);
3654 case RB_MAXIMIZEBAND:
3655 return REBAR_MaximizeBand (infoPtr, wParam, lParam);
3656
3657 case RB_MINIMIZEBAND:
3658 return REBAR_MinimizeBand (infoPtr, wParam);
3659
3660 case RB_MOVEBAND:
3661 return REBAR_MoveBand (infoPtr, wParam, lParam);
3662
3663 case RB_PUSHCHEVRON:
3664 return REBAR_PushChevron (infoPtr, wParam, lParam);
3665
3666 case RB_SETBANDINFOA:
3667 case RB_SETBANDINFOW:
3668 return REBAR_SetBandInfoT(infoPtr, wParam, (LPREBARBANDINFOW)lParam,
3669 uMsg == RB_SETBANDINFOW);
3670 case RB_SETBARINFO:
3671 return REBAR_SetBarInfo (infoPtr, (LPREBARINFO)lParam);
3672
3673 case RB_SETBKCOLOR:
3674 return REBAR_SetBkColor (infoPtr, lParam);
3675
3676 /* case RB_SETCOLORSCHEME: */
3677 /* case RB_SETPALETTE: */
3678
3679 case RB_SETPARENT:
3680 return REBAR_SetParent (infoPtr, (HWND)wParam);
3681
3682 case RB_SETTEXTCOLOR:
3683 return REBAR_SetTextColor (infoPtr, lParam);
3684
3685 /* case RB_SETTOOLTIPS: */
3686
3687 case RB_SETUNICODEFORMAT:
3688 return REBAR_SetUnicodeFormat (infoPtr, wParam);
3689
3690 case CCM_SETVERSION:
3691 return REBAR_SetVersion (infoPtr, (INT)wParam);
3692
3693 case RB_SHOWBAND:
3694 return REBAR_ShowBand (infoPtr, wParam, lParam);
3695
3696 case RB_SIZETORECT:
3697 return REBAR_SizeToRect (infoPtr, wParam, (LPRECT)lParam);
3698
3699
3700 /* Messages passed to parent */
3701 case WM_COMMAND:
3702 case WM_DRAWITEM:
3703 case WM_NOTIFY:
3704 case WM_MEASUREITEM:
3705 return SendMessageW(REBAR_GetNotifyParent (infoPtr), uMsg, wParam, lParam);
3706
3707
3708 /* case WM_CHARTOITEM: supported according to ControlSpy */
3709
3710 case WM_CREATE:
3711 return REBAR_Create (infoPtr, (LPCREATESTRUCTW)lParam);
3712
3713 case WM_DESTROY:
3714 return REBAR_Destroy (infoPtr);
3715
3716 case WM_ERASEBKGND:
3717 return REBAR_EraseBkGnd (infoPtr, (HDC)wParam);
3718
3719 case WM_GETFONT:
3720 return REBAR_GetFont (infoPtr);
3721
3722 /* case WM_LBUTTONDBLCLK: supported according to ControlSpy */
3723
3724 case WM_LBUTTONDOWN:
3725 return REBAR_LButtonDown (infoPtr, lParam);
3726
3727 case WM_LBUTTONUP:
3728 return REBAR_LButtonUp (infoPtr);
3729
3730 case WM_MOUSEMOVE:
3731 return REBAR_MouseMove (infoPtr, lParam);
3732
3733 case WM_MOUSELEAVE:
3734 return REBAR_MouseLeave (infoPtr);
3735
3736 case WM_NCCALCSIZE:
3737 return REBAR_NCCalcSize (infoPtr, (RECT*)lParam);
3738
3739 case WM_NCCREATE:
3740 return REBAR_NCCreate (hwnd, (LPCREATESTRUCTW)lParam);
3741
3742 case WM_NCHITTEST:
3743 return REBAR_NCHitTest (infoPtr, lParam);
3744
3745 case WM_NCPAINT:
3746 return REBAR_NCPaint (infoPtr);
3747
3748 case WM_NOTIFYFORMAT:
3749 return REBAR_NotifyFormat (infoPtr, lParam);
3750
3751 case WM_PRINTCLIENT:
3752 case WM_PAINT:
3753 return REBAR_Paint (infoPtr, (HDC)wParam);
3754
3755 /* case WM_PALETTECHANGED: supported according to ControlSpy */
3756 /* case WM_QUERYNEWPALETTE:supported according to ControlSpy */
3757 /* case WM_RBUTTONDOWN: supported according to ControlSpy */
3758 /* case WM_RBUTTONUP: supported according to ControlSpy */
3759
3760 case WM_SETCURSOR:
3761 return REBAR_SetCursor (infoPtr, lParam);
3762
3763 case WM_SETFONT:
3764 return REBAR_SetFont (infoPtr, (HFONT)wParam);
3765
3766 case WM_SETREDRAW:
3767 return REBAR_SetRedraw (infoPtr, wParam);
3768
3769 case WM_SIZE:
3770 return REBAR_Size (infoPtr, wParam, lParam);
3771
3772 case WM_STYLECHANGED:
3773 return REBAR_StyleChanged (infoPtr, wParam, (LPSTYLESTRUCT)lParam);
3774
3775 case WM_THEMECHANGED:
3776 return theme_changed (infoPtr);
3777
3778 case WM_SYSCOLORCHANGE:
3779 COMCTL32_RefreshSysColors();
3780 #ifdef __REACTOS__
3781 /* r51522 - Properly support WM_SYSCOLORCHANGE */
3782 infoPtr->clrBtnText = comctl32_color.clrBtnText;
3783 infoPtr->clrBtnFace = comctl32_color.clrBtnFace;
3784 #endif
3785 return 0;
3786
3787 /* case WM_VKEYTOITEM: supported according to ControlSpy */
3788 /* case WM_WININICHANGE: */
3789
3790 case WM_WINDOWPOSCHANGED:
3791 return REBAR_WindowPosChanged (infoPtr, wParam, lParam);
3792
3793 default:
3794 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
3795 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
3796 uMsg, wParam, lParam);
3797 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
3798 }
3799 }
3800
3801
3802 VOID
3803 REBAR_Register (void)
3804 {
3805 WNDCLASSW wndClass;
3806
3807 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
3808 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
3809 wndClass.lpfnWndProc = REBAR_WindowProc;
3810 wndClass.cbClsExtra = 0;
3811 wndClass.cbWndExtra = sizeof(REBAR_INFO *);
3812 wndClass.hCursor = 0;
3813 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
3814 #if GLATESTING
3815 wndClass.hbrBackground = CreateSolidBrush(RGB(0,128,0));
3816 #endif
3817 wndClass.lpszClassName = REBARCLASSNAMEW;
3818
3819 RegisterClassW (&wndClass);
3820
3821 mindragx = GetSystemMetrics (SM_CXDRAG);
3822 mindragy = GetSystemMetrics (SM_CYDRAG);
3823
3824 }
3825
3826
3827 VOID
3828 REBAR_Unregister (void)
3829 {
3830 UnregisterClassW (REBARCLASSNAMEW, NULL);
3831 }