[PSDK] Add missing TB_SETBOUNDINGSIZE.
[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), style: %x\n", adjcx, infoPtr->dwStyle);
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 #ifdef __REACTOS__
1832 HRGN hrgn;
1833 #endif
1834
1835 GetClientRect (infoPtr->hwndSelf, &cr);
1836
1837 #ifdef __REACTOS__
1838
1839 if (theme)
1840 {
1841 if (IsThemeBackgroundPartiallyTransparent(theme, RP_BACKGROUND, 0))
1842 {
1843 DrawThemeParentBackground (infoPtr->hwndSelf, hdc, &cr);
1844 }
1845 DrawThemeBackground (theme, hdc, 0, 0, &cr, NULL);
1846 }
1847
1848 hrgn = CreateRectRgn(cr.left, cr.top, cr.right, cr.bottom);
1849
1850 #endif
1851
1852 oldrow = -1;
1853 for(i=0; i<infoPtr->uNumBands; i++) {
1854 RECT rcBand;
1855 #ifdef __REACTOS__
1856 RECT rcBandReal;
1857 HRGN hrgnBand;
1858 #endif
1859
1860 lpBand = REBAR_GetBand(infoPtr, i);
1861 if (HIDDENBAND(lpBand)) continue;
1862 translate_rect(infoPtr, &rcBand, &lpBand->rcBand);
1863
1864 #ifdef __REACTOS__
1865 rcBandReal = rcBand;
1866 #endif
1867
1868 /* draw band separator between rows */
1869 if (lpBand->iRow != oldrow) {
1870 oldrow = lpBand->iRow;
1871 if (infoPtr->dwStyle & RBS_BANDBORDERS) {
1872 RECT rcRowSep;
1873 rcRowSep = rcBand;
1874 if (infoPtr->dwStyle & CCS_VERT) {
1875 rcRowSep.right += SEP_WIDTH_SIZE;
1876 rcRowSep.bottom = infoPtr->calcSize.cx;
1877 if (theme)
1878 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcRowSep, EDGE_ETCHED, BF_RIGHT, NULL);
1879 else
1880 DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_RIGHT);
1881 }
1882 else {
1883 rcRowSep.bottom += SEP_WIDTH_SIZE;
1884 rcRowSep.right = infoPtr->calcSize.cx;
1885 if (theme)
1886 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcRowSep, EDGE_ETCHED, BF_BOTTOM, NULL);
1887 else
1888 DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_BOTTOM);
1889 }
1890 TRACE ("drawing band separator bottom (%s)\n",
1891 wine_dbgstr_rect(&rcRowSep));
1892 #ifdef __REACTOS__
1893 rcBandReal = rcRowSep;
1894 #endif
1895 }
1896 }
1897
1898 /* draw band separator between bands in a row */
1899 if (infoPtr->dwStyle & RBS_BANDBORDERS && lpBand->rcBand.left > 0) {
1900 RECT rcSep;
1901 rcSep = rcBand;
1902 if (infoPtr->dwStyle & CCS_VERT) {
1903 rcSep.bottom = rcSep.top;
1904 rcSep.top -= SEP_WIDTH_SIZE;
1905 #ifdef __REACTOS__
1906 rcBandReal.top -= SEP_WIDTH_SIZE;
1907 #endif
1908 if (theme)
1909 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcSep, EDGE_ETCHED, BF_BOTTOM, NULL);
1910 else
1911 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_BOTTOM);
1912 }
1913 else {
1914 rcSep.right = rcSep.left;
1915 rcSep.left -= SEP_WIDTH_SIZE;
1916 #ifdef __REACTOS__
1917 rcBandReal.left -= SEP_WIDTH_SIZE;
1918 #endif
1919 if (theme)
1920 DrawThemeEdge (theme, hdc, RP_BAND, 0, &rcSep, EDGE_ETCHED, BF_RIGHT, NULL);
1921 else
1922 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_RIGHT);
1923 }
1924 TRACE("drawing band separator right (%s)\n",
1925 wine_dbgstr_rect(&rcSep));
1926 }
1927
1928 /* draw the actual background */
1929 if (lpBand->clrBack != CLR_NONE) {
1930 new = (lpBand->clrBack == CLR_DEFAULT) ? infoPtr->clrBtnFace :
1931 lpBand->clrBack;
1932 #if GLATESTING
1933 /* testing only - make background green to see it */
1934 new = RGB(0,128,0);
1935 #endif
1936 }
1937 else {
1938 /* In the absence of documentation for Rebar vs. CLR_NONE,
1939 * we will use the default BtnFace color. Note documentation
1940 * exists for Listview and Imagelist.
1941 */
1942 new = infoPtr->clrBtnFace;
1943 #if GLATESTING
1944 /* testing only - make background green to see it */
1945 new = RGB(0,128,0);
1946 #endif
1947 }
1948
1949 #ifdef __REACTOS__
1950 if (!theme)
1951 #else
1952 if (theme)
1953 {
1954 /* When themed, the background color is ignored (but not a
1955 * background bitmap */
1956 DrawThemeBackground (theme, hdc, 0, 0, &cr, &rcBand);
1957 }
1958 else
1959 #endif
1960 {
1961 old = SetBkColor (hdc, new);
1962 TRACE("%s background color=0x%06x, band %s\n",
1963 (lpBand->clrBack == CLR_NONE) ? "none" :
1964 ((lpBand->clrBack == CLR_DEFAULT) ? "dft" : ""),
1965 GetBkColor(hdc), wine_dbgstr_rect(&rcBand));
1966 ExtTextOutW (hdc, 0, 0, ETO_OPAQUE, &rcBand, NULL, 0, 0);
1967 if (lpBand->clrBack != CLR_NONE)
1968 SetBkColor (hdc, old);
1969 }
1970
1971 #ifdef __REACTOS__
1972 hrgnBand = CreateRectRgn(rcBandReal.left, rcBandReal.top, rcBandReal.right, rcBandReal.bottom);
1973 CombineRgn(hrgn, hrgn, hrgnBand, RGN_DIFF);
1974 DeleteObject(hrgnBand);
1975 #endif
1976 }
1977
1978 #if 1
1979 #ifdef __REACTOS__
1980 if (!theme)
1981 #endif
1982 {
1983 //FIXME: Apparently painting the remaining area is a v6 feature
1984 HBRUSH hbrush = CreateSolidBrush(new);
1985 FillRgn(hdc, hrgn, hbrush);
1986 DeleteObject(hbrush);
1987 DeleteObject(hrgn);
1988 }
1989 #endif
1990 return TRUE;
1991 }
1992
1993 static void
1994 REBAR_InternalHitTest (const REBAR_INFO *infoPtr, const POINT *lpPt, UINT *pFlags, INT *pBand)
1995 {
1996 REBAR_BAND *lpBand;
1997 RECT rect;
1998 UINT iCount;
1999
2000 GetClientRect (infoPtr->hwndSelf, &rect);
2001
2002 *pFlags = RBHT_NOWHERE;
2003 if (PtInRect (&rect, *lpPt))
2004 {
2005 if (infoPtr->uNumBands == 0) {
2006 *pFlags = RBHT_NOWHERE;
2007 if (pBand)
2008 *pBand = -1;
2009 TRACE("NOWHERE\n");
2010 return;
2011 }
2012 else {
2013 /* somewhere inside */
2014 for (iCount = 0; iCount < infoPtr->uNumBands; iCount++) {
2015 RECT rcBand;
2016 lpBand = REBAR_GetBand(infoPtr, iCount);
2017 translate_rect(infoPtr, &rcBand, &lpBand->rcBand);
2018 if (HIDDENBAND(lpBand)) continue;
2019 if (PtInRect (&rcBand, *lpPt)) {
2020 if (pBand)
2021 *pBand = iCount;
2022 if (PtInRect (&lpBand->rcGripper, *lpPt)) {
2023 *pFlags = RBHT_GRABBER;
2024 TRACE("ON GRABBER %d\n", iCount);
2025 return;
2026 }
2027 else if (PtInRect (&lpBand->rcCapImage, *lpPt)) {
2028 *pFlags = RBHT_CAPTION;
2029 TRACE("ON CAPTION %d\n", iCount);
2030 return;
2031 }
2032 else if (PtInRect (&lpBand->rcCapText, *lpPt)) {
2033 *pFlags = RBHT_CAPTION;
2034 TRACE("ON CAPTION %d\n", iCount);
2035 return;
2036 }
2037 else if (PtInRect (&lpBand->rcChild, *lpPt)) {
2038 *pFlags = RBHT_CLIENT;
2039 TRACE("ON CLIENT %d\n", iCount);
2040 return;
2041 }
2042 else if (PtInRect (&lpBand->rcChevron, *lpPt)) {
2043 *pFlags = RBHT_CHEVRON;
2044 TRACE("ON CHEVRON %d\n", iCount);
2045 return;
2046 }
2047 else {
2048 *pFlags = RBHT_NOWHERE;
2049 TRACE("NOWHERE %d\n", iCount);
2050 return;
2051 }
2052 }
2053 }
2054
2055 *pFlags = RBHT_NOWHERE;
2056 if (pBand)
2057 *pBand = -1;
2058
2059 TRACE("NOWHERE\n");
2060 return;
2061 }
2062 }
2063 else {
2064 *pFlags = RBHT_NOWHERE;
2065 if (pBand)
2066 *pBand = -1;
2067 TRACE("NOWHERE\n");
2068 return;
2069 }
2070 }
2071
2072 static void
2073 REBAR_HandleLRDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
2074 /* Function: This will implement the functionality of a */
2075 /* Gripper drag within a row. It will not implement "out- */
2076 /* of-row" drags. (They are detected and handled in */
2077 /* REBAR_MouseMove.) */
2078 {
2079 REBAR_BAND *hitBand;
2080 INT iHitBand, iRowBegin, iRowEnd;
2081 INT movement, xBand, cxLeft = 0;
2082 BOOL shrunkBands = FALSE;
2083
2084 iHitBand = infoPtr->iGrabbedBand;
2085 iRowBegin = get_row_begin_for_band(infoPtr, iHitBand);
2086 iRowEnd = get_row_end_for_band(infoPtr, iHitBand);
2087 hitBand = REBAR_GetBand(infoPtr, iHitBand);
2088
2089 xBand = hitBand->rcBand.left;
2090 movement = (infoPtr->dwStyle&CCS_VERT ? ptsmove->y : ptsmove->x)
2091 - (xBand + REBAR_PRE_GRIPPER - infoPtr->ihitoffset);
2092
2093 /* Dragging the first band in a row cannot cause shrinking */
2094 if(iHitBand != iRowBegin)
2095 {
2096 if (movement < 0) {
2097 cxLeft = REBAR_ShrinkBandsRTL(infoPtr, iRowBegin, iHitBand, -movement, TRUE);
2098
2099 if(cxLeft < -movement)
2100 {
2101 hitBand->cxEffective += -movement - cxLeft;
2102 hitBand->cx = hitBand->cxEffective;
2103 shrunkBands = TRUE;
2104 }
2105
2106 } else if (movement > 0) {
2107
2108 cxLeft = movement;
2109 if (prev_visible(infoPtr, iHitBand) >= 0)
2110 cxLeft = REBAR_ShrinkBandsLTR(infoPtr, iHitBand, iRowEnd, movement, TRUE);
2111
2112 if(cxLeft < movement)
2113 {
2114 REBAR_BAND *lpPrev = REBAR_GetBand(infoPtr, prev_visible(infoPtr, iHitBand));
2115 lpPrev->cxEffective += movement - cxLeft;
2116 lpPrev->cx = hitBand->cxEffective;
2117 shrunkBands = TRUE;
2118 }
2119
2120 }
2121 }
2122
2123 if(!shrunkBands)
2124 {
2125 /* It was not possible to move the band by shrinking bands.
2126 * Try relocating the band instead. */
2127 REBAR_MoveBandToRowOffset(infoPtr, iHitBand, iRowBegin,
2128 iRowEnd, xBand + movement, TRUE);
2129 }
2130
2131 REBAR_SetRowRectsX(infoPtr, iRowBegin, iRowEnd);
2132 if (infoPtr->dwStyle & CCS_VERT)
2133 REBAR_CalcVertBand(infoPtr, 0, infoPtr->uNumBands);
2134 else
2135 REBAR_CalcHorzBand(infoPtr, 0, infoPtr->uNumBands);
2136 REBAR_MoveChildWindows(infoPtr, iRowBegin, iRowEnd);
2137 }
2138
2139 static void
2140 REBAR_HandleUDDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
2141 {
2142 INT yOff = (infoPtr->dwStyle & CCS_VERT) ? ptsmove->x : ptsmove->y;
2143 INT iHitBand, iRowBegin, iNextRowBegin;
2144 REBAR_BAND *hitBand, *rowBeginBand;
2145
2146 if(infoPtr->uNumBands <= 0)
2147 ERR("There are no bands in this rebar\n");
2148
2149 /* Up/down dragging can only occur when there is more than one
2150 * band in the rebar */
2151 if(infoPtr->uNumBands <= 1)
2152 return;
2153
2154 iHitBand = infoPtr->iGrabbedBand;
2155 hitBand = REBAR_GetBand(infoPtr, iHitBand);
2156
2157 /* If we're taking a band that has the RBBS_BREAK style set, this
2158 * style needs to be reapplied to the band that is going to become
2159 * the new start of the row. */
2160 if((hitBand->fStyle & RBBS_BREAK) &&
2161 (iHitBand < infoPtr->uNumBands - 1))
2162 REBAR_GetBand(infoPtr, iHitBand + 1)->fStyle |= RBBS_BREAK;
2163
2164 if(yOff < 0)
2165 {
2166 /* Place the band above the current top row */
2167 if(iHitBand==0 && (infoPtr->uNumBands==1 || REBAR_GetBand(infoPtr, 1)->fStyle&RBBS_BREAK))
2168 return;
2169 DPA_DeletePtr(infoPtr->bands, iHitBand);
2170 hitBand->fStyle &= ~RBBS_BREAK;
2171 REBAR_GetBand(infoPtr, 0)->fStyle |= RBBS_BREAK;
2172 infoPtr->iGrabbedBand = DPA_InsertPtr(
2173 infoPtr->bands, 0, hitBand);
2174 }
2175 else if(yOff > REBAR_GetBand(infoPtr, infoPtr->uNumBands - 1)->rcBand.bottom)
2176 {
2177 /* Place the band below the current bottom row */
2178 if(iHitBand == infoPtr->uNumBands-1 && hitBand->fStyle&RBBS_BREAK)
2179 return;
2180 DPA_DeletePtr(infoPtr->bands, iHitBand);
2181 hitBand->fStyle |= RBBS_BREAK;
2182 infoPtr->iGrabbedBand = DPA_InsertPtr(
2183 infoPtr->bands, infoPtr->uNumBands - 1, hitBand);
2184 }
2185 else
2186 {
2187 /* Place the band in the prexisting row the mouse is hovering over */
2188 iRowBegin = first_visible(infoPtr);
2189 while(iRowBegin < infoPtr->uNumBands)
2190 {
2191 iNextRowBegin = get_row_end_for_band(infoPtr, iRowBegin);
2192 rowBeginBand = REBAR_GetBand(infoPtr, iRowBegin);
2193 if(rowBeginBand->rcBand.bottom > yOff)
2194 {
2195 REBAR_MoveBandToRowOffset(
2196 infoPtr, iHitBand, iRowBegin, iNextRowBegin,
2197 ((infoPtr->dwStyle & CCS_VERT) ? ptsmove->y : ptsmove->x)
2198 - REBAR_PRE_GRIPPER - infoPtr->ihitoffset, FALSE);
2199 break;
2200 }
2201
2202 iRowBegin = iNextRowBegin;
2203 }
2204 }
2205
2206 REBAR_Layout(infoPtr);
2207 }
2208
2209
2210 /* << REBAR_BeginDrag >> */
2211
2212
2213 static LRESULT
2214 REBAR_DeleteBand (REBAR_INFO *infoPtr, WPARAM wParam)
2215 {
2216 UINT uBand = (UINT)wParam;
2217 REBAR_BAND *lpBand;
2218
2219 if (uBand >= infoPtr->uNumBands)
2220 return FALSE;
2221
2222 TRACE("deleting band %u!\n", uBand);
2223 lpBand = REBAR_GetBand(infoPtr, uBand);
2224 REBAR_Notify_NMREBAR (infoPtr, uBand, RBN_DELETINGBAND);
2225 /* TODO: a return of 1 should probably cancel the deletion */
2226
2227 if (lpBand->hwndChild)
2228 ShowWindow(lpBand->hwndChild, SW_HIDE);
2229 Free(lpBand->lpText);
2230 Free(lpBand);
2231
2232 infoPtr->uNumBands--;
2233 DPA_DeletePtr(infoPtr->bands, uBand);
2234
2235 REBAR_Notify_NMREBAR (infoPtr, -1, RBN_DELETEDBAND);
2236
2237 /* if only 1 band left the re-validate to possible eliminate gripper */
2238 if (infoPtr->uNumBands == 1)
2239 REBAR_ValidateBand (infoPtr, REBAR_GetBand(infoPtr, 0));
2240
2241 REBAR_Layout(infoPtr);
2242
2243 return TRUE;
2244 }
2245
2246
2247 /* << REBAR_DragMove >> */
2248 /* << REBAR_EndDrag >> */
2249
2250
2251 static LRESULT
2252 REBAR_GetBandBorders (const REBAR_INFO *infoPtr, UINT uBand, RECT *lpRect)
2253 {
2254 REBAR_BAND *lpBand;
2255
2256 if (!lpRect)
2257 return 0;
2258 if (uBand >= infoPtr->uNumBands)
2259 return 0;
2260
2261 lpBand = REBAR_GetBand(infoPtr, uBand);
2262
2263 /* FIXME - the following values were determined by experimentation */
2264 /* with the REBAR Control Spy. I have guesses as to what the 4 and */
2265 /* 1 are, but I am not sure. There doesn't seem to be any actual */
2266 /* difference in size of the control area with and without the */
2267 /* style. - GA */
2268 if (infoPtr->dwStyle & RBS_BANDBORDERS) {
2269 if (infoPtr->dwStyle & CCS_VERT) {
2270 lpRect->left = 1;
2271 lpRect->top = lpBand->cxHeader + 4;
2272 lpRect->right = 1;
2273 lpRect->bottom = 0;
2274 }
2275 else {
2276 lpRect->left = lpBand->cxHeader + 4;
2277 lpRect->top = 1;
2278 lpRect->right = 0;
2279 lpRect->bottom = 1;
2280 }
2281 }
2282 else {
2283 lpRect->left = lpBand->cxHeader;
2284 }
2285 return 0;
2286 }
2287
2288
2289 static inline LRESULT
2290 REBAR_GetBandCount (const REBAR_INFO *infoPtr)
2291 {
2292 TRACE("band count %u!\n", infoPtr->uNumBands);
2293
2294 return infoPtr->uNumBands;
2295 }
2296
2297
2298 static LRESULT
2299 REBAR_GetBandInfoT(const REBAR_INFO *infoPtr, UINT uIndex, LPREBARBANDINFOW lprbbi, BOOL bUnicode)
2300 {
2301 REBAR_BAND *lpBand;
2302
2303 if (!lprbbi || lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2304 return FALSE;
2305
2306 if (uIndex >= infoPtr->uNumBands)
2307 return FALSE;
2308
2309 TRACE("index %u (bUnicode=%d)\n", uIndex, bUnicode);
2310
2311 /* copy band information */
2312 lpBand = REBAR_GetBand(infoPtr, uIndex);
2313
2314 if (lprbbi->fMask & RBBIM_STYLE)
2315 lprbbi->fStyle = lpBand->fStyle;
2316
2317 if (lprbbi->fMask & RBBIM_COLORS) {
2318 lprbbi->clrFore = lpBand->clrFore;
2319 lprbbi->clrBack = lpBand->clrBack;
2320 if (lprbbi->clrBack == CLR_DEFAULT)
2321 lprbbi->clrBack = infoPtr->clrBtnFace;
2322 }
2323
2324 if (lprbbi->fMask & RBBIM_TEXT) {
2325 if (bUnicode)
2326 Str_GetPtrW(lpBand->lpText, lprbbi->lpText, lprbbi->cch);
2327 else
2328 Str_GetPtrWtoA(lpBand->lpText, (LPSTR)lprbbi->lpText, lprbbi->cch);
2329 }
2330
2331 if (lprbbi->fMask & RBBIM_IMAGE)
2332 lprbbi->iImage = lpBand->iImage;
2333
2334 if (lprbbi->fMask & RBBIM_CHILD)
2335 lprbbi->hwndChild = lpBand->hwndChild;
2336
2337 if (lprbbi->fMask & RBBIM_CHILDSIZE) {
2338 lprbbi->cxMinChild = lpBand->cxMinChild;
2339 lprbbi->cyMinChild = lpBand->cyMinChild;
2340 /* to make tests pass we follow Windows behaviour and allow to read these fields only
2341 * for RBBS_VARIABLEHEIGHTS bands */
2342 if (lprbbi->cbSize >= REBARBANDINFOW_V6_SIZE && (lpBand->fStyle & RBBS_VARIABLEHEIGHT)) {
2343 lprbbi->cyChild = lpBand->cyChild;
2344 lprbbi->cyMaxChild = lpBand->cyMaxChild;
2345 lprbbi->cyIntegral = lpBand->cyIntegral;
2346 }
2347 }
2348
2349 if (lprbbi->fMask & RBBIM_SIZE)
2350 lprbbi->cx = lpBand->cx;
2351
2352 if (lprbbi->fMask & RBBIM_BACKGROUND)
2353 lprbbi->hbmBack = lpBand->hbmBack;
2354
2355 if (lprbbi->fMask & RBBIM_ID)
2356 lprbbi->wID = lpBand->wID;
2357
2358 /* check for additional data */
2359 if (lprbbi->cbSize >= REBARBANDINFOW_V6_SIZE) {
2360 if (lprbbi->fMask & RBBIM_IDEALSIZE)
2361 lprbbi->cxIdeal = lpBand->cxIdeal;
2362
2363 if (lprbbi->fMask & RBBIM_LPARAM)
2364 lprbbi->lParam = lpBand->lParam;
2365
2366 if (lprbbi->fMask & RBBIM_HEADERSIZE)
2367 lprbbi->cxHeader = lpBand->cxHeader;
2368 }
2369
2370 REBAR_DumpBandInfo(lprbbi);
2371
2372 return TRUE;
2373 }
2374
2375
2376 static LRESULT
2377 REBAR_GetBarHeight (const REBAR_INFO *infoPtr)
2378 {
2379 INT nHeight;
2380
2381 nHeight = infoPtr->calcSize.cy;
2382
2383 TRACE("height = %d\n", nHeight);
2384
2385 return nHeight;
2386 }
2387
2388
2389 static LRESULT
2390 REBAR_GetBarInfo (const REBAR_INFO *infoPtr, LPREBARINFO lpInfo)
2391 {
2392 if (!lpInfo || lpInfo->cbSize < sizeof (REBARINFO))
2393 return FALSE;
2394
2395 TRACE("getting bar info!\n");
2396
2397 if (infoPtr->himl) {
2398 lpInfo->himl = infoPtr->himl;
2399 lpInfo->fMask |= RBIM_IMAGELIST;
2400 }
2401
2402 return TRUE;
2403 }
2404
2405
2406 static inline LRESULT
2407 REBAR_GetBkColor (const REBAR_INFO *infoPtr)
2408 {
2409 COLORREF clr = infoPtr->clrBk;
2410
2411 if (clr == CLR_DEFAULT)
2412 clr = infoPtr->clrBtnFace;
2413
2414 TRACE("background color 0x%06x!\n", clr);
2415
2416 return clr;
2417 }
2418
2419
2420 /* << REBAR_GetColorScheme >> */
2421 /* << REBAR_GetDropTarget >> */
2422
2423
2424 static LRESULT
2425 REBAR_GetPalette (const REBAR_INFO *infoPtr)
2426 {
2427 FIXME("empty stub!\n");
2428
2429 return 0;
2430 }
2431
2432
2433 static LRESULT
2434 REBAR_GetRect (const REBAR_INFO *infoPtr, INT iBand, RECT *lprc)
2435 {
2436 REBAR_BAND *lpBand;
2437
2438 if (iBand < 0 || iBand >= infoPtr->uNumBands)
2439 return FALSE;
2440 if (!lprc)
2441 return FALSE;
2442
2443 lpBand = REBAR_GetBand(infoPtr, iBand);
2444 /* For CCS_VERT the coordinates will be swapped - like on Windows */
2445 CopyRect (lprc, &lpBand->rcBand);
2446
2447 TRACE("band %d, (%s)\n", iBand, wine_dbgstr_rect(lprc));
2448
2449 return TRUE;
2450 }
2451
2452
2453 static inline LRESULT
2454 REBAR_GetRowCount (const REBAR_INFO *infoPtr)
2455 {
2456 TRACE("%u\n", infoPtr->uNumRows);
2457
2458 return infoPtr->uNumRows;
2459 }
2460
2461
2462 static LRESULT
2463 REBAR_GetRowHeight (const REBAR_INFO *infoPtr, INT iRow)
2464 {
2465 int j = 0, ret = 0;
2466 UINT i;
2467 REBAR_BAND *lpBand;
2468
2469 for (i=0; i<infoPtr->uNumBands; i++) {
2470 lpBand = REBAR_GetBand(infoPtr, i);
2471 if (HIDDENBAND(lpBand)) continue;
2472 if (lpBand->iRow != iRow) continue;
2473 j = lpBand->rcBand.bottom - lpBand->rcBand.top;
2474 if (j > ret) ret = j;
2475 }
2476
2477 TRACE("row %d, height %d\n", iRow, ret);
2478
2479 return ret;
2480 }
2481
2482
2483 static inline LRESULT
2484 REBAR_GetTextColor (const REBAR_INFO *infoPtr)
2485 {
2486 TRACE("text color 0x%06x!\n", infoPtr->clrText);
2487
2488 return infoPtr->clrText;
2489 }
2490
2491
2492 static inline LRESULT
2493 REBAR_GetToolTips (const REBAR_INFO *infoPtr)
2494 {
2495 return (LRESULT)infoPtr->hwndToolTip;
2496 }
2497
2498
2499 static inline LRESULT
2500 REBAR_GetUnicodeFormat (const REBAR_INFO *infoPtr)
2501 {
2502 TRACE("%s hwnd=%p\n",
2503 infoPtr->bUnicode ? "TRUE" : "FALSE", infoPtr->hwndSelf);
2504
2505 return infoPtr->bUnicode;
2506 }
2507
2508
2509 static inline LRESULT
2510 REBAR_GetVersion (const REBAR_INFO *infoPtr)
2511 {
2512 TRACE("version %d\n", infoPtr->iVersion);
2513 return infoPtr->iVersion;
2514 }
2515
2516
2517 static LRESULT
2518 REBAR_HitTest (const REBAR_INFO *infoPtr, LPRBHITTESTINFO lprbht)
2519 {
2520 if (!lprbht)
2521 return -1;
2522
2523 REBAR_InternalHitTest (infoPtr, &lprbht->pt, &lprbht->flags, &lprbht->iBand);
2524
2525 return lprbht->iBand;
2526 }
2527
2528
2529 static LRESULT
2530 REBAR_IdToIndex (const REBAR_INFO *infoPtr, UINT uId)
2531 {
2532 UINT i;
2533
2534 if (infoPtr->uNumBands < 1)
2535 return -1;
2536
2537 for (i = 0; i < infoPtr->uNumBands; i++) {
2538 if (REBAR_GetBand(infoPtr, i)->wID == uId) {
2539 TRACE("id %u is band %u found!\n", uId, i);
2540 return i;
2541 }
2542 }
2543
2544 TRACE("id %u is not found\n", uId);
2545 return -1;
2546 }
2547
2548
2549 static LRESULT
2550 REBAR_InsertBandT(REBAR_INFO *infoPtr, INT iIndex, const REBARBANDINFOW *lprbbi, BOOL bUnicode)
2551 {
2552 REBAR_BAND *lpBand;
2553
2554 if (!lprbbi || lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2555 return FALSE;
2556
2557 /* trace the index as signed to see the -1 */
2558 TRACE("insert band at %d (bUnicode=%d)!\n", iIndex, bUnicode);
2559 REBAR_DumpBandInfo(lprbbi);
2560
2561 if (!(lpBand = Alloc(sizeof(REBAR_BAND)))) return FALSE;
2562 if ((iIndex == -1) || (iIndex > infoPtr->uNumBands))
2563 iIndex = infoPtr->uNumBands;
2564 if (DPA_InsertPtr(infoPtr->bands, iIndex, lpBand) == -1)
2565 {
2566 Free(lpBand);
2567 return FALSE;
2568 }
2569 infoPtr->uNumBands++;
2570
2571 TRACE("index %d!\n", iIndex);
2572
2573 /* initialize band */
2574 memset(lpBand, 0, sizeof(*lpBand));
2575 lpBand->clrFore = infoPtr->clrText == CLR_NONE ? infoPtr->clrBtnText :
2576 infoPtr->clrText;
2577 lpBand->clrBack = infoPtr->clrBk == CLR_NONE ? infoPtr->clrBtnFace :
2578 infoPtr->clrBk;
2579 lpBand->iImage = -1;
2580
2581 REBAR_CommonSetupBand(infoPtr->hwndSelf, lprbbi, lpBand);
2582
2583 /* Make sure the defaults for these are correct */
2584 if (lprbbi->cbSize < REBARBANDINFOA_V6_SIZE || !(lpBand->fStyle & RBBS_VARIABLEHEIGHT)) {
2585 lpBand->cyChild = lpBand->cyMinChild;
2586 lpBand->cyMaxChild = 0x7fffffff;
2587 lpBand->cyIntegral = 0;
2588 }
2589
2590 if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
2591 if (bUnicode)
2592 Str_SetPtrW(&lpBand->lpText, lprbbi->lpText);
2593 else
2594 Str_SetPtrAtoW(&lpBand->lpText, (LPSTR)lprbbi->lpText);
2595 }
2596
2597 REBAR_ValidateBand (infoPtr, lpBand);
2598 /* On insert of second band, revalidate band 1 to possible add gripper */
2599 if (infoPtr->uNumBands == 2)
2600 REBAR_ValidateBand (infoPtr, REBAR_GetBand(infoPtr, 0));
2601
2602 REBAR_DumpBand (infoPtr);
2603
2604 REBAR_Layout(infoPtr);
2605 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
2606
2607 return TRUE;
2608 }
2609
2610
2611 static LRESULT
2612 REBAR_MaximizeBand (const REBAR_INFO *infoPtr, INT iBand, LPARAM lParam)
2613 {
2614 REBAR_BAND *lpBand;
2615 int iRowBegin, iRowEnd;
2616 int cxDesired, extra, extraOrig;
2617 int cxIdealBand;
2618
2619 /* Validate */
2620 if (infoPtr->uNumBands == 0 || iBand < 0 || iBand >= infoPtr->uNumBands) {
2621 /* error !!! */
2622 ERR("Illegal MaximizeBand, requested=%d, current band count=%d\n",
2623 iBand, infoPtr->uNumBands);
2624 return FALSE;
2625 }
2626
2627 lpBand = REBAR_GetBand(infoPtr, iBand);
2628
2629 if (lpBand->fStyle & RBBS_HIDDEN)
2630 {
2631 /* Windows is buggy and creates a hole */
2632 WARN("Ignoring maximize request on a hidden band (%d)\n", iBand);
2633 return FALSE;
2634 }
2635
2636 cxIdealBand = lpBand->cxIdeal + lpBand->cxHeader + REBAR_POST_CHILD;
2637 if (lParam && (lpBand->cxEffective < cxIdealBand))
2638 cxDesired = cxIdealBand;
2639 else
2640 cxDesired = infoPtr->calcSize.cx;
2641
2642 iRowBegin = get_row_begin_for_band(infoPtr, iBand);
2643 iRowEnd = get_row_end_for_band(infoPtr, iBand);
2644 extraOrig = extra = cxDesired - lpBand->cxEffective;
2645 if (extra > 0)
2646 extra = REBAR_ShrinkBandsRTL(infoPtr, iRowBegin, iBand, extra, TRUE);
2647 if (extra > 0)
2648 extra = REBAR_ShrinkBandsLTR(infoPtr, next_visible(infoPtr, iBand), iRowEnd, extra, TRUE);
2649 lpBand->cxEffective += extraOrig - extra;
2650 lpBand->cx = lpBand->cxEffective;
2651 TRACE("(%d, %ld): Wanted size %d, obtained %d (shrink %d, %d)\n", iBand, lParam, cxDesired, lpBand->cx, extraOrig, extra);
2652 REBAR_SetRowRectsX(infoPtr, iRowBegin, iRowEnd);
2653
2654 if (infoPtr->dwStyle & CCS_VERT)
2655 REBAR_CalcVertBand(infoPtr, iRowBegin, iRowEnd);
2656 else
2657 REBAR_CalcHorzBand(infoPtr, iRowBegin, iRowEnd);
2658 REBAR_MoveChildWindows(infoPtr, iRowBegin, iRowEnd);
2659 return TRUE;
2660
2661 }
2662
2663
2664 static LRESULT
2665 REBAR_MinimizeBand (const REBAR_INFO *infoPtr, INT iBand)
2666 {
2667 REBAR_BAND *lpBand;
2668 int iPrev, iRowBegin, iRowEnd;
2669
2670 /* A "minimize" band is equivalent to "dragging" the gripper
2671 * of than band to the right till the band is only the size
2672 * of the cxHeader.
2673 */
2674
2675 /* Validate */
2676 if (infoPtr->uNumBands == 0 || iBand < 0 || iBand >= infoPtr->uNumBands) {
2677 /* error !!! */
2678 ERR("Illegal MinimizeBand, requested=%d, current band count=%d\n",
2679 iBand, infoPtr->uNumBands);
2680 return FALSE;
2681 }
2682
2683 /* compute amount of movement and validate */
2684 lpBand = REBAR_GetBand(infoPtr, iBand);
2685
2686 if (lpBand->fStyle & RBBS_HIDDEN)
2687 {
2688 /* Windows is buggy and creates a hole/overlap */
2689 WARN("Ignoring minimize request on a hidden band (%d)\n", iBand);
2690 return FALSE;
2691 }
2692
2693 iPrev = prev_visible(infoPtr, iBand);
2694 /* if first band in row */
2695 if (iPrev < 0 || REBAR_GetBand(infoPtr, iPrev)->iRow != lpBand->iRow) {
2696 int iNext = next_visible(infoPtr, iBand);
2697 if (iNext < infoPtr->uNumBands && REBAR_GetBand(infoPtr, iNext)->iRow == lpBand->iRow) {
2698 TRACE("(%d): Minimizing the first band in row is by maximizing the second\n", iBand);
2699 REBAR_MaximizeBand(infoPtr, iNext, FALSE);
2700 }
2701 else
2702 TRACE("(%d): Only one band in row - nothing to do\n", iBand);
2703 return TRUE;
2704 }
2705
2706 REBAR_GetBand(infoPtr, iPrev)->cxEffective += lpBand->cxEffective - lpBand->cxMinBand;
2707 REBAR_GetBand(infoPtr, iPrev)->cx = REBAR_GetBand(infoPtr, iPrev)->cxEffective;
2708 lpBand->cx = lpBand->cxEffective = lpBand->cxMinBand;
2709
2710 iRowBegin = get_row_begin_for_band(infoPtr, iBand);
2711 iRowEnd = get_row_end_for_band(infoPtr, iBand);
2712 REBAR_SetRowRectsX(infoPtr, iRowBegin, iRowEnd);
2713
2714 if (infoPtr->dwStyle & CCS_VERT)
2715 REBAR_CalcVertBand(infoPtr, iRowBegin, iRowEnd);
2716 else
2717 REBAR_CalcHorzBand(infoPtr, iRowBegin, iRowEnd);
2718 REBAR_MoveChildWindows(infoPtr, iRowBegin, iRowEnd);
2719 return FALSE;
2720 }
2721
2722
2723 static LRESULT
2724 REBAR_MoveBand (REBAR_INFO *infoPtr, INT iFrom, INT iTo)
2725 {
2726 REBAR_BAND *lpBand;
2727
2728 /* Validate */
2729 if ((infoPtr->uNumBands == 0) ||
2730 (iFrom < 0) || iFrom >= infoPtr->uNumBands ||
2731 (iTo < 0) || iTo >= infoPtr->uNumBands) {
2732 /* error !!! */
2733 ERR("Illegal MoveBand, from=%d, to=%d, current band count=%d\n",
2734 iFrom, iTo, infoPtr->uNumBands);
2735 return FALSE;
2736 }
2737
2738 lpBand = REBAR_GetBand(infoPtr, iFrom);
2739 DPA_DeletePtr(infoPtr->bands, iFrom);
2740 DPA_InsertPtr(infoPtr->bands, iTo, lpBand);
2741
2742 TRACE("moved band %d to index %d\n", iFrom, iTo);
2743 REBAR_DumpBand (infoPtr);
2744
2745 /* **************************************************** */
2746 /* */
2747 /* We do not do a REBAR_Layout here because the native */
2748 /* control does not do that. The actual layout and */
2749 /* repaint is done by the *next* real action, ex.: */
2750 /* RB_INSERTBAND, RB_DELETEBAND, RB_SIZETORECT, etc. */
2751 /* */
2752 /* **************************************************** */
2753
2754 return TRUE;
2755 }
2756
2757
2758 /* return TRUE if two strings are different */
2759 static BOOL
2760 REBAR_strdifW( LPCWSTR a, LPCWSTR b )
2761 {
2762 return ( (a && !b) || (b && !a) || (a && b && lstrcmpW(a, b) ) );
2763 }
2764
2765 static LRESULT
2766 REBAR_SetBandInfoT(REBAR_INFO *infoPtr, INT iBand, const REBARBANDINFOW *lprbbi, BOOL bUnicode)
2767 {
2768 REBAR_BAND *lpBand;
2769 UINT uChanged;
2770
2771 if (!lprbbi || lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2772 return FALSE;
2773
2774 if (iBand >= infoPtr->uNumBands)
2775 return FALSE;
2776
2777 TRACE("index %d\n", iBand);
2778 REBAR_DumpBandInfo (lprbbi);
2779
2780 /* set band information */
2781 lpBand = REBAR_GetBand(infoPtr, iBand);
2782
2783 uChanged = REBAR_CommonSetupBand (infoPtr->hwndSelf, lprbbi, lpBand);
2784 if (lprbbi->fMask & RBBIM_TEXT) {
2785 LPWSTR wstr = NULL;
2786 if (bUnicode)
2787 Str_SetPtrW(&wstr, lprbbi->lpText);
2788 else
2789 Str_SetPtrAtoW(&wstr, (LPSTR)lprbbi->lpText);
2790
2791 if (REBAR_strdifW(wstr, lpBand->lpText)) {
2792 Free(lpBand->lpText);
2793 lpBand->lpText = wstr;
2794 uChanged |= RBBIM_TEXT;
2795 }
2796 else
2797 Free(wstr);
2798 }
2799
2800 REBAR_ValidateBand (infoPtr, lpBand);
2801
2802 REBAR_DumpBand (infoPtr);
2803
2804 if (uChanged & (RBBIM_CHILDSIZE | RBBIM_SIZE | RBBIM_STYLE | RBBIM_IMAGE)) {
2805 REBAR_Layout(infoPtr);
2806 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
2807 }
2808
2809 return TRUE;
2810 }
2811
2812
2813 static LRESULT
2814 REBAR_SetBarInfo (REBAR_INFO *infoPtr, const REBARINFO *lpInfo)
2815 {
2816 REBAR_BAND *lpBand;
2817 UINT i;
2818
2819 if (!lpInfo || lpInfo->cbSize < sizeof (REBARINFO))
2820 return FALSE;
2821
2822 TRACE("setting bar info!\n");
2823
2824 if (lpInfo->fMask & RBIM_IMAGELIST) {
2825 infoPtr->himl = lpInfo->himl;
2826 if (infoPtr->himl) {
2827 INT cx, cy;
2828 ImageList_GetIconSize (infoPtr->himl, &cx, &cy);
2829 infoPtr->imageSize.cx = cx;
2830 infoPtr->imageSize.cy = cy;
2831 }
2832 else {
2833 infoPtr->imageSize.cx = 0;
2834 infoPtr->imageSize.cy = 0;
2835 }
2836 TRACE("new image cx=%d, cy=%d\n", infoPtr->imageSize.cx,
2837 infoPtr->imageSize.cy);
2838 }
2839
2840 /* revalidate all bands to reset flags for images in headers of bands */
2841 for (i=0; i<infoPtr->uNumBands; i++) {
2842 lpBand = REBAR_GetBand(infoPtr, i);
2843 REBAR_ValidateBand (infoPtr, lpBand);
2844 }
2845
2846 return TRUE;
2847 }
2848
2849
2850 static LRESULT
2851 REBAR_SetBkColor (REBAR_INFO *infoPtr, COLORREF clr)
2852 {
2853 COLORREF clrTemp;
2854
2855 clrTemp = infoPtr->clrBk;
2856 infoPtr->clrBk = clr;
2857
2858 TRACE("background color 0x%06x!\n", infoPtr->clrBk);
2859
2860 return clrTemp;
2861 }
2862
2863
2864 /* << REBAR_SetColorScheme >> */
2865 /* << REBAR_SetPalette >> */
2866
2867
2868 static LRESULT
2869 REBAR_SetParent (REBAR_INFO *infoPtr, HWND parent)
2870 {
2871 HWND hwndTemp = infoPtr->hwndNotify;
2872
2873 infoPtr->hwndNotify = parent;
2874
2875 return (LRESULT)hwndTemp;
2876 }
2877
2878
2879 static LRESULT
2880 REBAR_SetTextColor (REBAR_INFO *infoPtr, COLORREF clr)
2881 {
2882 COLORREF clrTemp;
2883
2884 clrTemp = infoPtr->clrText;
2885 infoPtr->clrText = clr;
2886
2887 TRACE("text color 0x%06x!\n", infoPtr->clrText);
2888
2889 return clrTemp;
2890 }
2891
2892
2893 /* << REBAR_SetTooltips >> */
2894
2895
2896 static inline LRESULT
2897 REBAR_SetUnicodeFormat (REBAR_INFO *infoPtr, BOOL unicode)
2898 {
2899 BOOL bTemp = infoPtr->bUnicode;
2900
2901 TRACE("to %s hwnd=%p, was %s\n",
2902 unicode ? "TRUE" : "FALSE", infoPtr->hwndSelf,
2903 (bTemp) ? "TRUE" : "FALSE");
2904
2905 infoPtr->bUnicode = unicode;
2906
2907 return bTemp;
2908 }
2909
2910
2911 static LRESULT
2912 REBAR_SetVersion (REBAR_INFO *infoPtr, INT iVersion)
2913 {
2914 INT iOldVersion = infoPtr->iVersion;
2915
2916 if (iVersion > COMCTL32_VERSION)
2917 return -1;
2918
2919 infoPtr->iVersion = iVersion;
2920
2921 TRACE("new version %d\n", iVersion);
2922
2923 return iOldVersion;
2924 }
2925
2926
2927 static LRESULT
2928 REBAR_ShowBand (REBAR_INFO *infoPtr, INT iBand, BOOL show)
2929 {
2930 REBAR_BAND *lpBand;
2931
2932 if (iBand < 0 || iBand >= infoPtr->uNumBands)
2933 return FALSE;
2934
2935 lpBand = REBAR_GetBand(infoPtr, iBand);
2936
2937 if (show) {
2938 TRACE("show band %d\n", iBand);
2939 lpBand->fStyle = lpBand->fStyle & ~RBBS_HIDDEN;
2940 if (IsWindow (lpBand->hwndChild))
2941 ShowWindow (lpBand->hwndChild, SW_SHOW);
2942 }
2943 else {
2944 TRACE("hide band %d\n", iBand);
2945 lpBand->fStyle = lpBand->fStyle | RBBS_HIDDEN;
2946 if (IsWindow (lpBand->hwndChild))
2947 ShowWindow (lpBand->hwndChild, SW_HIDE);
2948 }
2949
2950 REBAR_Layout(infoPtr);
2951 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
2952
2953 return TRUE;
2954 }
2955
2956
2957 static LRESULT
2958 REBAR_SizeToRect (REBAR_INFO *infoPtr, WPARAM flags, RECT *lpRect)
2959 {
2960 if (!lpRect) return FALSE;
2961
2962 TRACE("[%s]\n", wine_dbgstr_rect(lpRect));
2963 REBAR_SizeToHeight(infoPtr, get_rect_cy(infoPtr, lpRect));
2964
2965 #ifdef __REACTOS__
2966 /* Note that this undocumented flag is available on comctl32 v6 or later */
2967 if ((flags & RBSTR_CHANGERECT) != 0)
2968 {
2969 RECT rcRebar;
2970 GetClientRect(infoPtr->hwndSelf, &rcRebar);
2971 lpRect->bottom = lpRect->top + (rcRebar.bottom - rcRebar.top);
2972 }
2973 #endif
2974 return TRUE;
2975 }
2976
2977
2978
2979 static LRESULT
2980 REBAR_Create (REBAR_INFO *infoPtr, LPCREATESTRUCTW cs)
2981 {
2982 RECT wnrc1, clrc1;
2983
2984 if (TRACE_ON(rebar)) {
2985 GetWindowRect(infoPtr->hwndSelf, &wnrc1);
2986 GetClientRect(infoPtr->hwndSelf, &clrc1);
2987 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
2988 wine_dbgstr_rect(&wnrc1), wine_dbgstr_rect(&clrc1),
2989 cs->x, cs->y, cs->cx, cs->cy);
2990 }
2991
2992 TRACE("created!\n");
2993
2994 if (OpenThemeData (infoPtr->hwndSelf, themeClass))
2995 {
2996 /* native seems to clear WS_BORDER when themed */
2997 infoPtr->dwStyle &= ~WS_BORDER;
2998 }
2999
3000 return 0;
3001 }
3002
3003
3004 static LRESULT
3005 REBAR_Destroy (REBAR_INFO *infoPtr)
3006 {
3007 REBAR_BAND *lpBand;
3008 UINT i;
3009
3010 /* clean up each band */
3011 for (i = 0; i < infoPtr->uNumBands; i++) {
3012 lpBand = REBAR_GetBand(infoPtr, i);
3013
3014 /* delete text strings */
3015 Free (lpBand->lpText);
3016 lpBand->lpText = NULL;
3017 /* destroy child window */
3018 DestroyWindow (lpBand->hwndChild);
3019 Free (lpBand);
3020 }
3021
3022 /* free band array */
3023 DPA_Destroy (infoPtr->bands);
3024 infoPtr->bands = NULL;
3025
3026 DestroyCursor (infoPtr->hcurArrow);
3027 DestroyCursor (infoPtr->hcurHorz);
3028 DestroyCursor (infoPtr->hcurVert);
3029 DestroyCursor (infoPtr->hcurDrag);
3030 if (infoPtr->hDefaultFont) DeleteObject (infoPtr->hDefaultFont);
3031 SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
3032
3033 CloseThemeData (GetWindowTheme (infoPtr->hwndSelf));
3034
3035 /* free rebar info data */
3036 Free (infoPtr);
3037 TRACE("destroyed!\n");
3038 return 0;
3039 }
3040
3041 static LRESULT
3042 REBAR_GetFont (const REBAR_INFO *infoPtr)
3043 {
3044 return (LRESULT)infoPtr->hFont;
3045 }
3046
3047 static LRESULT
3048 REBAR_PushChevron(const REBAR_INFO *infoPtr, UINT uBand, LPARAM lParam)
3049 {
3050 if (uBand < infoPtr->uNumBands)
3051 {
3052 NMREBARCHEVRON nmrbc;
3053 REBAR_BAND *lpBand = REBAR_GetBand(infoPtr, uBand);
3054
3055 TRACE("Pressed chevron on band %u\n", uBand);
3056
3057 /* redraw chevron in pushed state */
3058 lpBand->fDraw |= DRAW_CHEVRONPUSHED;
3059 RedrawWindow(infoPtr->hwndSelf, &lpBand->rcChevron,0,
3060 RDW_ERASE|RDW_INVALIDATE|RDW_UPDATENOW);
3061
3062 /* notify app so it can display a popup menu or whatever */
3063 nmrbc.uBand = uBand;
3064 nmrbc.wID = lpBand->wID;
3065 nmrbc.lParam = lpBand->lParam;
3066 nmrbc.rc = lpBand->rcChevron;
3067 nmrbc.lParamNM = lParam;
3068 REBAR_Notify((NMHDR*)&nmrbc, infoPtr, RBN_CHEVRONPUSHED);
3069
3070 /* redraw chevron in previous state */
3071 lpBand->fDraw &= ~DRAW_CHEVRONPUSHED;
3072 InvalidateRect(infoPtr->hwndSelf, &lpBand->rcChevron, TRUE);
3073
3074 return TRUE;
3075 }
3076 return FALSE;
3077 }
3078
3079 static LRESULT
3080 REBAR_LButtonDown (REBAR_INFO *infoPtr, LPARAM lParam)
3081 {
3082 UINT htFlags;
3083 INT iHitBand;
3084 POINT ptMouseDown;
3085 ptMouseDown.x = (short)LOWORD(lParam);
3086 ptMouseDown.y = (short)HIWORD(lParam);
3087
3088 REBAR_InternalHitTest(infoPtr, &ptMouseDown, &htFlags, &iHitBand);
3089
3090 if (htFlags == RBHT_CHEVRON)
3091 {
3092 REBAR_PushChevron(infoPtr, iHitBand, 0);
3093 }
3094 else if (htFlags == RBHT_GRABBER || htFlags == RBHT_CAPTION)
3095 {
3096 REBAR_BAND *lpBand;
3097
3098 TRACE("Starting drag\n");
3099
3100 lpBand = REBAR_GetBand(infoPtr, iHitBand);
3101
3102 SetCapture (infoPtr->hwndSelf);
3103 infoPtr->iGrabbedBand = iHitBand;
3104
3105 /* save off the LOWORD and HIWORD of lParam as initial x,y */
3106 infoPtr->dragStart.x = (short)LOWORD(lParam);
3107 infoPtr->dragStart.y = (short)HIWORD(lParam);
3108 infoPtr->dragNow = infoPtr->dragStart;
3109 if (infoPtr->dwStyle & CCS_VERT)
3110 infoPtr->ihitoffset = infoPtr->dragStart.y - (lpBand->rcBand.left + REBAR_PRE_GRIPPER);
3111 else
3112 infoPtr->ihitoffset = infoPtr->dragStart.x - (lpBand->rcBand.left + REBAR_PRE_GRIPPER);
3113 }
3114 return 0;
3115 }
3116
3117 static LRESULT
3118 REBAR_LButtonUp (REBAR_INFO *infoPtr)
3119 {
3120 if (infoPtr->iGrabbedBand >= 0)
3121 {
3122 NMHDR layout;
3123 RECT rect;
3124
3125 infoPtr->dragStart.x = 0;
3126 infoPtr->dragStart.y = 0;
3127 infoPtr->dragNow = infoPtr->dragStart;
3128
3129 ReleaseCapture ();
3130
3131 if (infoPtr->fStatus & BEGIN_DRAG_ISSUED) {
3132 REBAR_Notify(&layout, infoPtr, RBN_LAYOUTCHANGED);
3133 REBAR_Notify_NMREBAR (infoPtr, infoPtr->iGrabbedBand, RBN_ENDDRAG);
3134 infoPtr->fStatus &= ~BEGIN_DRAG_ISSUED;
3135 }
3136
3137 infoPtr->iGrabbedBand = -1;
3138
3139 GetClientRect(infoPtr->hwndSelf, &rect);
3140 InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
3141 }
3142
3143 return 0;
3144 }
3145
3146 static LRESULT
3147 REBAR_MouseLeave (REBAR_INFO *infoPtr)
3148 {
3149 if (infoPtr->ichevronhotBand >= 0)
3150 {
3151 REBAR_BAND *lpChevronBand = REBAR_GetBand(infoPtr, infoPtr->ichevronhotBand);
3152 if (lpChevronBand->fDraw & DRAW_CHEVRONHOT)
3153 {
3154 lpChevronBand->fDraw &= ~DRAW_CHEVRONHOT;
3155 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3156 }
3157 }
3158 infoPtr->iOldBand = -1;
3159 infoPtr->ichevronhotBand = -2;
3160
3161 return TRUE;
3162 }
3163
3164 static LRESULT
3165 REBAR_MouseMove (REBAR_INFO *infoPtr, LPARAM lParam)
3166 {
3167 REBAR_BAND *lpChevronBand;
3168 POINT ptMove;
3169
3170 ptMove.x = (short)LOWORD(lParam);
3171 ptMove.y = (short)HIWORD(lParam);
3172
3173 /* if we are currently dragging a band */
3174 if (infoPtr->iGrabbedBand >= 0)
3175 {
3176 REBAR_BAND *band;
3177 int yPtMove = (infoPtr->dwStyle & CCS_VERT ? ptMove.x : ptMove.y);
3178
3179 if (GetCapture() != infoPtr->hwndSelf)
3180 ERR("We are dragging but haven't got capture?!?\n");
3181
3182 band = REBAR_GetBand(infoPtr, infoPtr->iGrabbedBand);
3183
3184 /* if mouse did not move much, exit */
3185 if ((abs(ptMove.x - infoPtr->dragNow.x) <= mindragx) &&
3186 (abs(ptMove.y - infoPtr->dragNow.y) <= mindragy)) return 0;
3187
3188 /* on first significant mouse movement, issue notify */
3189 if (!(infoPtr->fStatus & BEGIN_DRAG_ISSUED)) {
3190 if (REBAR_Notify_NMREBAR (infoPtr, -1, RBN_BEGINDRAG)) {
3191 /* Notify returned TRUE - abort drag */
3192 infoPtr->dragStart.x = 0;
3193 infoPtr->dragStart.y = 0;
3194 infoPtr->dragNow = infoPtr->dragStart;
3195 infoPtr->iGrabbedBand = -1;
3196 ReleaseCapture ();
3197 return 0;
3198 }
3199 infoPtr->fStatus |= BEGIN_DRAG_ISSUED;
3200 }
3201
3202 /* Test for valid drag case - must not be first band in row */
3203 if ((yPtMove < band->rcBand.top) ||
3204 (yPtMove > band->rcBand.bottom)) {
3205 REBAR_HandleUDDrag (infoPtr, &ptMove);
3206 }
3207 else {
3208 REBAR_HandleLRDrag (infoPtr, &ptMove);
3209 }
3210 }
3211 else
3212 {
3213 INT iHitBand;
3214 UINT htFlags;
3215 TRACKMOUSEEVENT trackinfo;
3216
3217 REBAR_InternalHitTest(infoPtr, &ptMove, &htFlags, &iHitBand);
3218
3219 if (infoPtr->iOldBand >= 0 && infoPtr->iOldBand == infoPtr->ichevronhotBand)
3220 {
3221 lpChevronBand = REBAR_GetBand(infoPtr, infoPtr->ichevronhotBand);
3222 if (lpChevronBand->fDraw & DRAW_CHEVRONHOT)
3223 {
3224 lpChevronBand->fDraw &= ~DRAW_CHEVRONHOT;
3225 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3226 }
3227 infoPtr->ichevronhotBand = -2;
3228 }
3229
3230 if (htFlags == RBHT_CHEVRON)
3231 {
3232 /* fill in the TRACKMOUSEEVENT struct */
3233 trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
3234 trackinfo.dwFlags = TME_QUERY;
3235 trackinfo.hwndTrack = infoPtr->hwndSelf;
3236 trackinfo.dwHoverTime = 0;
3237
3238 /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
3239 _TrackMouseEvent(&trackinfo);
3240
3241 /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
3242 if(!(trackinfo.dwFlags & TME_LEAVE))
3243 {
3244 trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
3245
3246 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
3247 /* and can properly deactivate the hot chevron */
3248 _TrackMouseEvent(&trackinfo);
3249 }
3250
3251 lpChevronBand = REBAR_GetBand(infoPtr, iHitBand);
3252 if (!(lpChevronBand->fDraw & DRAW_CHEVRONHOT))
3253 {
3254 lpChevronBand->fDraw |= DRAW_CHEVRONHOT;
3255 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3256 infoPtr->ichevronhotBand = iHitBand;
3257 }
3258 }
3259 infoPtr->iOldBand = iHitBand;
3260 }
3261
3262 return 0;
3263 }
3264
3265
3266 static inline LRESULT
3267 REBAR_NCCalcSize (const REBAR_INFO *infoPtr, RECT *rect)
3268 {
3269 HTHEME theme;
3270
3271 if (infoPtr->dwStyle & WS_BORDER) {
3272 rect->left = min(rect->left + GetSystemMetrics(SM_CXEDGE), rect->right);
3273 rect->right = max(rect->right - GetSystemMetrics(SM_CXEDGE), rect->left);
3274 rect->top = min(rect->top + GetSystemMetrics(SM_CYEDGE), rect->bottom);
3275 rect->bottom = max(rect->bottom - GetSystemMetrics(SM_CYEDGE), rect->top);
3276 }
3277 else if ((theme = GetWindowTheme (infoPtr->hwndSelf)))
3278 {
3279 /* FIXME: should use GetThemeInt */
3280 #ifdef __REACTOS__
3281 rect->top = (rect->top + 1 < rect->bottom) ? rect->top : rect->bottom;
3282 #else
3283 rect->top = min(rect->top + 1, rect->bottom);
3284 #endif
3285 }
3286 TRACE("new client=(%s)\n", wine_dbgstr_rect(rect));
3287 return 0;
3288 }
3289
3290
3291 static LRESULT
3292 REBAR_NCCreate (HWND hwnd, const CREATESTRUCTW *cs)
3293 {
3294 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
3295 RECT wnrc1, clrc1;
3296 NONCLIENTMETRICSW ncm;
3297 HFONT tfont;
3298
3299 if (infoPtr) {
3300 ERR("Strange info structure pointer *not* NULL\n");
3301 return FALSE;
3302 }
3303
3304 if (TRACE_ON(rebar)) {
3305 GetWindowRect(hwnd, &wnrc1);
3306 GetClientRect(hwnd, &clrc1);
3307 TRACE("window=(%s) client=(%s) cs=(%d,%d %dx%d)\n",
3308 wine_dbgstr_rect(&wnrc1), wine_dbgstr_rect(&clrc1),
3309 cs->x, cs->y, cs->cx, cs->cy);
3310 }
3311
3312 /* allocate memory for info structure */
3313 infoPtr = Alloc (sizeof(REBAR_INFO));
3314 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
3315
3316 /* initialize info structure - initial values are 0 */
3317 infoPtr->clrBk = CLR_NONE;
3318 infoPtr->clrText = CLR_NONE;
3319 infoPtr->clrBtnText = comctl32_color.clrBtnText;
3320 infoPtr->clrBtnFace = comctl32_color.clrBtnFace;
3321 infoPtr->iOldBand = -1;
3322 infoPtr->ichevronhotBand = -2;
3323 infoPtr->iGrabbedBand = -1;
3324 infoPtr->hwndSelf = hwnd;
3325 infoPtr->DoRedraw = TRUE;
3326 infoPtr->hcurArrow = LoadCursorW (0, (LPWSTR)IDC_ARROW);
3327 infoPtr->hcurHorz = LoadCursorW (0, (LPWSTR)IDC_SIZEWE);
3328 infoPtr->hcurVert = LoadCursorW (0, (LPWSTR)IDC_SIZENS);
3329 infoPtr->hcurDrag = LoadCursorW (0, (LPWSTR)IDC_SIZE);
3330 infoPtr->fStatus = 0;
3331 infoPtr->hFont = GetStockObject (SYSTEM_FONT);
3332 infoPtr->bands = DPA_Create(8);
3333
3334 /* issue WM_NOTIFYFORMAT to get unicode status of parent */
3335 REBAR_NotifyFormat(infoPtr, NF_REQUERY);
3336
3337 /* Stow away the original style */
3338 infoPtr->orgStyle = cs->style;
3339 /* add necessary styles to the requested styles */
3340 infoPtr->dwStyle = cs->style | WS_VISIBLE;
3341 if ((infoPtr->dwStyle & CCS_LAYOUT_MASK) == 0)
3342 infoPtr->dwStyle |= CCS_TOP;
3343 SetWindowLongW (hwnd, GWL_STYLE, infoPtr->dwStyle);
3344
3345 /* get font handle for Caption Font */
3346 ncm.cbSize = sizeof(ncm);
3347 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, ncm.cbSize, &ncm, 0);
3348 /* if the font is bold, set to normal */
3349 if (ncm.lfCaptionFont.lfWeight > FW_NORMAL) {
3350 ncm.lfCaptionFont.lfWeight = FW_NORMAL;
3351 }
3352 tfont = CreateFontIndirectW (&ncm.lfCaptionFont);
3353 if (tfont) {
3354 infoPtr->hFont = infoPtr->hDefaultFont = tfont;
3355 }
3356
3357 return TRUE;
3358 }
3359
3360
3361 static LRESULT
3362 REBAR_NCHitTest (const REBAR_INFO *infoPtr, LPARAM lParam)
3363 {
3364 NMMOUSE nmmouse;
3365 POINT clpt;
3366 INT i;
3367 UINT scrap;
3368 LRESULT ret = HTCLIENT;
3369
3370 /*
3371 * Differences from doc at MSDN (as observed with version 4.71 of
3372 * comctl32.dll
3373 * 1. doc says nmmouse.pt is in screen coord, trace shows client coord.
3374 * 2. if band is not identified .dwItemSpec is 0xffffffff.
3375 * 3. native always seems to return HTCLIENT if notify return is 0.
3376 */
3377
3378 clpt.x = (short)LOWORD(lParam);
3379 clpt.y = (short)HIWORD(lParam);
3380 ScreenToClient (infoPtr->hwndSelf, &clpt);
3381 REBAR_InternalHitTest (infoPtr, &clpt, &scrap,
3382 (INT *)&nmmouse.dwItemSpec);
3383 nmmouse.dwItemData = 0;
3384 nmmouse.pt = clpt;
3385 nmmouse.dwHitInfo = 0;
3386 if ((i = REBAR_Notify((NMHDR *) &nmmouse, infoPtr, NM_NCHITTEST))) {
3387 TRACE("notify changed return value from %ld to %d\n",
3388 ret, i);
3389 ret = (LRESULT) i;
3390 }
3391 TRACE("returning %ld, client point (%d,%d)\n", ret, clpt.x, clpt.y);
3392 return ret;
3393 }
3394
3395
3396 static LRESULT
3397 REBAR_NCPaint (const REBAR_INFO *infoPtr)
3398 {
3399 RECT rcWindow;
3400 HDC hdc;
3401 HTHEME theme;
3402
3403 if (infoPtr->dwStyle & WS_MINIMIZE)
3404 return 0; /* Nothing to do */
3405
3406 if (infoPtr->dwStyle & WS_BORDER) {
3407
3408 /* adjust rectangle and draw the necessary edge */
3409 if (!(hdc = GetDCEx( infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW )))
3410 return 0;
3411 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
3412 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
3413 TRACE("rect (%s)\n", wine_dbgstr_rect(&rcWindow));
3414 DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_RECT);
3415 ReleaseDC( infoPtr->hwndSelf, hdc );
3416 }
3417 else if ((theme = GetWindowTheme (infoPtr->hwndSelf)))
3418 {
3419 /* adjust rectangle and draw the necessary edge */
3420 if (!(hdc = GetDCEx( infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW )))
3421 return 0;
3422 GetWindowRect (infoPtr->hwndSelf, &rcWindow);
3423 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
3424 TRACE("rect (%s)\n", wine_dbgstr_rect(&rcWindow));
3425 DrawThemeEdge (theme, hdc, 0, 0, &rcWindow, BDR_RAISEDINNER, BF_TOP, NULL);
3426 ReleaseDC( infoPtr->hwndSelf, hdc );
3427 }
3428
3429 return 0;
3430 }
3431
3432
3433 static LRESULT
3434 REBAR_NotifyFormat (REBAR_INFO *infoPtr, LPARAM cmd)
3435 {
3436 INT i;
3437
3438 if (cmd == NF_REQUERY) {
3439 i = SendMessageW(REBAR_GetNotifyParent (infoPtr),
3440 WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
3441 if ((i != NFR_ANSI) && (i != NFR_UNICODE)) {
3442 ERR("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n", i);
3443 i = NFR_ANSI;
3444 }
3445 infoPtr->bUnicode = (i == NFR_UNICODE);
3446 return (LRESULT)i;
3447 }
3448 return (LRESULT)((infoPtr->bUnicode) ? NFR_UNICODE : NFR_ANSI);
3449 }
3450
3451
3452 static LRESULT
3453 REBAR_Paint (const REBAR_INFO *infoPtr, HDC hdc)
3454 {
3455 if (hdc) {
3456 TRACE("painting\n");
3457 REBAR_Refresh (infoPtr, hdc);
3458 } else {
3459 PAINTSTRUCT ps;
3460 hdc = BeginPaint (infoPtr->hwndSelf, &ps);
3461 TRACE("painting (%s)\n", wine_dbgstr_rect(&ps.rcPaint));
3462 if (ps.fErase) {
3463 /* Erase area of paint if requested */
3464 REBAR_EraseBkGnd (infoPtr, hdc);
3465 }
3466 REBAR_Refresh (infoPtr, hdc);
3467 EndPaint (infoPtr->hwndSelf, &ps);
3468 }
3469
3470 return 0;
3471 }
3472
3473
3474 static LRESULT
3475 REBAR_SetCursor (const REBAR_INFO *infoPtr, LPARAM lParam)
3476 {
3477 POINT pt;
3478 UINT flags;
3479
3480 TRACE("code=0x%X id=0x%X\n", LOWORD(lParam), HIWORD(lParam));
3481
3482 GetCursorPos (&pt);
3483 ScreenToClient (infoPtr->hwndSelf, &pt);
3484
3485 REBAR_InternalHitTest (infoPtr, &pt, &flags, NULL);
3486
3487 if (flags == RBHT_GRABBER) {
3488 if ((infoPtr->dwStyle & CCS_VERT) &&
3489 !(infoPtr->dwStyle & RBS_VERTICALGRIPPER))
3490 SetCursor (infoPtr->hcurVert);
3491 else
3492 SetCursor (infoPtr->hcurHorz);
3493 }
3494 else if (flags != RBHT_CLIENT)
3495 SetCursor (infoPtr->hcurArrow);
3496
3497 return 0;
3498 }
3499
3500
3501 static LRESULT
3502 REBAR_SetFont (REBAR_INFO *infoPtr, HFONT font)
3503 {
3504 REBAR_BAND *lpBand;
3505 UINT i;
3506
3507 infoPtr->hFont = font;
3508
3509 /* revalidate all bands to change sizes of text in headers of bands */
3510 for (i=0; i<infoPtr->uNumBands; i++) {
3511 lpBand = REBAR_GetBand(infoPtr, i);
3512 REBAR_ValidateBand (infoPtr, lpBand);
3513 }
3514
3515 REBAR_Layout(infoPtr);
3516 return 0;
3517 }
3518
3519
3520 /*****************************************************
3521 *
3522 * Handles the WM_SETREDRAW message.
3523 *
3524 * Documentation:
3525 * According to testing V4.71 of COMCTL32 returns the
3526 * *previous* status of the redraw flag (either 0 or -1)
3527 * instead of the MSDN documented value of 0 if handled
3528 *
3529 *****************************************************/
3530 static inline LRESULT
3531 REBAR_SetRedraw (REBAR_INFO *infoPtr, BOOL redraw)
3532 {
3533 BOOL oldredraw = infoPtr->DoRedraw;
3534
3535 TRACE("set to %s, fStatus=%08x\n",
3536 (redraw) ? "TRUE" : "FALSE", infoPtr->fStatus);
3537 infoPtr->DoRedraw = redraw;
3538 if (redraw) {
3539 if (infoPtr->fStatus & BAND_NEEDS_REDRAW) {
3540 REBAR_MoveChildWindows (infoPtr, 0, infoPtr->uNumBands);
3541 REBAR_ForceResize (infoPtr);
3542 InvalidateRect (infoPtr->hwndSelf, NULL, TRUE);
3543 }
3544 infoPtr->fStatus &= ~BAND_NEEDS_REDRAW;
3545 }
3546 return (oldredraw) ? -1 : 0;
3547 }
3548
3549
3550 static LRESULT
3551 REBAR_Size (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3552 {
3553 TRACE("wParam=%lx, lParam=%lx\n", wParam, lParam);
3554
3555 /* avoid _Layout resize recursion (but it shouldn't be infinite and it seems Windows does recurse) */
3556 if (infoPtr->fStatus & SELF_RESIZE) {
3557 infoPtr->fStatus &= ~SELF_RESIZE;
3558 TRACE("SELF_RESIZE was set, reset, fStatus=%08x lparam=%08lx\n",
3559 infoPtr->fStatus, lParam);
3560 return 0;
3561 }
3562
3563 if (infoPtr->dwStyle & RBS_AUTOSIZE)
3564 REBAR_AutoSize(infoPtr, TRUE);
3565 else
3566 REBAR_Layout(infoPtr);
3567
3568 return 0;
3569 }
3570
3571
3572 static LRESULT
3573 REBAR_StyleChanged (REBAR_INFO *infoPtr, INT nType, const STYLESTRUCT *lpStyle)
3574 {
3575 TRACE("current style=%08x, styleOld=%08x, style being set to=%08x\n",
3576 infoPtr->dwStyle, lpStyle->styleOld, lpStyle->styleNew);
3577 if (nType == GWL_STYLE)
3578 {
3579 infoPtr->orgStyle = infoPtr->dwStyle = lpStyle->styleNew;
3580 if (GetWindowTheme (infoPtr->hwndSelf))
3581 infoPtr->dwStyle &= ~WS_BORDER;
3582 /* maybe it should be COMMON_STYLES like in toolbar */
3583 if ((lpStyle->styleNew ^ lpStyle->styleOld) & CCS_VERT)
3584 REBAR_Layout(infoPtr);
3585 }
3586 return FALSE;
3587 }
3588
3589 /* update theme after a WM_THEMECHANGED message */
3590 static LRESULT theme_changed (REBAR_INFO* infoPtr)
3591 {
3592 HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
3593 CloseThemeData (theme);
3594 theme = OpenThemeData (infoPtr->hwndSelf, themeClass);
3595 /* WS_BORDER disappears when theming is enabled and reappears when
3596 * disabled... */
3597 infoPtr->dwStyle &= ~WS_BORDER;
3598 infoPtr->dwStyle |= theme ? 0 : (infoPtr->orgStyle & WS_BORDER);
3599 return 0;
3600 }
3601
3602 static LRESULT
3603 REBAR_WindowPosChanged (const REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3604 {
3605 LRESULT ret;
3606 RECT rc;
3607
3608 ret = DefWindowProcW(infoPtr->hwndSelf, WM_WINDOWPOSCHANGED,
3609 wParam, lParam);
3610 GetWindowRect(infoPtr->hwndSelf, &rc);
3611 TRACE("hwnd %p new pos (%s)\n", infoPtr->hwndSelf, wine_dbgstr_rect(&rc));
3612 return ret;
3613 }
3614
3615
3616 static LRESULT WINAPI
3617 REBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
3618 {
3619 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
3620
3621 TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n",
3622 hwnd, uMsg, wParam, lParam);
3623 if (!infoPtr && (uMsg != WM_NCCREATE))
3624 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
3625 switch (uMsg)
3626 {
3627 /* case RB_BEGINDRAG: */
3628
3629 case RB_DELETEBAND:
3630 return REBAR_DeleteBand (infoPtr, wParam);
3631
3632 /* case RB_DRAGMOVE: */
3633 /* case RB_ENDDRAG: */
3634
3635 case RB_GETBANDBORDERS:
3636 return REBAR_GetBandBorders (infoPtr, wParam, (LPRECT)lParam);
3637
3638 case RB_GETBANDCOUNT:
3639 return REBAR_GetBandCount (infoPtr);
3640
3641 case RB_GETBANDINFO_OLD:
3642 case RB_GETBANDINFOA:
3643 case RB_GETBANDINFOW:
3644 return REBAR_GetBandInfoT(infoPtr, wParam, (LPREBARBANDINFOW)lParam,
3645 uMsg == RB_GETBANDINFOW);
3646 case RB_GETBARHEIGHT:
3647 return REBAR_GetBarHeight (infoPtr);
3648
3649 case RB_GETBARINFO:
3650 return REBAR_GetBarInfo (infoPtr, (LPREBARINFO)lParam);
3651
3652 case RB_GETBKCOLOR:
3653 return REBAR_GetBkColor (infoPtr);
3654
3655 /* case RB_GETCOLORSCHEME: */
3656 /* case RB_GETDROPTARGET: */
3657
3658 case RB_GETPALETTE:
3659 return REBAR_GetPalette (infoPtr);
3660
3661 case RB_GETRECT:
3662 return REBAR_GetRect (infoPtr, wParam, (LPRECT)lParam);
3663
3664 case RB_GETROWCOUNT:
3665 return REBAR_GetRowCount (infoPtr);
3666
3667 case RB_GETROWHEIGHT:
3668 return REBAR_GetRowHeight (infoPtr, wParam);
3669
3670 case RB_GETTEXTCOLOR:
3671 return REBAR_GetTextColor (infoPtr);
3672
3673 case RB_GETTOOLTIPS:
3674 return REBAR_GetToolTips (infoPtr);
3675
3676 case RB_GETUNICODEFORMAT:
3677 return REBAR_GetUnicodeFormat (infoPtr);
3678
3679 case CCM_GETVERSION:
3680 return REBAR_GetVersion (infoPtr);
3681
3682 case RB_HITTEST:
3683 return REBAR_HitTest (infoPtr, (LPRBHITTESTINFO)lParam);
3684
3685 case RB_IDTOINDEX:
3686 return REBAR_IdToIndex (infoPtr, wParam);
3687
3688 case RB_INSERTBANDA:
3689 case RB_INSERTBANDW:
3690 return REBAR_InsertBandT(infoPtr, wParam, (LPREBARBANDINFOW)lParam,
3691 uMsg == RB_INSERTBANDW);
3692 case RB_MAXIMIZEBAND:
3693 return REBAR_MaximizeBand (infoPtr, wParam, lParam);
3694
3695 case RB_MINIMIZEBAND:
3696 return REBAR_MinimizeBand (infoPtr, wParam);
3697
3698 case RB_MOVEBAND:
3699 return REBAR_MoveBand (infoPtr, wParam, lParam);
3700
3701 case RB_PUSHCHEVRON:
3702 return REBAR_PushChevron (infoPtr, wParam, lParam);
3703
3704 case RB_SETBANDINFOA:
3705 case RB_SETBANDINFOW:
3706 return REBAR_SetBandInfoT(infoPtr, wParam, (LPREBARBANDINFOW)lParam,
3707 uMsg == RB_SETBANDINFOW);
3708 case RB_SETBARINFO:
3709 return REBAR_SetBarInfo (infoPtr, (LPREBARINFO)lParam);
3710
3711 case RB_SETBKCOLOR:
3712 return REBAR_SetBkColor (infoPtr, lParam);
3713
3714 /* case RB_SETCOLORSCHEME: */
3715 /* case RB_SETPALETTE: */
3716
3717 case RB_SETPARENT:
3718 return REBAR_SetParent (infoPtr, (HWND)wParam);
3719
3720 case RB_SETTEXTCOLOR:
3721 return REBAR_SetTextColor (infoPtr, lParam);
3722
3723 /* case RB_SETTOOLTIPS: */
3724
3725 case RB_SETUNICODEFORMAT:
3726 return REBAR_SetUnicodeFormat (infoPtr, wParam);
3727
3728 case CCM_SETVERSION:
3729 return REBAR_SetVersion (infoPtr, (INT)wParam);
3730
3731 case RB_SHOWBAND:
3732 return REBAR_ShowBand (infoPtr, wParam, lParam);
3733
3734 case RB_SIZETORECT:
3735 return REBAR_SizeToRect (infoPtr, wParam, (LPRECT)lParam);
3736
3737
3738 /* Messages passed to parent */
3739 case WM_COMMAND:
3740 case WM_DRAWITEM:
3741 case WM_NOTIFY:
3742 case WM_MEASUREITEM:
3743 return SendMessageW(REBAR_GetNotifyParent (infoPtr), uMsg, wParam, lParam);
3744
3745
3746 /* case WM_CHARTOITEM: supported according to ControlSpy */
3747
3748 case WM_CREATE:
3749 return REBAR_Create (infoPtr, (LPCREATESTRUCTW)lParam);
3750
3751 case WM_DESTROY:
3752 return REBAR_Destroy (infoPtr);
3753
3754 case WM_ERASEBKGND:
3755 return REBAR_EraseBkGnd (infoPtr, (HDC)wParam);
3756
3757 case WM_GETFONT:
3758 return REBAR_GetFont (infoPtr);
3759
3760 /* case WM_LBUTTONDBLCLK: supported according to ControlSpy */
3761
3762 case WM_LBUTTONDOWN:
3763 return REBAR_LButtonDown (infoPtr, lParam);
3764
3765 case WM_LBUTTONUP:
3766 return REBAR_LButtonUp (infoPtr);
3767
3768 case WM_MOUSEMOVE:
3769 return REBAR_MouseMove (infoPtr, lParam);
3770
3771 case WM_MOUSELEAVE:
3772 return REBAR_MouseLeave (infoPtr);
3773
3774 case WM_NCCALCSIZE:
3775 return REBAR_NCCalcSize (infoPtr, (RECT*)lParam);
3776
3777 case WM_NCCREATE:
3778 return REBAR_NCCreate (hwnd, (LPCREATESTRUCTW)lParam);
3779
3780 case WM_NCHITTEST:
3781 return REBAR_NCHitTest (infoPtr, lParam);
3782
3783 case WM_NCPAINT:
3784 return REBAR_NCPaint (infoPtr);
3785
3786 case WM_NOTIFYFORMAT:
3787 return REBAR_NotifyFormat (infoPtr, lParam);
3788
3789 case WM_PRINTCLIENT:
3790 case WM_PAINT:
3791 return REBAR_Paint (infoPtr, (HDC)wParam);
3792
3793 /* case WM_PALETTECHANGED: supported according to ControlSpy */
3794 /* case WM_QUERYNEWPALETTE:supported according to ControlSpy */
3795 /* case WM_RBUTTONDOWN: supported according to ControlSpy */
3796 /* case WM_RBUTTONUP: supported according to ControlSpy */
3797
3798 case WM_SETCURSOR:
3799 return REBAR_SetCursor (infoPtr, lParam);
3800
3801 case WM_SETFONT:
3802 return REBAR_SetFont (infoPtr, (HFONT)wParam);
3803
3804 case WM_SETREDRAW:
3805 return REBAR_SetRedraw (infoPtr, wParam);
3806
3807 case WM_SIZE:
3808 return REBAR_Size (infoPtr, wParam, lParam);
3809
3810 case WM_STYLECHANGED:
3811 return REBAR_StyleChanged (infoPtr, wParam, (LPSTYLESTRUCT)lParam);
3812
3813 case WM_THEMECHANGED:
3814 return theme_changed (infoPtr);
3815
3816 case WM_SYSCOLORCHANGE:
3817 COMCTL32_RefreshSysColors();
3818 #ifdef __REACTOS__
3819 /* r51522 - Properly support WM_SYSCOLORCHANGE */
3820 infoPtr->clrBtnText = comctl32_color.clrBtnText;
3821 infoPtr->clrBtnFace = comctl32_color.clrBtnFace;
3822 #endif
3823 return 0;
3824
3825 /* case WM_VKEYTOITEM: supported according to ControlSpy */
3826 /* case WM_WININICHANGE: */
3827
3828 case WM_WINDOWPOSCHANGED:
3829 return REBAR_WindowPosChanged (infoPtr, wParam, lParam);
3830
3831 default:
3832 if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
3833 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
3834 uMsg, wParam, lParam);
3835 return DefWindowProcW (hwnd, uMsg, wParam, lParam);
3836 }
3837 }
3838
3839
3840 VOID
3841 REBAR_Register (void)
3842 {
3843 WNDCLASSW wndClass;
3844
3845 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
3846 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
3847 wndClass.lpfnWndProc = REBAR_WindowProc;
3848 wndClass.cbClsExtra = 0;
3849 wndClass.cbWndExtra = sizeof(REBAR_INFO *);
3850 wndClass.hCursor = 0;
3851 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
3852 #if GLATESTING
3853 wndClass.hbrBackground = CreateSolidBrush(RGB(0,128,0));
3854 #endif
3855 wndClass.lpszClassName = REBARCLASSNAMEW;
3856
3857 RegisterClassW (&wndClass);
3858
3859 mindragx = GetSystemMetrics (SM_CXDRAG);
3860 mindragy = GetSystemMetrics (SM_CYDRAG);
3861
3862 }
3863
3864
3865 VOID
3866 REBAR_Unregister (void)
3867 {
3868 UnregisterClassW (REBARCLASSNAMEW, NULL);
3869 }