Forgot to limit capture sample rates.
[wine] / dlls / comctl32 / rebar.c
1 /*
2  * Testing: set to 1 to make background brush *always* green
3  */
4 #define GLATESTING 0
5
6 /*
7  *
8  * 2.  At "FIXME:  problem # 2" WinRAR:
9  *   if "#if 1" then last band draws in separate row
10  *   if "#if 0" then last band draws in previous row *** just like native ***
11  *
12  */
13 #define PROBLEM2 0
14
15 /*
16  * 3. REBAR_MoveChildWindows should have a loop because more than
17  *    one pass is made (together with the RBN_CHILDSIZEs) is made on
18  *    at least RB_INSERTBAND
19  */
20
21
22 /*
23  * Rebar control    rev 8e
24  *
25  * Copyright 1998, 1999 Eric Kohl
26  *
27  * This library is free software; you can redistribute it and/or
28  * modify it under the terms of the GNU Lesser General Public
29  * License as published by the Free Software Foundation; either
30  * version 2.1 of the License, or (at your option) any later version.
31  *
32  * This library is distributed in the hope that it will be useful,
33  * but WITHOUT ANY WARRANTY; without even the implied warranty of
34  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
35  * Lesser General Public License for more details.
36  *
37  * You should have received a copy of the GNU Lesser General Public
38  * License along with this library; if not, write to the Free Software
39  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
40  *
41  * NOTES
42  *   An author is needed! Any volunteers?
43  *   I will only improve this control once in a while.
44  *     Eric <ekohl@abo.rhein-zeitung.de>
45  *
46  * TODO:
47  *   - vertical placement
48  *   - ComboBox and ComboBoxEx placement
49  *   - center image
50  *   - Layout code.
51  *   - Display code.
52  *   - Some messages.
53  *   - All notifications.
54
55  * Changes Guy Albertelli <galberte@neo.lrun.com>
56  *  rev 2,3,4
57  *   - Implement initial version of row grouping, row separators,
58  *     text and background colors. Support additional messages.
59  *     Support RBBS_BREAK. Implement ERASEBKGND and improve painting.
60  *  rev 5
61  *   - implement support for dragging Gripper left or right in a row. Supports
62  *     WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE. Also support
63  *     RBS_BANDBORDERS.
64  *  rev 6
65  *   - Fix or implement notifications for RBN_HEIGHTCHANGE, RBN_CHILDSIZE.
66  *   - Correct styles RBBS_NOGRIPPER, RBBS_GRIPPERALWAYS, and RBBS_FIXEDSIZE.
67  *   - Fix algorithm for Layout and AdjustBand.
68  *
69  * rev 7
70  *   - Fix algorithm for _Layout and _AdjustBand.
71  *   - Fix or implement RBN_ENDDRAG, RB_MOVEBAND, WM_SETREDRAW,
72  *     WM_STYLECHANGED, RB_MINIMIZEBAND, RBBS_VARIABLEHEIGHT, RBS_VARHEIGHT,
73  *     RBBS_HIDDEN, WM_NOTIFYFORMAT, NM_NCHITTEST, WM_SETREDRAW, RBS_AUTOSIZE,
74  *     WM_SETFONT, RBS_BORDERS
75  *   - Create structures in WM_NCCREATE
76  *   - Additional performance enhancements.
77  *
78  * rev 8
79  *  1. Create array of start and end band indexes by row and use.
80  *  2. Fix problem with REBAR_Layout Phase 2b to process only if only
81  *     band in row.
82  *  3. Set the Caption Font (Regular) as default font for text.
83  *  4. Delete font handle on control distruction.
84  *  5. Add UpdateWindow call in _MoveChildWindows to match repainting done
85  *     by native control
86  *  6. Improve some traces.
87  *  7. Invalidate window rectangles after SetBandInfo, InsertBand, ShowBand
88  *     so that repainting is correct.
89  *  8. Implement RB_MAXIMIZEBAND for the "ideal=TRUE" case.
90  *  9. Implement item custom draw notifications partially. Only done for
91  *     ITEMPREPAINT and ITEMPOSTPAINT. (Used by IE4 for "Favorites" frame
92  *     to draw the word "Favorites").
93  * rev 8a
94  * 10. Handle CCS_NODIVIDER and fix WS_BORDER code.
95  * 11. Fix logic error in _AdjustBands where flag was set to valid band
96  *     number (0) to indicate *no* band.
97  * 12. Fix CCS_VERT errors in _ForceResize, _NCCalcSize, and _NCPaint.
98  * 13. Support some special cases of CCS_TOP (and therefore CCS_LEFT),
99  *     CCS_BOTTOM (and therefore CCS_RIGHT) and CCS_NOPARENTALIGN. Not
100  *     at all sure whether this is all cases.
101  * 14. Handle returned value for the RBN_CHILDSIZE notify.
102  * 15. Implement RBBS_CHILDEDGE, and set each bands "offChild" at _Layout
103  *     time.
104  * 16. Fix REBARSPACE. It should depend on CCS_NODIVIDER.
105  * rev 8b
106  * 17. Fix determination of whether Gripper is needed in _ValidateBand.
107  * 18. Fix _AdjustBand processing of RBBS_FIXEDSIZE.
108  * rev 8c
109  * 19. Fix problem in _Layout when all lengths are 0.
110  * 20. If CLR_NONE specified, we will use default BtnFace color when drawing.
111  * 21. Fix test in REBAR_Layout.
112  * rev 8d
113  * 22. Add support for WM_WINDOWPOSCHANGED to save new origin of window.
114  * 23. Correct RBN_CHILDSIZE rect value for CCS_VERT rebar.
115  * 24. Do UpdateWindow only if doing redraws.
116  * rev 8e
117  * 25. Adjust setting of offChild.cx based on RBBS_CHILDEDGE.
118  *
119  *
120  *    Still to do:
121  *  2. Following still not handled: RBBS_FIXEDBMP,
122  *            CCS_NORESIZE,
123  *            CCS_NOMOVEX, CCS_NOMOVEY
124  *  3. Following are only partially handled:
125  *            RBS_AUTOSIZE, RBBS_VARIABLEHEIGHT
126  *  5. Native uses (on each draw!!) SM_CYBORDER (or SM_CXBORDER for CCS_VERT)
127  *     to set the size of the separator width (the value SEP_WIDTH_SIZE
128  *     in here). Should be fixed!!
129  *  6. The following messages are not implemented:
130  *        RB_BEGINDRAG, RB_DRAGMOVE, RB_ENDDRAG, RB_GETCOLORSCHEME,
131  *        RB_GETDROPTARGET, RB_MAXIMIZEBAND,
132  *        RB_SETCOLORSCHEME, RB_SETPALETTE, RB_SETTOOLTIPS
133  *        WM_CHARTOITEM, WM_LBUTTONDBLCLK, WM_MEASUREITEM,
134  *        WM_PALETTECHANGED, WM_PRINTCLIENT, WM_QUERYNEWPALETTE,
135  *        WM_RBUTTONDOWN, WM_RBUTTONUP,
136  *        WM_SYSCOLORCHANGE, WM_VKEYTOITEM, WM_WININICHANGE
137  *  7. The following notifications are not implemented:
138  *        NM_CUSTOMDRAW, NM_RELEASEDCAPTURE
139  *        RBN_MINMAX
140  */
141
142 #include <stdarg.h>
143 #include <stdlib.h>
144 #include <string.h>
145
146 #include "windef.h"
147 #include "winbase.h"
148 #include "wingdi.h"
149 #include "wine/unicode.h"
150 #include "winuser.h"
151 #include "winnls.h"
152 #include "commctrl.h"
153 #include "comctl32.h"
154 #include "wine/debug.h"
155
156 WINE_DEFAULT_DEBUG_CHANNEL(rebar);
157
158 typedef struct
159 {
160     UINT    fStyle;
161     UINT    fMask;
162     COLORREF  clrFore;
163     COLORREF  clrBack;
164     INT     iImage;
165     HWND    hwndChild;
166     UINT    cxMinChild;     /* valid if _CHILDSIZE */
167     UINT    cyMinChild;     /* valid if _CHILDSIZE */
168     UINT    cx;             /* valid if _SIZE */
169     HBITMAP hbmBack;
170     UINT    wID;
171     UINT    cyChild;        /* valid if _CHILDSIZE */
172     UINT    cyMaxChild;     /* valid if _CHILDSIZE */
173     UINT    cyIntegral;     /* valid if _CHILDSIZE */
174     UINT    cxIdeal;
175     LPARAM    lParam;
176     UINT    cxHeader;
177
178     UINT    lcx;            /* minimum cx for band */
179     UINT    ccx;            /* current cx for band */
180     UINT    hcx;            /* maximum cx for band */
181     UINT    lcy;            /* minimum cy for band */
182     UINT    ccy;            /* current cy for band */
183     UINT    hcy;            /* maximum cy for band */
184
185     SIZE    offChild;       /* x,y offset if child is not FIXEDSIZE */
186     UINT    uMinHeight;
187     INT     iRow;           /* row this band assigned to */
188     UINT    fStatus;        /* status flags, reset only by _Validate */
189     UINT    fDraw;          /* drawing flags, reset only by _Layout */
190     UINT    uCDret;         /* last return from NM_CUSTOMDRAW */
191     RECT    rcoldBand;      /* previous calculated band rectangle */
192     RECT    rcBand;         /* calculated band rectangle */
193     RECT    rcGripper;      /* calculated gripper rectangle */
194     RECT    rcCapImage;     /* calculated caption image rectangle */
195     RECT    rcCapText;      /* calculated caption text rectangle */
196     RECT    rcChild;        /* calculated child rectangle */
197     RECT    rcChevron;      /* calculated chevron rectangle */
198
199     LPWSTR    lpText;
200     HWND    hwndPrevParent;
201 } REBAR_BAND;
202
203 /* fStatus flags */
204 #define HAS_GRIPPER    0x00000001
205 #define HAS_IMAGE      0x00000002
206 #define HAS_TEXT       0x00000004
207
208 /* fDraw flags */
209 #define DRAW_GRIPPER    0x00000001
210 #define DRAW_IMAGE      0x00000002
211 #define DRAW_TEXT       0x00000004
212 #define DRAW_RIGHTSEP   0x00000010
213 #define DRAW_BOTTOMSEP  0x00000020
214 #define DRAW_CHEVRONHOT 0x00000040
215 #define DRAW_CHEVRONPUSHED 0x00000080
216 #define DRAW_LAST_IN_ROW   0x00000100
217 #define DRAW_FIRST_IN_ROW  0x00000200
218 #define NTF_INVALIDATE  0x01000000
219
220 typedef struct
221 {
222     COLORREF   clrBk;       /* background color */
223     COLORREF   clrText;     /* text color */
224     COLORREF   clrBtnText;  /* system color for BTNTEXT */
225     COLORREF   clrBtnFace;  /* system color for BTNFACE */
226     HIMAGELIST himl;        /* handle to imagelist */
227     UINT     uNumBands;   /* # of bands in rebar (first=0, last=uNumBands-1 */
228     UINT     uNumRows;    /* # of rows of bands (first=1, last=uNumRows */
229     HWND     hwndSelf;    /* handle of REBAR window itself */
230     HWND     hwndToolTip; /* handle to the tool tip control */
231     HWND     hwndNotify;  /* notification window (parent) */
232     HFONT    hDefaultFont;
233     HFONT    hFont;       /* handle to the rebar's font */
234     SIZE     imageSize;   /* image size (image list) */
235     DWORD    dwStyle;     /* window style */
236     SIZE     calcSize;    /* calculated rebar size */
237     SIZE     oldSize;     /* previous calculated rebar size */
238     BOOL     bUnicode;    /* TRUE if this window is W type */
239     BOOL     NtfUnicode;  /* TRUE if parent wants notify in W format */
240     BOOL     DoRedraw;    /* TRUE to acutally draw bands */
241     UINT     fStatus;     /* Status flags (see below)  */
242     HCURSOR  hcurArrow;   /* handle to the arrow cursor */
243     HCURSOR  hcurHorz;    /* handle to the EW cursor */
244     HCURSOR  hcurVert;    /* handle to the NS cursor */
245     HCURSOR  hcurDrag;    /* handle to the drag cursor */
246     INT      iVersion;    /* version number */
247     POINTS   dragStart;   /* x,y of button down */
248     POINTS   dragNow;     /* x,y of this MouseMove */
249     INT      iOldBand;    /* last band that had the mouse cursor over it */
250     INT      ihitoffset;  /* offset of hotspot from gripper.left */
251     POINT    origin;      /* left/upper corner of client */
252     INT      ichevronhotBand; /* last band that had a hot chevron */
253     INT      iGrabbedBand;/* band number of band whose gripper was grabbed */
254
255     REBAR_BAND *bands;      /* pointer to the array of rebar bands */
256 } REBAR_INFO;
257
258 /* fStatus flags */
259 #define BEGIN_DRAG_ISSUED   0x00000001
260 #define AUTO_RESIZE         0x00000002
261 #define RESIZE_ANYHOW       0x00000004
262 #define NTF_HGHTCHG         0x00000008
263 #define BAND_NEEDS_LAYOUT   0x00000010
264 #define BAND_NEEDS_REDRAW   0x00000020
265 #define CREATE_RUNNING      0x00000040
266
267 /* ----   REBAR layout constants. Mostly determined by        ---- */
268 /* ----   experiment on WIN 98.                               ---- */
269
270 /* Width (or height) of separators between bands (either horz. or  */
271 /* vert.). True only if RBS_BANDBORDERS is set                     */
272 #define SEP_WIDTH_SIZE  2
273 #define SEP_WIDTH       ((infoPtr->dwStyle & RBS_BANDBORDERS) ? SEP_WIDTH_SIZE : 0)
274
275 /* Blank (background color) space between Gripper (if present)     */
276 /* and next item (image, text, or window). Always present          */
277 #define REBAR_ALWAYS_SPACE  4
278
279 /* Blank (background color) space after Image (if present).        */
280 #define REBAR_POST_IMAGE  2
281
282 /* Blank (background color) space after Text (if present).         */
283 #define REBAR_POST_TEXT  4
284
285 /* Height of vertical gripper in a CCS_VERT rebar.                 */
286 #define GRIPPER_HEIGHT  16
287
288 /* Blank (background color) space before Gripper (if present).     */
289 #define REBAR_PRE_GRIPPER   2
290
291 /* Width (of normal vertical gripper) or height (of horz. gripper) */
292 /* if present.                                                     */
293 #define GRIPPER_WIDTH  3
294
295 /* Width of the chevron button if present */
296 #define CHEVRON_WIDTH  10
297
298 /* Height of divider for Rebar if not disabled (CCS_NODIVIDER)     */
299 /* either top or bottom                                            */
300 #define REBAR_DIVIDER  2
301
302 /* minimium vertical height of a normal bar                        */
303 /*   or minimum width of a CCS_VERT bar - from experiment on Win2k */
304 #define REBAR_MINSIZE  23
305
306 /* This is the increment that is used over the band height         */
307 #define REBARSPACE(a)     ((a->fStyle & RBBS_CHILDEDGE) ? 2*REBAR_DIVIDER : 0)
308
309 /* ----   End of REBAR layout constants.                      ---- */
310
311 #define RB_GETBANDINFO_OLD (WM_USER+5) /* obsoleted after IE3, but we have to support it anyway */
312
313 /*  The following 6 defines return the proper rcBand element       */
314 /*  depending on whether CCS_VERT was set.                         */
315 #define rcBlt(b) ((infoPtr->dwStyle & CCS_VERT) ? b->rcBand.top : b->rcBand.left)
316 #define rcBrb(b) ((infoPtr->dwStyle & CCS_VERT) ? b->rcBand.bottom : b->rcBand.right)
317 #define rcBw(b)  ((infoPtr->dwStyle & CCS_VERT) ? (b->rcBand.bottom - b->rcBand.top) : \
318                   (b->rcBand.right - b->rcBand.left))
319 #define ircBlt(b) ((infoPtr->dwStyle & CCS_VERT) ? b->rcBand.left : b->rcBand.top)
320 #define ircBrb(b) ((infoPtr->dwStyle & CCS_VERT) ? b->rcBand.right : b->rcBand.bottom)
321 #define ircBw(b)  ((infoPtr->dwStyle & CCS_VERT) ? (b->rcBand.right - b->rcBand.left) : \
322                   (b->rcBand.bottom - b->rcBand.top))
323
324 /*  The following define determines if a given band is hidden      */
325 #define HIDDENBAND(a)  (((a)->fStyle & RBBS_HIDDEN) ||   \
326                         ((infoPtr->dwStyle & CCS_VERT) &&         \
327                          ((a)->fStyle & RBBS_NOVERT)))
328
329 /*  The following defines adjust the right or left end of a rectangle */
330 #define READJ(b,i) do { if(infoPtr->dwStyle & CCS_VERT) b->rcBand.bottom+=(i); \
331                     else b->rcBand.right += (i); } while(0)
332 #define LEADJ(b,i) do { if(infoPtr->dwStyle & CCS_VERT) b->rcBand.top+=(i); \
333                     else b->rcBand.left += (i); } while(0)
334
335
336 #define REBAR_GetInfoPtr(wndPtr) ((REBAR_INFO *)GetWindowLongA (hwnd, 0))
337
338
339 /* "constant values" retrieved when DLL was initialized    */
340 /* FIXME we do this when the classes are registered.       */
341 static UINT mindragx = 0;
342 static UINT mindragy = 0;
343
344 static const char *band_stylename[] = {
345     "RBBS_BREAK",              /* 0001 */
346     "RBBS_FIXEDSIZE",          /* 0002 */
347     "RBBS_CHILDEDGE",          /* 0004 */
348     "RBBS_HIDDEN",             /* 0008 */
349     "RBBS_NOVERT",             /* 0010 */
350     "RBBS_FIXEDBMP",           /* 0020 */
351     "RBBS_VARIABLEHEIGHT",     /* 0040 */
352     "RBBS_GRIPPERALWAYS",      /* 0080 */
353     "RBBS_NOGRIPPER",          /* 0100 */
354     NULL };
355
356 static const char *band_maskname[] = {
357     "RBBIM_STYLE",         /*    0x00000001 */
358     "RBBIM_COLORS",        /*    0x00000002 */
359     "RBBIM_TEXT",          /*    0x00000004 */
360     "RBBIM_IMAGE",         /*    0x00000008 */
361     "RBBIM_CHILD",         /*    0x00000010 */
362     "RBBIM_CHILDSIZE",     /*    0x00000020 */
363     "RBBIM_SIZE",          /*    0x00000040 */
364     "RBBIM_BACKGROUND",    /*    0x00000080 */
365     "RBBIM_ID",            /*    0x00000100 */
366     "RBBIM_IDEALSIZE",     /*    0x00000200 */
367     "RBBIM_LPARAM",        /*    0x00000400 */
368     "RBBIM_HEADERSIZE",    /*    0x00000800 */
369     NULL };
370
371
372 static CHAR line[200];
373
374
375 static CHAR *
376 REBAR_FmtStyle( UINT style)
377 {
378     INT i = 0;
379
380     *line = 0;
381     while (band_stylename[i]) {
382         if (style & (1<<i)) {
383             if (*line != 0) strcat(line, " | ");
384             strcat(line, band_stylename[i]);
385         }
386         i++;
387     }
388     return line;
389 }
390
391
392 static CHAR *
393 REBAR_FmtMask( UINT mask)
394 {
395     INT i = 0;
396
397     *line = 0;
398     while (band_maskname[i]) {
399         if (mask & (1<<i)) {
400             if (*line != 0) strcat(line, " | ");
401             strcat(line, band_maskname[i]);
402         }
403         i++;
404     }
405     return line;
406 }
407
408
409 static VOID
410 REBAR_DumpBandInfo( LPREBARBANDINFOA pB)
411 {
412     if( !TRACE_ON(rebar) ) return;
413     TRACE("band info: ID=%u, size=%u, child=%p, clrF=0x%06lx, clrB=0x%06lx\n",
414           pB->wID, pB->cbSize, pB->hwndChild, pB->clrFore, pB->clrBack);
415     TRACE("band info: mask=0x%08x (%s)\n", pB->fMask, REBAR_FmtMask(pB->fMask));
416     if (pB->fMask & RBBIM_STYLE)
417         TRACE("band info: style=0x%08x (%s)\n", pB->fStyle, REBAR_FmtStyle(pB->fStyle));
418     if (pB->fMask & (RBBIM_SIZE | RBBIM_IDEALSIZE | RBBIM_HEADERSIZE | RBBIM_LPARAM )) {
419         TRACE("band info:");
420         if (pB->fMask & RBBIM_SIZE)
421             TRACE(" cx=%u", pB->cx);
422         if (pB->fMask & RBBIM_IDEALSIZE)
423             TRACE(" xIdeal=%u", pB->cxIdeal);
424         if (pB->fMask & RBBIM_HEADERSIZE)
425             TRACE(" xHeader=%u", pB->cxHeader);
426         if (pB->fMask & RBBIM_LPARAM)
427             TRACE(" lParam=0x%08lx", pB->lParam);
428         TRACE("\n");
429     }
430     if (pB->fMask & RBBIM_CHILDSIZE)
431         TRACE("band info: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
432               pB->cxMinChild,
433               pB->cyMinChild, pB->cyChild, pB->cyMaxChild, pB->cyIntegral);
434 }
435
436 static VOID
437 REBAR_DumpBand (REBAR_INFO *iP)
438 {
439     REBAR_BAND *pB;
440     UINT i;
441
442     if(! TRACE_ON(rebar) ) return;
443
444     TRACE("hwnd=%p: color=%08lx/%08lx, bands=%u, rows=%u, cSize=%ld,%ld\n",
445           iP->hwndSelf, iP->clrText, iP->clrBk, iP->uNumBands, iP->uNumRows,
446           iP->calcSize.cx, iP->calcSize.cy);
447     TRACE("hwnd=%p: flags=%08x, dragStart=%d,%d, dragNow=%d,%d, iGrabbedBand=%d\n",
448           iP->hwndSelf, iP->fStatus, iP->dragStart.x, iP->dragStart.y,
449           iP->dragNow.x, iP->dragNow.y,
450           iP->iGrabbedBand);
451     TRACE("hwnd=%p: style=%08lx, I'm Unicode=%s, notify in Unicode=%s, redraw=%s\n",
452           iP->hwndSelf, iP->dwStyle, (iP->bUnicode)?"TRUE":"FALSE",
453           (iP->NtfUnicode)?"TRUE":"FALSE", (iP->DoRedraw)?"TRUE":"FALSE");
454     for (i = 0; i < iP->uNumBands; i++) {
455         pB = &iP->bands[i];
456         TRACE("band # %u: ID=%u, child=%p, row=%u, clrF=0x%06lx, clrB=0x%06lx\n",
457               i, pB->wID, pB->hwndChild, pB->iRow, pB->clrFore, pB->clrBack);
458         TRACE("band # %u: mask=0x%08x (%s)\n", i, pB->fMask, REBAR_FmtMask(pB->fMask));
459         if (pB->fMask & RBBIM_STYLE)
460             TRACE("band # %u: style=0x%08x (%s)\n",
461                   i, pB->fStyle, REBAR_FmtStyle(pB->fStyle));
462         TRACE("band # %u: uMinH=%u xHeader=%u",
463               i, pB->uMinHeight, pB->cxHeader);
464         if (pB->fMask & (RBBIM_SIZE | RBBIM_IDEALSIZE | RBBIM_LPARAM )) {
465             if (pB->fMask & RBBIM_SIZE)
466                 TRACE(" cx=%u", pB->cx);
467             if (pB->fMask & RBBIM_IDEALSIZE)
468                 TRACE(" xIdeal=%u", pB->cxIdeal);
469             if (pB->fMask & RBBIM_LPARAM)
470                 TRACE(" lParam=0x%08lx", pB->lParam);
471         }
472         TRACE("\n");
473         if (RBBIM_CHILDSIZE)
474             TRACE("band # %u: xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
475                   i, pB->cxMinChild, pB->cyMinChild, pB->cyChild, pB->cyMaxChild, pB->cyIntegral);
476         if (pB->fMask & RBBIM_TEXT)
477             TRACE("band # %u: text=%s\n",
478                   i, (pB->lpText) ? debugstr_w(pB->lpText) : "(null)");
479         TRACE("band # %u: lcx=%u, ccx=%u, hcx=%u, lcy=%u, ccy=%u, hcy=%u, offChild=%ld,%ld\n",
480               i, pB->lcx, pB->ccx, pB->hcx, pB->lcy, pB->ccy, pB->hcy, pB->offChild.cx, pB->offChild.cy);
481         TRACE("band # %u: fStatus=%08x, fDraw=%08x, Band=(%ld,%ld)-(%ld,%ld), Grip=(%ld,%ld)-(%ld,%ld)\n",
482               i, pB->fStatus, pB->fDraw,
483               pB->rcBand.left, pB->rcBand.top, pB->rcBand.right, pB->rcBand.bottom,
484               pB->rcGripper.left, pB->rcGripper.top, pB->rcGripper.right, pB->rcGripper.bottom);
485         TRACE("band # %u: Img=(%ld,%ld)-(%ld,%ld), Txt=(%ld,%ld)-(%ld,%ld), Child=(%ld,%ld)-(%ld,%ld)\n",
486               i,
487               pB->rcCapImage.left, pB->rcCapImage.top, pB->rcCapImage.right, pB->rcCapImage.bottom,
488               pB->rcCapText.left, pB->rcCapText.top, pB->rcCapText.right, pB->rcCapText.bottom,
489               pB->rcChild.left, pB->rcChild.top, pB->rcChild.right, pB->rcChild.bottom);
490     }
491
492 }
493
494 static void
495 REBAR_DrawChevron (HDC hdc, INT left, INT top, INT colorRef)
496 {
497     INT x, y;
498     HPEN hPen, hOldPen;
499
500     if (!(hPen = CreatePen( PS_SOLID, 1, GetSysColor( colorRef )))) return;
501     hOldPen = SelectObject ( hdc, hPen );
502     x = left + 2;
503     y = top;
504     MoveToEx (hdc, x, y, NULL);
505     LineTo (hdc, x+5, y++); x++;
506     MoveToEx (hdc, x, y, NULL);
507     LineTo (hdc, x+3, y++); x++;
508     MoveToEx (hdc, x, y, NULL);
509     LineTo (hdc, x+1, y++);
510     SelectObject( hdc, hOldPen );
511     DeleteObject( hPen );
512 }
513
514 static HWND
515 REBAR_GetNotifyParent (REBAR_INFO *infoPtr)
516 {
517     HWND parent, owner;
518
519     parent = infoPtr->hwndNotify;
520     if (!parent) {
521         parent = GetParent (infoPtr->hwndSelf);
522         owner = GetWindow (infoPtr->hwndSelf, GW_OWNER);
523         if (owner) parent = owner;
524     }
525     return parent;
526 }
527
528
529 static INT
530 REBAR_Notify (NMHDR *nmhdr, REBAR_INFO *infoPtr, UINT code)
531 {
532     HWND parent;
533
534     parent = REBAR_GetNotifyParent (infoPtr);
535     nmhdr->idFrom = GetDlgCtrlID (infoPtr->hwndSelf);
536     nmhdr->hwndFrom = infoPtr->hwndSelf;
537     nmhdr->code = code;
538
539     TRACE("window %p, code=%08x, %s\n", parent, code,
540           (infoPtr->NtfUnicode) ? "via Unicode" : "via ANSI");
541
542     if (infoPtr->NtfUnicode)
543         return SendMessageW (parent, WM_NOTIFY, (WPARAM) nmhdr->idFrom,
544                              (LPARAM)nmhdr);
545     else
546         return SendMessageA (parent, WM_NOTIFY, (WPARAM) nmhdr->idFrom,
547                              (LPARAM)nmhdr);
548 }
549
550 static INT
551 REBAR_Notify_NMREBAR (REBAR_INFO *infoPtr, UINT uBand, UINT code)
552 {
553     NMREBAR notify_rebar;
554     REBAR_BAND *lpBand;
555
556     notify_rebar.dwMask = 0;
557     if (uBand!=-1) {
558         lpBand = &infoPtr->bands[uBand];
559         if (lpBand->fMask & RBBIM_ID) {
560             notify_rebar.dwMask |= RBNM_ID;
561             notify_rebar.wID = lpBand->wID;
562         }
563         if (lpBand->fMask & RBBIM_LPARAM) {
564             notify_rebar.dwMask |= RBNM_LPARAM;
565             notify_rebar.lParam = lpBand->lParam;
566         }
567         if (lpBand->fMask & RBBIM_STYLE) {
568             notify_rebar.dwMask |= RBNM_STYLE;
569             notify_rebar.fStyle = lpBand->fStyle;
570         }
571     }
572     notify_rebar.uBand = uBand;
573     return REBAR_Notify ((NMHDR *)&notify_rebar, infoPtr, code);
574 }
575
576 static VOID
577 REBAR_DrawBand (HDC hdc, REBAR_INFO *infoPtr, REBAR_BAND *lpBand)
578 {
579     HFONT hOldFont = 0;
580     INT oldBkMode = 0;
581     NMCUSTOMDRAW nmcd;
582
583     if (lpBand->fDraw & DRAW_TEXT) {
584         hOldFont = SelectObject (hdc, infoPtr->hFont);
585         oldBkMode = SetBkMode (hdc, TRANSPARENT);
586     }
587
588     /* should test for CDRF_NOTIFYITEMDRAW here */
589     nmcd.dwDrawStage = CDDS_ITEMPREPAINT;
590     nmcd.hdc = hdc;
591     nmcd.rc = lpBand->rcBand;
592     nmcd.rc.right = lpBand->rcCapText.right;
593     nmcd.rc.bottom = lpBand->rcCapText.bottom;
594     nmcd.dwItemSpec = lpBand->wID;
595     nmcd.uItemState = 0;
596     nmcd.lItemlParam = lpBand->lParam;
597     lpBand->uCDret = REBAR_Notify ((NMHDR *)&nmcd, infoPtr, NM_CUSTOMDRAW);
598     if (lpBand->uCDret == CDRF_SKIPDEFAULT) {
599         if (oldBkMode != TRANSPARENT)
600             SetBkMode (hdc, oldBkMode);
601         SelectObject (hdc, hOldFont);
602         return;
603     }
604
605     /* draw gripper */
606     if (lpBand->fDraw & DRAW_GRIPPER)
607         DrawEdge (hdc, &lpBand->rcGripper, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
608
609     /* draw caption image */
610     if (lpBand->fDraw & DRAW_IMAGE) {
611         POINT pt;
612
613         /* center image */
614         pt.y = (lpBand->rcCapImage.bottom + lpBand->rcCapImage.top - infoPtr->imageSize.cy)/2;
615         pt.x = (lpBand->rcCapImage.right + lpBand->rcCapImage.left - infoPtr->imageSize.cx)/2;
616
617         ImageList_Draw (infoPtr->himl, lpBand->iImage, hdc,
618                         pt.x, pt.y,
619                         ILD_TRANSPARENT);
620     }
621
622     /* draw caption text */
623     if (lpBand->fDraw & DRAW_TEXT) {
624         /* need to handle CDRF_NEWFONT here */
625         INT oldBkMode = SetBkMode (hdc, TRANSPARENT);
626         COLORREF oldcolor = CLR_NONE;
627         COLORREF new;
628         if (lpBand->clrFore != CLR_NONE) {
629             new = (lpBand->clrFore == CLR_DEFAULT) ? infoPtr->clrBtnText :
630                     lpBand->clrFore;
631             oldcolor = SetTextColor (hdc, new);
632         }
633         DrawTextW (hdc, lpBand->lpText, -1, &lpBand->rcCapText,
634                    DT_CENTER | DT_VCENTER | DT_SINGLELINE);
635         if (oldBkMode != TRANSPARENT)
636             SetBkMode (hdc, oldBkMode);
637         if (lpBand->clrFore != CLR_NONE)
638             SetTextColor (hdc, oldcolor);
639         SelectObject (hdc, hOldFont);
640     }
641
642     if (!IsRectEmpty(&lpBand->rcChevron))
643     {
644         if (lpBand->fDraw & DRAW_CHEVRONPUSHED)
645         {
646             DrawEdge(hdc, &lpBand->rcChevron, BDR_SUNKENOUTER, BF_RECT | BF_MIDDLE);
647             REBAR_DrawChevron(hdc, lpBand->rcChevron.left+1, lpBand->rcChevron.top + 11, COLOR_WINDOWFRAME);
648         }
649         else if (lpBand->fDraw & DRAW_CHEVRONHOT)
650         {
651             DrawEdge(hdc, &lpBand->rcChevron, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
652             REBAR_DrawChevron(hdc, lpBand->rcChevron.left, lpBand->rcChevron.top + 10, COLOR_WINDOWFRAME);
653         }
654         else
655             REBAR_DrawChevron(hdc, lpBand->rcChevron.left, lpBand->rcChevron.top + 10, COLOR_WINDOWFRAME);
656     }
657
658     if (lpBand->uCDret == (CDRF_NOTIFYPOSTPAINT | CDRF_NOTIFYITEMDRAW)) {
659         nmcd.dwDrawStage = CDDS_ITEMPOSTPAINT;
660         nmcd.hdc = hdc;
661         nmcd.rc = lpBand->rcBand;
662         nmcd.rc.right = lpBand->rcCapText.right;
663         nmcd.rc.bottom = lpBand->rcCapText.bottom;
664         nmcd.dwItemSpec = lpBand->wID;
665         nmcd.uItemState = 0;
666         nmcd.lItemlParam = lpBand->lParam;
667         lpBand->uCDret = REBAR_Notify ((NMHDR *)&nmcd, infoPtr, NM_CUSTOMDRAW);
668     }
669 }
670
671
672 static VOID
673 REBAR_Refresh (REBAR_INFO *infoPtr, HDC hdc)
674 {
675     REBAR_BAND *lpBand;
676     UINT i;
677
678     if (!infoPtr->DoRedraw) return;
679
680     for (i = 0; i < infoPtr->uNumBands; i++) {
681         lpBand = &infoPtr->bands[i];
682
683         if (HIDDENBAND(lpBand)) continue;
684
685         /* now draw the band */
686         TRACE("[%p] drawing band %i, flags=%08x\n",
687               infoPtr->hwndSelf, i, lpBand->fDraw);
688         REBAR_DrawBand (hdc, infoPtr, lpBand);
689
690     }
691 }
692
693
694 static void
695 REBAR_FixVert (REBAR_INFO *infoPtr, UINT rowstart, UINT rowend,
696                    INT mcy)
697      /* Function:                                                    */
698      /*   Cycle through bands in row and fix height of each band.    */
699      /*   Also determine whether each band has changed.              */
700      /* On entry:                                                    */
701      /*   all bands at desired size.                                 */
702      /*   start and end bands are *not* hidden                       */
703 {
704     REBAR_BAND *lpBand;
705     INT i;
706
707     for (i = (INT)rowstart; i<=(INT)rowend; i++) {
708         lpBand = &infoPtr->bands[i];
709         if (HIDDENBAND(lpBand)) continue;
710
711         /* adjust height of bands in row to "mcy" value */
712         if (infoPtr->dwStyle & CCS_VERT) {
713             if (lpBand->rcBand.right != lpBand->rcBand.left + mcy)
714                 lpBand->rcBand.right = lpBand->rcBand.left + mcy;
715         }
716         else {
717             if (lpBand->rcBand.bottom != lpBand->rcBand.top + mcy)
718                 lpBand->rcBand.bottom = lpBand->rcBand.top + mcy;
719
720         }
721
722         /* mark whether we need to invalidate this band and trace */
723         if ((lpBand->rcoldBand.left !=lpBand->rcBand.left) ||
724             (lpBand->rcoldBand.top !=lpBand->rcBand.top) ||
725             (lpBand->rcoldBand.right !=lpBand->rcBand.right) ||
726             (lpBand->rcoldBand.bottom !=lpBand->rcBand.bottom)) {
727             lpBand->fDraw |= NTF_INVALIDATE;
728             TRACE("band %d row=%d: changed to (%ld,%ld)-(%ld,%ld) from (%ld,%ld)-(%ld,%ld)\n",
729                   i, lpBand->iRow,
730                   lpBand->rcBand.left, lpBand->rcBand.top,
731                   lpBand->rcBand.right, lpBand->rcBand.bottom,
732                   lpBand->rcoldBand.left, lpBand->rcoldBand.top,
733                   lpBand->rcoldBand.right, lpBand->rcoldBand.bottom);
734         }
735         else
736             TRACE("band %d row=%d: unchanged (%ld,%ld)-(%ld,%ld)\n",
737                   i, lpBand->iRow,
738                   lpBand->rcBand.left, lpBand->rcBand.top,
739                   lpBand->rcBand.right, lpBand->rcBand.bottom);
740     }
741 }
742
743
744 static void
745 REBAR_AdjustBands (REBAR_INFO *infoPtr, UINT rowstart, UINT rowend,
746                    INT maxx, INT mcy)
747      /* Function: This routine distributes the extra space in a row. */
748      /*  See algorithm below.                                        */
749      /* On entry:                                                    */
750      /*   all bands @ ->cxHeader size                                */
751      /*   start and end bands are *not* hidden                       */
752 {
753     REBAR_BAND *lpBand;
754     UINT x, xsep, extra, curwidth, fudge;
755     INT i, last_adjusted;
756
757     TRACE("start=%u, end=%u, max x=%d, max y=%d\n",
758           rowstart, rowend, maxx, mcy);
759
760     /* *******************  Phase 1  ************************ */
761     /* Alg:                                                   */
762     /*  For each visible band with valid child                */
763     /*      a. inflate band till either all extra space used  */
764     /*         or band's ->ccx reached.                       */
765     /*  If any band modified, add any space left to last band */
766     /*  adjusted.                                             */
767     /*                                                        */
768     /* ****************************************************** */
769     lpBand = &infoPtr->bands[rowend];
770     extra = maxx - rcBrb(lpBand);
771     x = 0;
772     last_adjusted = -1;
773     for (i=(INT)rowstart; i<=(INT)rowend; i++) {
774         lpBand = &infoPtr->bands[i];
775         if (HIDDENBAND(lpBand)) continue;
776         xsep = (x == 0) ? 0 : SEP_WIDTH;
777         curwidth = rcBw(lpBand);
778
779         /* set new left/top point */
780         if (infoPtr->dwStyle & CCS_VERT)
781             lpBand->rcBand.top = x + xsep;
782         else
783             lpBand->rcBand.left = x + xsep;
784
785         /* compute new width */
786         if ((lpBand->hwndChild && extra) && !(lpBand->fStyle & RBBS_FIXEDSIZE)) {
787             /* set to the "current" band size less the header */
788             fudge = lpBand->ccx;
789             last_adjusted = i;
790             if ((lpBand->fMask & RBBIM_SIZE) && (lpBand->cx > 0) &&
791                 (fudge > curwidth)) {
792                 TRACE("adjusting band %d by %d, fudge=%d, curwidth=%d, extra=%d\n",
793                       i, fudge-curwidth, fudge, curwidth, extra);
794                 if ((fudge - curwidth) > extra)
795                     fudge = curwidth + extra;
796                 extra -= (fudge - curwidth);
797                 curwidth = fudge;
798             }
799             else {
800                 TRACE("adjusting band %d by %d, fudge=%d, curwidth=%d\n",
801                       i, extra, fudge, curwidth);
802                 curwidth += extra;
803                 extra = 0;
804             }
805         }
806
807         /* set new right/bottom point */
808         if (infoPtr->dwStyle & CCS_VERT)
809             lpBand->rcBand.bottom = lpBand->rcBand.top + curwidth;
810         else
811             lpBand->rcBand.right = lpBand->rcBand.left + curwidth;
812         TRACE("Phase 1 band %d, (%ld,%ld)-(%ld,%ld), orig x=%d, xsep=%d\n",
813               i, lpBand->rcBand.left, lpBand->rcBand.top,
814               lpBand->rcBand.right, lpBand->rcBand.bottom, x, xsep);
815         x = rcBrb(lpBand);
816     }
817     if ((x >= maxx) || (last_adjusted != -1)) {
818         if (x > maxx) {
819             ERR("Phase 1 failed, x=%d, maxx=%d, start=%u, end=%u\n",
820                 x, maxx,  rowstart, rowend);
821         }
822         /* done, so spread extra space */
823         if (x < maxx) {
824             fudge = maxx - x;
825             TRACE("Need to spread %d on last adjusted band %d\n",
826                 fudge, last_adjusted);
827             for (i=(INT)last_adjusted; i<=(INT)rowend; i++) {
828                 lpBand = &infoPtr->bands[i];
829                 if (HIDDENBAND(lpBand)) continue;
830
831                 /* set right/bottom point */
832                 if (i != last_adjusted) {
833                     if (infoPtr->dwStyle & CCS_VERT)
834                         lpBand->rcBand.top += fudge;
835                     else
836                         lpBand->rcBand.left += fudge;
837                 }
838
839                 /* set left/bottom point */
840                 if (infoPtr->dwStyle & CCS_VERT)
841                     lpBand->rcBand.bottom += fudge;
842                 else
843                     lpBand->rcBand.right += fudge;
844             }
845         }
846         TRACE("Phase 1 succeeded, used x=%d\n", x);
847         REBAR_FixVert (infoPtr, rowstart, rowend, mcy);
848         return;
849     }
850
851     /* *******************  Phase 2  ************************ */
852     /* Alg:                                                   */
853     /*  Find first visible band, put all                      */
854     /*    extra space there.                                  */
855     /*                                                        */
856     /* ****************************************************** */
857
858     x = 0;
859     for (i=(INT)rowstart; i<=(INT)rowend; i++) {
860         lpBand = &infoPtr->bands[i];
861         if (HIDDENBAND(lpBand)) continue;
862         xsep = (x == 0) ? 0 : SEP_WIDTH;
863         curwidth = rcBw(lpBand);
864
865         /* set new left/top point */
866         if (infoPtr->dwStyle & CCS_VERT)
867             lpBand->rcBand.top = x + xsep;
868         else
869             lpBand->rcBand.left = x + xsep;
870
871         /* compute new width */
872         if (extra) {
873             curwidth += extra;
874             extra = 0;
875         }
876
877         /* set new right/bottom point */
878         if (infoPtr->dwStyle & CCS_VERT)
879             lpBand->rcBand.bottom = lpBand->rcBand.top + curwidth;
880         else
881             lpBand->rcBand.right = lpBand->rcBand.left + curwidth;
882         TRACE("Phase 2 band %d, (%ld,%ld)-(%ld,%ld), orig x=%d, xsep=%d\n",
883               i, lpBand->rcBand.left, lpBand->rcBand.top,
884               lpBand->rcBand.right, lpBand->rcBand.bottom, x, xsep);
885         x = rcBrb(lpBand);
886     }
887     if (x >= maxx) {
888         if (x > maxx) {
889             ERR("Phase 2 failed, x=%d, maxx=%d, start=%u, end=%u\n",
890                 x, maxx,  rowstart, rowend);
891         }
892         /* done, so spread extra space */
893         TRACE("Phase 2 succeeded, used x=%d\n", x);
894         REBAR_FixVert (infoPtr, rowstart, rowend, mcy);
895         return;
896     }
897
898     /* *******************  Phase 3  ************************ */
899     /* at this point everything is back to ->cxHeader values  */
900     /* and should not have gotten here.                       */
901     /* ****************************************************** */
902
903     lpBand = &infoPtr->bands[rowstart];
904     ERR("Serious problem adjusting row %d, start band %d, end band %d\n",
905         lpBand->iRow, rowstart, rowend);
906     REBAR_DumpBand (infoPtr);
907     return;
908 }
909
910
911 static void
912 REBAR_CalcHorzBand (REBAR_INFO *infoPtr, UINT rstart, UINT rend, BOOL notify)
913      /* Function: this routine initializes all the rectangles in */
914      /*  each band in a row to fit in the adjusted rcBand rect.  */
915      /* *** Supports only Horizontal bars. ***                   */
916 {
917     REBAR_BAND *lpBand;
918     UINT i, xoff, yoff;
919     HWND parenthwnd;
920     RECT oldChild, work;
921
922     /* MS seems to use GetDlgCtrlID() for above GetWindowLong call */
923     parenthwnd = GetParent (infoPtr->hwndSelf);
924
925     for(i=rstart; i<rend; i++){
926       lpBand = &infoPtr->bands[i];
927       if (HIDDENBAND(lpBand)) {
928           SetRect (&lpBand->rcChild,
929                    lpBand->rcBand.right, lpBand->rcBand.top,
930                    lpBand->rcBand.right, lpBand->rcBand.bottom);
931           continue;
932       }
933
934       oldChild = lpBand->rcChild;
935
936       /* set initial gripper rectangle */
937       SetRect (&lpBand->rcGripper, lpBand->rcBand.left, lpBand->rcBand.top,
938                lpBand->rcBand.left, lpBand->rcBand.bottom);
939
940       /* calculate gripper rectangle */
941       if ( lpBand->fStatus & HAS_GRIPPER) {
942           lpBand->fDraw |= DRAW_GRIPPER;
943           lpBand->rcGripper.left   += REBAR_PRE_GRIPPER;
944           lpBand->rcGripper.right  = lpBand->rcGripper.left + GRIPPER_WIDTH;
945           lpBand->rcGripper.top    += 2;
946           lpBand->rcGripper.bottom -= 2;
947
948           SetRect (&lpBand->rcCapImage,
949                    lpBand->rcGripper.right+REBAR_ALWAYS_SPACE, lpBand->rcBand.top,
950                    lpBand->rcGripper.right+REBAR_ALWAYS_SPACE, lpBand->rcBand.bottom);
951       }
952       else {  /* no gripper will be drawn */
953           xoff = 0;
954           if (lpBand->fStatus & (HAS_IMAGE | HAS_TEXT))
955               /* if no gripper but either image or text, then leave space */
956               xoff = REBAR_ALWAYS_SPACE;
957           SetRect (&lpBand->rcCapImage,
958                    lpBand->rcBand.left+xoff, lpBand->rcBand.top,
959                    lpBand->rcBand.left+xoff, lpBand->rcBand.bottom);
960       }
961
962       /* image is visible */
963       if (lpBand->fStatus & HAS_IMAGE) {
964           lpBand->fDraw |= DRAW_IMAGE;
965           lpBand->rcCapImage.right  += infoPtr->imageSize.cx;
966           lpBand->rcCapImage.bottom = lpBand->rcCapImage.top + infoPtr->imageSize.cy;
967
968           /* set initial caption text rectangle */
969           SetRect (&lpBand->rcCapText,
970                    lpBand->rcCapImage.right+REBAR_POST_IMAGE, lpBand->rcBand.top+1,
971                    lpBand->rcBand.left+lpBand->cxHeader, lpBand->rcBand.bottom-1);
972           /* update band height
973           if (lpBand->uMinHeight < infoPtr->imageSize.cy + 2) {
974               lpBand->uMinHeight = infoPtr->imageSize.cy + 2;
975               lpBand->rcBand.bottom = lpBand->rcBand.top + lpBand->uMinHeight;
976           }  */
977       }
978       else {
979           /* set initial caption text rectangle */
980           SetRect (&lpBand->rcCapText, lpBand->rcCapImage.right, lpBand->rcBand.top+1,
981                    lpBand->rcBand.left+lpBand->cxHeader, lpBand->rcBand.bottom-1);
982       }
983
984       /* text is visible */
985       if ((lpBand->fStatus & HAS_TEXT) && !(lpBand->fStyle & RBBS_HIDETITLE)) {
986           lpBand->fDraw |= DRAW_TEXT;
987           lpBand->rcCapText.right = max(lpBand->rcCapText.left,
988                                         lpBand->rcCapText.right-REBAR_POST_TEXT);
989       }
990
991       /* set initial child window rectangle if there is a child */
992       if (lpBand->fMask & RBBIM_CHILD) {
993           xoff = lpBand->offChild.cx;
994           yoff = lpBand->offChild.cy;
995           SetRect (&lpBand->rcChild,
996                    lpBand->rcBand.left+lpBand->cxHeader, lpBand->rcBand.top+yoff,
997                    lpBand->rcBand.right-xoff, lpBand->rcBand.bottom-yoff);
998           if ((lpBand->fStyle & RBBS_USECHEVRON) && (lpBand->rcChild.right - lpBand->rcChild.left < lpBand->cxIdeal))
999           {
1000               lpBand->rcChild.right -= CHEVRON_WIDTH;
1001               SetRect(&lpBand->rcChevron, lpBand->rcChild.right,
1002                       lpBand->rcChild.top, lpBand->rcChild.right + CHEVRON_WIDTH,
1003                       lpBand->rcChild.bottom);
1004           }
1005       }
1006       else {
1007           SetRect (&lpBand->rcChild,
1008                    lpBand->rcBand.left+lpBand->cxHeader, lpBand->rcBand.top,
1009                    lpBand->rcBand.right, lpBand->rcBand.bottom);
1010       }
1011
1012       /* flag if notify required and invalidate rectangle */
1013       if (notify &&
1014           ((oldChild.right-oldChild.left != lpBand->rcChild.right-lpBand->rcChild.left) ||
1015            (oldChild.bottom-oldChild.top != lpBand->rcChild.bottom-lpBand->rcChild.top))) {
1016           TRACE("Child rectangle changed for band %u\n", i);
1017           TRACE("    from (%ld,%ld)-(%ld,%ld)  to (%ld,%ld)-(%ld,%ld)\n",
1018                 oldChild.left, oldChild.top,
1019                 oldChild.right, oldChild.bottom,
1020                 lpBand->rcChild.left, lpBand->rcChild.top,
1021                 lpBand->rcChild.right, lpBand->rcChild.bottom);
1022       }
1023       if (lpBand->fDraw & NTF_INVALIDATE) {
1024           TRACE("invalidating (%ld,%ld)-(%ld,%ld)\n",
1025                 lpBand->rcBand.left,
1026                 lpBand->rcBand.top,
1027                 lpBand->rcBand.right + ((lpBand->fDraw & DRAW_RIGHTSEP) ? SEP_WIDTH_SIZE : 0),
1028                 lpBand->rcBand.bottom + ((lpBand->fDraw & DRAW_BOTTOMSEP) ? SEP_WIDTH_SIZE : 0));
1029           lpBand->fDraw &= ~NTF_INVALIDATE;
1030           work = lpBand->rcBand;
1031           if (lpBand->fDraw & DRAW_RIGHTSEP) work.right += SEP_WIDTH_SIZE;
1032           if (lpBand->fDraw & DRAW_BOTTOMSEP) work.bottom += SEP_WIDTH_SIZE;
1033           InvalidateRect(infoPtr->hwndSelf, &work, TRUE);
1034       }
1035
1036     }
1037
1038 }
1039
1040
1041 static VOID
1042 REBAR_CalcVertBand (REBAR_INFO *infoPtr, UINT rstart, UINT rend, BOOL notify)
1043      /* Function: this routine initializes all the rectangles in */
1044      /*  each band in a row to fit in the adjusted rcBand rect.  */
1045      /* *** Supports only Vertical bars. ***                     */
1046 {
1047     REBAR_BAND *lpBand;
1048     UINT i, xoff, yoff;
1049     HWND parenthwnd;
1050     RECT oldChild, work;
1051
1052     /* MS seems to use GetDlgCtrlID() for above GetWindowLong call */
1053     parenthwnd = GetParent (infoPtr->hwndSelf);
1054
1055     for(i=rstart; i<rend; i++){
1056         lpBand = &infoPtr->bands[i];
1057         if (HIDDENBAND(lpBand)) continue;
1058         oldChild = lpBand->rcChild;
1059
1060         /* set initial gripper rectangle */
1061         SetRect (&lpBand->rcGripper, lpBand->rcBand.left, lpBand->rcBand.top,
1062                  lpBand->rcBand.right, lpBand->rcBand.top);
1063
1064         /* calculate gripper rectangle */
1065         if (lpBand->fStatus & HAS_GRIPPER) {
1066             lpBand->fDraw |= DRAW_GRIPPER;
1067
1068             if (infoPtr->dwStyle & RBS_VERTICALGRIPPER) {
1069                 /*  vertical gripper  */
1070                 lpBand->rcGripper.left   += 3;
1071                 lpBand->rcGripper.right  = lpBand->rcGripper.left + GRIPPER_WIDTH;
1072                 lpBand->rcGripper.top    += REBAR_PRE_GRIPPER;
1073                 lpBand->rcGripper.bottom = lpBand->rcGripper.top + GRIPPER_HEIGHT;
1074
1075                 /* initialize Caption image rectangle  */
1076                 SetRect (&lpBand->rcCapImage, lpBand->rcBand.left,
1077                          lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE,
1078                          lpBand->rcBand.right,
1079                          lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE);
1080             }
1081             else {
1082                 /*  horizontal gripper  */
1083                 lpBand->rcGripper.left   += 2;
1084                 lpBand->rcGripper.right  -= 2;
1085                 lpBand->rcGripper.top    += REBAR_PRE_GRIPPER;
1086                 lpBand->rcGripper.bottom  = lpBand->rcGripper.top + GRIPPER_WIDTH;
1087
1088                 /* initialize Caption image rectangle  */
1089                 SetRect (&lpBand->rcCapImage, lpBand->rcBand.left,
1090                          lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE,
1091                          lpBand->rcBand.right,
1092                          lpBand->rcGripper.bottom + REBAR_ALWAYS_SPACE);
1093             }
1094         }
1095         else {  /* no gripper will be drawn */
1096             xoff = 0;
1097             if (lpBand->fStatus & (HAS_IMAGE | HAS_TEXT))
1098                 /* if no gripper but either image or text, then leave space */
1099                 xoff = REBAR_ALWAYS_SPACE;
1100             /* initialize Caption image rectangle  */
1101             SetRect (&lpBand->rcCapImage,
1102                      lpBand->rcBand.left, lpBand->rcBand.top+xoff,
1103                      lpBand->rcBand.right, lpBand->rcBand.top+xoff);
1104         }
1105
1106         /* image is visible */
1107         if (lpBand->fStatus & HAS_IMAGE) {
1108             lpBand->fDraw |= DRAW_IMAGE;
1109
1110             lpBand->rcCapImage.right  = lpBand->rcCapImage.left + infoPtr->imageSize.cx;
1111             lpBand->rcCapImage.bottom += infoPtr->imageSize.cy;
1112
1113             /* set initial caption text rectangle */
1114             SetRect (&lpBand->rcCapText,
1115                      lpBand->rcBand.left, lpBand->rcCapImage.bottom+REBAR_POST_IMAGE,
1116                      lpBand->rcBand.right, lpBand->rcBand.top+lpBand->cxHeader);
1117             /* update band height *
1118                if (lpBand->uMinHeight < infoPtr->imageSize.cx + 2) {
1119                lpBand->uMinHeight = infoPtr->imageSize.cx + 2;
1120                lpBand->rcBand.right = lpBand->rcBand.left + lpBand->uMinHeight;
1121                } */
1122         }
1123         else {
1124             /* set initial caption text rectangle */
1125             SetRect (&lpBand->rcCapText,
1126                      lpBand->rcBand.left, lpBand->rcCapImage.bottom,
1127                      lpBand->rcBand.right, lpBand->rcBand.top+lpBand->cxHeader);
1128         }
1129
1130         /* text is visible */
1131         if ((lpBand->fStatus & HAS_TEXT) && !(lpBand->fStyle & RBBS_HIDETITLE)) {
1132             lpBand->fDraw |= DRAW_TEXT;
1133             lpBand->rcCapText.bottom = max(lpBand->rcCapText.top,
1134                                            lpBand->rcCapText.bottom);
1135         }
1136
1137         /* set initial child window rectangle if there is a child */
1138         if (lpBand->fMask & RBBIM_CHILD) {
1139             yoff = lpBand->offChild.cx;
1140             xoff = lpBand->offChild.cy;
1141             SetRect (&lpBand->rcChild,
1142                      lpBand->rcBand.left+xoff, lpBand->rcBand.top+lpBand->cxHeader,
1143                      lpBand->rcBand.right-xoff, lpBand->rcBand.bottom-yoff);
1144         }
1145         else {
1146             SetRect (&lpBand->rcChild,
1147                      lpBand->rcBand.left, lpBand->rcBand.top+lpBand->cxHeader,
1148                      lpBand->rcBand.right, lpBand->rcBand.bottom);
1149         }
1150
1151         /* flag if notify required and invalidate rectangle */
1152         if (notify &&
1153             ((oldChild.right-oldChild.left != lpBand->rcChild.right-lpBand->rcChild.left) ||
1154              (oldChild.bottom-oldChild.top != lpBand->rcChild.bottom-lpBand->rcChild.top))) {
1155             TRACE("Child rectangle changed for band %u\n", i);
1156             TRACE("    from (%ld,%ld)-(%ld,%ld)  to (%ld,%ld)-(%ld,%ld)\n",
1157                   oldChild.left, oldChild.top,
1158                   oldChild.right, oldChild.bottom,
1159                   lpBand->rcChild.left, lpBand->rcChild.top,
1160                   lpBand->rcChild.right, lpBand->rcChild.bottom);
1161         }
1162         if (lpBand->fDraw & NTF_INVALIDATE) {
1163             TRACE("invalidating (%ld,%ld)-(%ld,%ld)\n",
1164                   lpBand->rcBand.left,
1165                   lpBand->rcBand.top,
1166                   lpBand->rcBand.right + ((lpBand->fDraw & DRAW_BOTTOMSEP) ? SEP_WIDTH_SIZE : 0),
1167                   lpBand->rcBand.bottom + ((lpBand->fDraw & DRAW_RIGHTSEP) ? SEP_WIDTH_SIZE : 0));
1168             lpBand->fDraw &= ~NTF_INVALIDATE;
1169             work = lpBand->rcBand;
1170             if (lpBand->fDraw & DRAW_RIGHTSEP) work.bottom += SEP_WIDTH_SIZE;
1171             if (lpBand->fDraw & DRAW_BOTTOMSEP) work.right += SEP_WIDTH_SIZE;
1172             InvalidateRect(infoPtr->hwndSelf, &work, TRUE);
1173         }
1174
1175     }
1176 }
1177
1178
1179 static VOID
1180 REBAR_ForceResize (REBAR_INFO *infoPtr)
1181      /* Function: This changes the size of the REBAR window to that */
1182      /*  calculated by REBAR_Layout.                                */
1183 {
1184     RECT rc;
1185     INT x, y, width, height;
1186     INT xedge = GetSystemMetrics(SM_CXEDGE);
1187     INT yedge = GetSystemMetrics(SM_CYEDGE);
1188
1189     GetClientRect (infoPtr->hwndSelf, &rc);
1190
1191     TRACE( " old [%ld x %ld], new [%ld x %ld], client [%ld x %ld]\n",
1192            infoPtr->oldSize.cx, infoPtr->oldSize.cy,
1193            infoPtr->calcSize.cx, infoPtr->calcSize.cy,
1194            rc.right, rc.bottom);
1195
1196     /* If we need to shrink client, then skip size test */
1197     if ((infoPtr->calcSize.cy >= rc.bottom) &&
1198         (infoPtr->calcSize.cx >= rc.right)) {
1199
1200         /* if size did not change then skip process */
1201         if ((infoPtr->oldSize.cx == infoPtr->calcSize.cx) &&
1202             (infoPtr->oldSize.cy == infoPtr->calcSize.cy) &&
1203             !(infoPtr->fStatus & RESIZE_ANYHOW))
1204             {
1205                 TRACE("skipping reset\n");
1206                 return;
1207             }
1208     }
1209
1210     infoPtr->fStatus &= ~RESIZE_ANYHOW;
1211     /* Set flag to ignore next WM_SIZE message */
1212     infoPtr->fStatus |= AUTO_RESIZE;
1213
1214     width = 0;
1215     height = 0;
1216     x = 0;
1217     y = 0;
1218
1219     if (infoPtr->dwStyle & WS_BORDER) {
1220         width = 2 * xedge;
1221         height = 2 * yedge;
1222     }
1223
1224     if (!(infoPtr->dwStyle & CCS_NOPARENTALIGN)) {
1225         INT mode = infoPtr->dwStyle & (CCS_VERT | CCS_TOP | CCS_BOTTOM);
1226         RECT rcPcl;
1227
1228         GetClientRect(GetParent(infoPtr->hwndSelf), &rcPcl);
1229         switch (mode) {
1230         case CCS_TOP:
1231             /* _TOP sets width to parents width */
1232             width += (rcPcl.right - rcPcl.left);
1233             height += infoPtr->calcSize.cy;
1234             x += ((infoPtr->dwStyle & WS_BORDER) ? -xedge : 0);
1235             y += ((infoPtr->dwStyle & WS_BORDER) ? -yedge : 0);
1236             y += ((infoPtr->dwStyle & CCS_NODIVIDER) ? 0 : REBAR_DIVIDER);
1237             break;
1238         case CCS_BOTTOM:
1239             /* FIXME: wrong wrong wrong */
1240             /* _BOTTOM sets width to parents width */
1241             width += (rcPcl.right - rcPcl.left);
1242             height += infoPtr->calcSize.cy;
1243             x += -xedge;
1244             y = rcPcl.bottom - height + 1;
1245             break;
1246         case CCS_LEFT:
1247             /* _LEFT sets height to parents height */
1248             width += infoPtr->calcSize.cx;
1249             height += (rcPcl.bottom - rcPcl.top);
1250             x += ((infoPtr->dwStyle & WS_BORDER) ? -xedge : 0);
1251             x += ((infoPtr->dwStyle & CCS_NODIVIDER) ? 0 : REBAR_DIVIDER);
1252             y += ((infoPtr->dwStyle & WS_BORDER) ? -yedge : 0);
1253             break;
1254         case CCS_RIGHT:
1255             /* FIXME: wrong wrong wrong */
1256             /* _RIGHT sets height to parents height */
1257             width += infoPtr->calcSize.cx;
1258             height += (rcPcl.bottom - rcPcl.top);
1259             x = rcPcl.right - width + 1;
1260             y = -yedge;
1261             break;
1262         default:
1263             width += infoPtr->calcSize.cx;
1264             height += infoPtr->calcSize.cy;
1265         }
1266     }
1267     else {
1268         width += infoPtr->calcSize.cx;
1269         height += infoPtr->calcSize.cy;
1270         x = infoPtr->origin.x;
1271         y = infoPtr->origin.y;
1272     }
1273
1274     TRACE("hwnd %p, style=%08lx, setting at (%d,%d) for (%d,%d)\n",
1275         infoPtr->hwndSelf, infoPtr->dwStyle,
1276         x, y, width, height);
1277     SetWindowPos (infoPtr->hwndSelf, 0, x, y, width, height,
1278                     SWP_NOZORDER);
1279 }
1280
1281
1282 static VOID
1283 REBAR_MoveChildWindows (REBAR_INFO *infoPtr, UINT start, UINT endplus)
1284 {
1285     REBAR_BAND *lpBand;
1286     CHAR szClassName[40];
1287     UINT i;
1288     NMREBARCHILDSIZE  rbcz;
1289     NMHDR heightchange;
1290     HDWP deferpos;
1291
1292     if (!(deferpos = BeginDeferWindowPos(infoPtr->uNumBands)))
1293         ERR("BeginDeferWindowPos returned NULL\n");
1294
1295     for (i = start; i < endplus; i++) {
1296         lpBand = &infoPtr->bands[i];
1297
1298         if (HIDDENBAND(lpBand)) continue;
1299         if (lpBand->hwndChild) {
1300             TRACE("hwndChild = %p\n", lpBand->hwndChild);
1301
1302             /* Always geterate the RBN_CHILDSIZE even it child
1303                    did not change */
1304             rbcz.uBand = i;
1305             rbcz.wID = lpBand->wID;
1306             rbcz.rcChild = lpBand->rcChild;
1307             rbcz.rcBand = lpBand->rcBand;
1308             if (infoPtr->dwStyle & CCS_VERT)
1309                 rbcz.rcBand.top += lpBand->cxHeader;
1310             else
1311                 rbcz.rcBand.left += lpBand->cxHeader;
1312             REBAR_Notify ((NMHDR *)&rbcz, infoPtr, RBN_CHILDSIZE);
1313             if (!EqualRect (&lpBand->rcChild, &rbcz.rcChild)) {
1314                 TRACE("Child rect changed by NOTIFY for band %u\n", i);
1315                 TRACE("    from (%ld,%ld)-(%ld,%ld)  to (%ld,%ld)-(%ld,%ld)\n",
1316                       lpBand->rcChild.left, lpBand->rcChild.top,
1317                       lpBand->rcChild.right, lpBand->rcChild.bottom,
1318                       rbcz.rcChild.left, rbcz.rcChild.top,
1319                       rbcz.rcChild.right, rbcz.rcChild.bottom);
1320                 lpBand->rcChild = rbcz.rcChild;  /* *** ??? */
1321             }
1322
1323             /* native (IE4 in "Favorites" frame **1) does:
1324              *   SetRect (&rc, -1, -1, -1, -1)
1325              *   EqualRect (&rc,band->rc???)
1326              *   if ret==0
1327              *     CopyRect (band->rc????, &rc)
1328              *     set flag outside of loop
1329              */
1330
1331             GetClassNameA (lpBand->hwndChild, szClassName, 40);
1332             if (!lstrcmpA (szClassName, "ComboBox") ||
1333                 !lstrcmpA (szClassName, WC_COMBOBOXEXA)) {
1334                 INT nEditHeight, yPos;
1335                 RECT rc;
1336
1337                 /* special placement code for combo or comboex box */
1338
1339
1340                 /* get size of edit line */
1341                 GetWindowRect (lpBand->hwndChild, &rc);
1342                 nEditHeight = rc.bottom - rc.top;
1343                 yPos = (lpBand->rcChild.bottom + lpBand->rcChild.top - nEditHeight)/2;
1344
1345                 /* center combo box inside child area */
1346                 TRACE("moving child (Combo(Ex)) %p to (%ld,%d) for (%ld,%d)\n",
1347                       lpBand->hwndChild,
1348                       lpBand->rcChild.left, yPos,
1349                       lpBand->rcChild.right - lpBand->rcChild.left,
1350                       nEditHeight);
1351                 deferpos = DeferWindowPos (deferpos, lpBand->hwndChild, HWND_TOP,
1352                                            lpBand->rcChild.left,
1353                                            /*lpBand->rcChild.top*/ yPos,
1354                                            lpBand->rcChild.right - lpBand->rcChild.left,
1355                                            nEditHeight,
1356                                            SWP_NOZORDER);
1357                 if (!deferpos)
1358                     ERR("DeferWindowPos returned NULL\n");
1359             }
1360             else {
1361                 TRACE("moving child (Other) %p to (%ld,%ld) for (%ld,%ld)\n",
1362                       lpBand->hwndChild,
1363                       lpBand->rcChild.left, lpBand->rcChild.top,
1364                       lpBand->rcChild.right - lpBand->rcChild.left,
1365                       lpBand->rcChild.bottom - lpBand->rcChild.top);
1366                 deferpos = DeferWindowPos (deferpos, lpBand->hwndChild, HWND_TOP,
1367                                            lpBand->rcChild.left,
1368                                            lpBand->rcChild.top,
1369                                            lpBand->rcChild.right - lpBand->rcChild.left,
1370                                            lpBand->rcChild.bottom - lpBand->rcChild.top,
1371                                            SWP_NOZORDER);
1372                 if (!deferpos)
1373                     ERR("DeferWindowPos returned NULL\n");
1374             }
1375         }
1376     }
1377     if (!EndDeferWindowPos(deferpos))
1378         ERR("EndDeferWindowPos returned NULL\n");
1379
1380     if (infoPtr->DoRedraw)
1381         UpdateWindow (infoPtr->hwndSelf);
1382
1383     if (infoPtr->fStatus & NTF_HGHTCHG) {
1384         infoPtr->fStatus &= ~NTF_HGHTCHG;
1385         /*
1386          * We need to force a resize here, because some applications
1387          * try to get the rebar size during processing of the 
1388          * RBN_HEIGHTCHANGE notification.
1389          */
1390         REBAR_ForceResize (infoPtr);
1391         REBAR_Notify (&heightchange, infoPtr, RBN_HEIGHTCHANGE);
1392     }
1393
1394     /* native (from **1 above) does:
1395      *      UpdateWindow(rebar)
1396      *      REBAR_ForceResize
1397      *      RBN_HEIGHTCHANGE if necessary
1398      *      if ret from any EqualRect was 0
1399      *         Goto "BeginDeferWindowPos"
1400      */
1401
1402 }
1403
1404
1405 static VOID
1406 REBAR_Layout (REBAR_INFO *infoPtr, LPRECT lpRect, BOOL notify, BOOL resetclient)
1407      /* Function: This routine is resposible for laying out all */
1408      /*  the bands in a rebar. It assigns each band to a row and*/
1409      /*  determines when to start a new row.                    */
1410 {
1411     REBAR_BAND *lpBand, *prevBand;
1412     RECT rcClient, rcAdj;
1413     INT initx, inity, x, y, cx, cxsep, mmcy, mcy, clientcx, clientcy;
1414     INT adjcx, adjcy, row, rightx, bottomy, origheight;
1415     UINT i, j, rowstart, origrows, cntonrow;
1416     BOOL dobreak;
1417
1418     if (!(infoPtr->fStatus & BAND_NEEDS_LAYOUT)) {
1419         TRACE("no layout done. No band changed.\n");
1420         REBAR_DumpBand (infoPtr);
1421         return;
1422     }
1423     infoPtr->fStatus &= ~BAND_NEEDS_LAYOUT;
1424     if (!infoPtr->DoRedraw) infoPtr->fStatus |= BAND_NEEDS_REDRAW;
1425
1426     GetClientRect (infoPtr->hwndSelf, &rcClient);
1427     TRACE("Client is (%ld,%ld)-(%ld,%ld)\n",
1428           rcClient.left, rcClient.top, rcClient.right, rcClient.bottom);
1429
1430     if (lpRect) {
1431         rcAdj = *lpRect;
1432         TRACE("adjustment rect is (%ld,%ld)-(%ld,%ld)\n",
1433               rcAdj.left, rcAdj.top, rcAdj.right, rcAdj.bottom);
1434     }
1435     else {
1436         CopyRect (&rcAdj, &rcClient);
1437     }
1438
1439     clientcx = rcClient.right - rcClient.left;
1440     clientcy = rcClient.bottom - rcClient.top;
1441     adjcx = rcAdj.right - rcAdj.left;
1442     adjcy = rcAdj.bottom - rcAdj.top;
1443     if (resetclient) {
1444         TRACE("window client rect will be set to adj rect\n");
1445         clientcx = adjcx;
1446         clientcy = adjcy;
1447     }
1448
1449     if (!infoPtr->DoRedraw && (clientcx == 0) && (clientcy == 0)) {
1450         ERR("no redraw and client is zero, skip layout\n");
1451         infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
1452         return;
1453     }
1454
1455     /* save height of original control */
1456     if (infoPtr->dwStyle & CCS_VERT)
1457         origheight = infoPtr->calcSize.cx;
1458     else
1459         origheight = infoPtr->calcSize.cy;
1460     origrows = infoPtr->uNumRows;
1461
1462     initx = 0;
1463     inity = 0;
1464
1465     /* ******* Start Phase 1 - all bands on row at minimum size ******* */
1466
1467     TRACE("band loop constants, clientcx=%d, clientcy=%d, adjcx=%d, adjcy=%d\n",
1468           clientcx, clientcy, adjcx, adjcy);
1469     x = initx;
1470     y = inity;
1471     row = 1;
1472     cx = 0;
1473     mcy = 0;
1474     rowstart = 0;
1475     prevBand = NULL;
1476     cntonrow = 0;
1477
1478     for (i = 0; i < infoPtr->uNumBands; i++) {
1479         lpBand = &infoPtr->bands[i];
1480         lpBand->fDraw = 0;
1481         lpBand->iRow = row;
1482
1483         SetRectEmpty(&lpBand->rcChevron);
1484
1485         if (HIDDENBAND(lpBand)) continue;
1486
1487         lpBand->rcoldBand = lpBand->rcBand;
1488
1489         /* Set the offset of the child window */
1490         if ((lpBand->fMask & RBBIM_CHILD) &&
1491             !(lpBand->fStyle & RBBS_FIXEDSIZE)) {
1492             lpBand->offChild.cx = ((lpBand->fStyle & RBBS_CHILDEDGE) ? 4 : 0);
1493         }
1494         lpBand->offChild.cy = ((lpBand->fStyle & RBBS_CHILDEDGE) ? 2 : 0);
1495
1496         /* separator from previous band */
1497         cxsep = (cntonrow == 0) ? 0 : SEP_WIDTH;
1498         cx = lpBand->lcx;
1499
1500         if (infoPtr->dwStyle & CCS_VERT)
1501             dobreak = (y + cx + cxsep > adjcy);
1502         else
1503             dobreak = (x + cx + cxsep > adjcx);
1504
1505         /* This is the check for whether we need to start a new row */
1506         if ( ( (lpBand->fStyle & RBBS_BREAK) && (i != 0) ) ||
1507              ( ((infoPtr->dwStyle & CCS_VERT) ? (y != 0) : (x != 0)) && dobreak)) {
1508
1509             for (j = rowstart; j < i; j++) {
1510                 REBAR_BAND *lpB;
1511                 lpB = &infoPtr->bands[j];
1512                 if (infoPtr->dwStyle & CCS_VERT) {
1513                     lpB->rcBand.right  = lpB->rcBand.left + mcy;
1514                 }
1515                 else {
1516                     lpB->rcBand.bottom = lpB->rcBand.top + mcy;
1517                 }
1518             }
1519
1520             TRACE("P1 Spliting to new row %d on band %u\n", row+1, i);
1521             if (infoPtr->dwStyle & CCS_VERT) {
1522                 y = inity;
1523                 x += (mcy + SEP_WIDTH);
1524             }
1525             else {
1526                 x = initx;
1527                 y += (mcy + SEP_WIDTH);
1528             }
1529
1530             mcy = 0;
1531             cxsep = 0;
1532             row++;
1533             lpBand->iRow = row;
1534             prevBand = NULL;
1535             rowstart = i;
1536             cntonrow = 0;
1537         }
1538
1539         if (mcy < lpBand->lcy + REBARSPACE(lpBand))
1540             mcy = lpBand->lcy + REBARSPACE(lpBand);
1541
1542         /* if boundary rect specified then limit mcy */
1543         if (lpRect) {
1544             if (infoPtr->dwStyle & CCS_VERT) {
1545                 if (x+mcy > adjcx) {
1546                     mcy = adjcx - x;
1547                     TRACE("P1 row %u limiting mcy=%d, adjcx=%d, x=%d\n",
1548                           i, mcy, adjcx, x);
1549                 }
1550             }
1551             else {
1552                 if (y+mcy > adjcy) {
1553                     mcy = adjcy - y;
1554                     TRACE("P1 row %u limiting mcy=%d, adjcy=%d, y=%d\n",
1555                           i, mcy, adjcy, y);
1556                 }
1557             }
1558         }
1559
1560         TRACE("P1 band %u, row %d, x=%d, y=%d, cxsep=%d, cx=%d\n",
1561               i, row,
1562               x, y, cxsep, cx);
1563         if (infoPtr->dwStyle & CCS_VERT) {
1564             /* bound the bottom side if we have a bounding rectangle */
1565             rightx = clientcx;
1566             bottomy = (lpRect) ? min(clientcy, y+cxsep+cx) : y+cxsep+cx;
1567             lpBand->rcBand.left   = x;
1568             lpBand->rcBand.right  = x + min(mcy,
1569                                             lpBand->lcy+REBARSPACE(lpBand));
1570             lpBand->rcBand.top    = min(bottomy, y + cxsep);
1571             lpBand->rcBand.bottom = bottomy;
1572             lpBand->uMinHeight = lpBand->lcy;
1573             y = bottomy;
1574         }
1575         else {
1576             /* bound the right side if we have a bounding rectangle */
1577             rightx = (lpRect) ? min(clientcx, x+cxsep+cx) : x+cxsep+cx;
1578             bottomy = clientcy;
1579             lpBand->rcBand.left   = min(rightx, x + cxsep);
1580             lpBand->rcBand.right  = rightx;
1581             lpBand->rcBand.top    = y;
1582             lpBand->rcBand.bottom = y + min(mcy,
1583                                             lpBand->lcy+REBARSPACE(lpBand));
1584             lpBand->uMinHeight = lpBand->lcy;
1585             x = rightx;
1586         }
1587         TRACE("P1 band %u, row %d, (%ld,%ld)-(%ld,%ld)\n",
1588               i, row,
1589               lpBand->rcBand.left, lpBand->rcBand.top,
1590               lpBand->rcBand.right, lpBand->rcBand.bottom);
1591         prevBand = lpBand;
1592         cntonrow++;
1593
1594     } /* for (i = 0; i < infoPtr->uNumBands... */
1595
1596     if (infoPtr->dwStyle & CCS_VERT)
1597         x += mcy;
1598     else
1599         y += mcy;
1600
1601     for (j = rowstart; j < infoPtr->uNumBands; j++) {
1602         lpBand = &infoPtr->bands[j];
1603         if (infoPtr->dwStyle & CCS_VERT) {
1604             lpBand->rcBand.right  = lpBand->rcBand.left + mcy;
1605         }
1606         else {
1607             lpBand->rcBand.bottom = lpBand->rcBand.top + mcy;
1608         }
1609     }
1610
1611     if (infoPtr->uNumBands)
1612         infoPtr->uNumRows = row;
1613
1614     /* ******* End Phase 1 - all bands on row at minimum size ******* */
1615
1616
1617     /* ******* Start Phase 1a - Adjust heights for RBS_VARHEIGHT off ******* */
1618
1619     mmcy = 0;
1620     if (!(infoPtr->dwStyle & RBS_VARHEIGHT)) {
1621         INT xy;
1622
1623         /* get the max height of all bands */
1624         for (i=0; i<infoPtr->uNumBands; i++) {
1625             lpBand = &infoPtr->bands[i];
1626             if (HIDDENBAND(lpBand)) continue;
1627             if (infoPtr->dwStyle & CCS_VERT)
1628                 mmcy = max(mmcy, lpBand->rcBand.right - lpBand->rcBand.left);
1629             else
1630                 mmcy = max(mmcy, lpBand->rcBand.bottom - lpBand->rcBand.top);
1631         }
1632
1633         /* now adjust all rectangles by using the height found above */
1634         xy = 0;
1635         row = 1;
1636         for (i=0; i<infoPtr->uNumBands; i++) {
1637             lpBand = &infoPtr->bands[i];
1638             if (HIDDENBAND(lpBand)) continue;
1639             if (lpBand->iRow != row)
1640                 xy += (mmcy + SEP_WIDTH);
1641             if (infoPtr->dwStyle & CCS_VERT) {
1642                 lpBand->rcBand.left = xy;
1643                 lpBand->rcBand.right = xy + mmcy;
1644             }
1645             else {
1646                 lpBand->rcBand.top = xy;
1647                 lpBand->rcBand.bottom = xy + mmcy;
1648             }
1649         }
1650
1651         /* set the x/y values to the correct maximum */
1652         if (infoPtr->dwStyle & CCS_VERT)
1653             x = xy + mmcy;
1654         else
1655             y = xy + mmcy;
1656     }
1657
1658     /* ******* End Phase 1a - Adjust heights for RBS_VARHEIGHT off ******* */
1659
1660
1661     /* ******* Start Phase 2 - split rows till adjustment height full ******* */
1662
1663     /* assumes that the following variables contain:                 */
1664     /*   y/x     current height/width of all rows                    */
1665     if (lpRect) {
1666         INT i, prev_rh, new_rh, adj_rh, prev_idx, current_idx;
1667         REBAR_BAND *prev, *current, *walk;
1668         UINT j;
1669
1670 /* FIXME:  problem # 2 */
1671         if (((infoPtr->dwStyle & CCS_VERT) ?
1672 #if PROBLEM2
1673              (x < adjcx) : (y < adjcy)
1674 #else
1675              (adjcx - x > 5) : (adjcy - y > 4)
1676 #endif
1677              ) &&
1678             (infoPtr->uNumBands > 1)) {
1679             for (i=(INT)infoPtr->uNumBands-2; i>=0; i--) {
1680                 TRACE("P2 adjcx=%d, adjcy=%d, x=%d, y=%d\n",
1681                       adjcx, adjcy, x, y);
1682
1683                 /* find the current band (starts at i+1) */
1684                 current = &infoPtr->bands[i+1];
1685                 current_idx = i+1;
1686                 while (HIDDENBAND(current)) {
1687                     i--;
1688                     if (i < 0) break; /* out of bands */
1689                     current = &infoPtr->bands[i+1];
1690                     current_idx = i+1;
1691                 }
1692                 if (i < 0) break; /* out of bands */
1693
1694                 /* now find the prev band (starts at i) */
1695                 prev = &infoPtr->bands[i];
1696                 prev_idx = i;
1697                 while (HIDDENBAND(prev)) {
1698                     i--;
1699                     if (i < 0) break; /* out of bands */
1700                     prev = &infoPtr->bands[i];
1701                     prev_idx = i;
1702                 }
1703                 if (i < 0) break; /* out of bands */
1704
1705                 prev_rh = ircBw(prev);
1706                 if (prev->iRow == current->iRow) {
1707                     new_rh = (infoPtr->dwStyle & RBS_VARHEIGHT) ?
1708                         current->lcy + REBARSPACE(current) :
1709                         mmcy;
1710                     adj_rh = new_rh + SEP_WIDTH;
1711                     infoPtr->uNumRows++;
1712                     current->fDraw |= NTF_INVALIDATE;
1713                     current->iRow++;
1714                     if (infoPtr->dwStyle & CCS_VERT) {
1715                         current->rcBand.top = inity;
1716                         current->rcBand.bottom = clientcy;
1717                         current->rcBand.left += (prev_rh + SEP_WIDTH);
1718                         current->rcBand.right = current->rcBand.left + new_rh;
1719                         x += adj_rh;
1720                     }
1721                     else {
1722                         current->rcBand.left = initx;
1723                         current->rcBand.right = clientcx;
1724                         current->rcBand.top += (prev_rh + SEP_WIDTH);
1725                         current->rcBand.bottom = current->rcBand.top + new_rh;
1726                         y += adj_rh;
1727                     }
1728                     TRACE("P2 moving band %d to own row at (%ld,%ld)-(%ld,%ld)\n",
1729                           current_idx,
1730                           current->rcBand.left, current->rcBand.top,
1731                           current->rcBand.right, current->rcBand.bottom);
1732                     TRACE("P2 prev band %d at (%ld,%ld)-(%ld,%ld)\n",
1733                           prev_idx,
1734                           prev->rcBand.left, prev->rcBand.top,
1735                           prev->rcBand.right, prev->rcBand.bottom);
1736                     TRACE("P2 values: prev_rh=%d, new_rh=%d, adj_rh=%d\n",
1737                           prev_rh, new_rh, adj_rh);
1738                     /* for bands below current adjust row # and top/bottom */
1739                     for (j = current_idx+1; j<infoPtr->uNumBands; j++) {
1740                         walk = &infoPtr->bands[j];
1741                         if (HIDDENBAND(walk)) continue;
1742                         walk->fDraw |= NTF_INVALIDATE;
1743                         walk->iRow++;
1744                         if (infoPtr->dwStyle & CCS_VERT) {
1745                             walk->rcBand.left += adj_rh;
1746                             walk->rcBand.right += adj_rh;
1747                         }
1748                         else {
1749                             walk->rcBand.top += adj_rh;
1750                             walk->rcBand.bottom += adj_rh;
1751                         }
1752                     }
1753                     if ((infoPtr->dwStyle & CCS_VERT) ? (x >= adjcx) : (y >= adjcy))
1754                         break; /* all done */
1755                 }
1756             }
1757         }
1758     }
1759
1760     /* ******* End Phase 2 - split rows till adjustment height full ******* */
1761
1762
1763     /* ******* Start Phase 2a - mark first and last band in each ******* */
1764
1765     prevBand = NULL;
1766     for (i = 0; i < infoPtr->uNumBands; i++) {   
1767         lpBand = &infoPtr->bands[i];     
1768         if (HIDDENBAND(lpBand))
1769             continue;
1770         if( !prevBand ) {
1771             lpBand->fDraw |= DRAW_FIRST_IN_ROW;
1772             prevBand = lpBand;
1773         }
1774         else if( prevBand->iRow == lpBand->iRow )
1775             prevBand = lpBand;
1776         else {
1777             prevBand->fDraw |= DRAW_LAST_IN_ROW;
1778             lpBand->fDraw |= DRAW_FIRST_IN_ROW;
1779             prevBand = lpBand;
1780         }
1781     }
1782     if( prevBand )
1783         prevBand->fDraw |= DRAW_LAST_IN_ROW;
1784
1785     /* ******* End Phase 2a - mark first and last band in each ******* */
1786
1787
1788     /* ******* Start Phase 2b - adjust all bands for height full ******* */
1789     /* assumes that the following variables contain:                 */
1790     /*   y/x     current height/width of all rows                    */
1791     /*   clientcy/clientcx     height/width of client area           */
1792
1793     if (((infoPtr->dwStyle & CCS_VERT) ? clientcx > x : clientcy > y) &&
1794         infoPtr->uNumBands) {
1795         INT diff, i;
1796         UINT j;
1797
1798         diff = (infoPtr->dwStyle & CCS_VERT) ? clientcx - x : clientcy - y;
1799
1800         /* iterate backwards thru the rows */
1801         for (i = infoPtr->uNumBands-1; i>=0; i--) {
1802             lpBand = &infoPtr->bands[i];
1803             if(HIDDENBAND(lpBand)) continue;
1804
1805             /* if row has more than 1 band, ignore it */
1806             if( !(lpBand->fDraw&DRAW_FIRST_IN_ROW) )
1807                 continue;
1808             if( !(lpBand->fDraw&DRAW_LAST_IN_ROW) )
1809                 continue;
1810
1811             if (lpBand->fMask & RBBS_VARIABLEHEIGHT) continue;
1812             if (((INT)lpBand->cyMaxChild < 1) ||
1813                 ((INT)lpBand->cyIntegral < 1)) {
1814                 if (lpBand->cyMaxChild + lpBand->cyIntegral == 0) continue;
1815                 ERR("P2b band %u RBBS_VARIABLEHEIGHT set but cyMax=%d, cyInt=%d\n",
1816                     i, lpBand->cyMaxChild, lpBand->cyIntegral);
1817                 continue;
1818             }
1819             /* j is now the maximum height/width in the client area */
1820             j = ((diff / lpBand->cyIntegral) * lpBand->cyIntegral) +
1821                 ircBw(lpBand);
1822             if (j > lpBand->cyMaxChild + REBARSPACE(lpBand))
1823                 j = lpBand->cyMaxChild + REBARSPACE(lpBand);
1824             diff -= (j - ircBw(lpBand));
1825             if (infoPtr->dwStyle & CCS_VERT)
1826                 lpBand->rcBand.right = lpBand->rcBand.left + j;
1827             else
1828                 lpBand->rcBand.bottom = lpBand->rcBand.top + j;
1829             TRACE("P2b band %d, row %d changed to (%ld,%ld)-(%ld,%ld)\n",
1830                   i, lpBand->iRow,
1831                   lpBand->rcBand.left, lpBand->rcBand.top,
1832                   lpBand->rcBand.right, lpBand->rcBand.bottom);
1833             if (diff <= 0) break;
1834         }
1835         if (diff < 0) {
1836             ERR("P2b allocated more than available, diff=%d\n", diff);
1837             diff = 0;
1838         }
1839         if (infoPtr->dwStyle & CCS_VERT)
1840             x = clientcx - diff;
1841         else
1842             y = clientcy - diff;
1843     }
1844
1845     /* ******* End Phase 2b - adjust all bands for height full ******* */
1846
1847
1848     /* ******* Start Phase 3 - adjust all bands for width full ******* */
1849
1850     if (infoPtr->uNumBands) {
1851         int startband;
1852
1853         /* If RBS_BANDBORDERS set then indicate to draw bottom separator */
1854         /* on all bands in all rows but last row.                        */
1855         /* Also indicate to draw the right separator for each band in    */
1856         /* each row but the rightmost band.                              */
1857         if (infoPtr->dwStyle & RBS_BANDBORDERS) {
1858
1859             for (i=0; i<infoPtr->uNumBands; i++) {
1860                 lpBand = &infoPtr->bands[i];
1861                 if (HIDDENBAND(lpBand))
1862                     continue;
1863
1864                 /* not righthand bands */
1865                 if( !(lpBand->fDraw & DRAW_LAST_IN_ROW) )
1866                     lpBand->fDraw |= DRAW_RIGHTSEP;
1867
1868                 /* not the last row */
1869                 if( lpBand->iRow != infoPtr->uNumRows )
1870                     lpBand->fDraw |= DRAW_BOTTOMSEP;
1871             }
1872         }
1873
1874         /* Distribute the extra space on the horizontal and adjust  */
1875         /* all bands in row to same height.                         */
1876         mcy = 0;
1877         startband = -1;
1878         for (i=0; i<infoPtr->uNumBands; i++) {
1879
1880             lpBand = &infoPtr->bands[i];
1881
1882             if( lpBand->fDraw & DRAW_FIRST_IN_ROW )
1883             {
1884                 startband = i;
1885                 mcy = 0;
1886             }
1887
1888             if ( (mcy < ircBw(lpBand)) && !HIDDENBAND(lpBand) )
1889                 mcy = ircBw(lpBand);
1890
1891             if( lpBand->fDraw & DRAW_LAST_IN_ROW )
1892             {
1893                 TRACE("P3 processing row %d, starting band %d, ending band %d\n",
1894                       lpBand->iRow, startband, i);
1895                 if( startband < 0 )
1896                     ERR("Last band %d with no first, row %d\n", i, lpBand->iRow);
1897
1898                 REBAR_AdjustBands (infoPtr, startband, i,
1899                                (infoPtr->dwStyle & CCS_VERT) ?
1900                                clientcy : clientcx, mcy);
1901             }
1902         }
1903
1904         /* Calculate the other rectangles in each band */
1905         if (infoPtr->dwStyle & CCS_VERT) {
1906             REBAR_CalcVertBand (infoPtr, 0, infoPtr->uNumBands,
1907                                 notify);
1908         }
1909         else {
1910             REBAR_CalcHorzBand (infoPtr, 0, infoPtr->uNumBands,
1911                                 notify);
1912         }
1913     }
1914
1915     /* ******* End Phase 3 - adjust all bands for width full ******* */
1916
1917     /* now compute size of Rebar itself */
1918     infoPtr->oldSize = infoPtr->calcSize;
1919     if (infoPtr->uNumBands == 0) {
1920         /* we have no bands, so make size the size of client */
1921         x = clientcx;
1922         y = clientcy;
1923     }
1924     if (infoPtr->dwStyle & CCS_VERT) {
1925         if( x < REBAR_MINSIZE )
1926             x = REBAR_MINSIZE;
1927         infoPtr->calcSize.cx = x;
1928         infoPtr->calcSize.cy = clientcy;
1929         TRACE("vert, notify=%d, x=%d, origheight=%d\n",
1930               notify, x, origheight);
1931         if (notify && (x != origheight)) infoPtr->fStatus |= NTF_HGHTCHG;
1932     }
1933     else {
1934         if( y < REBAR_MINSIZE )
1935             y = REBAR_MINSIZE;
1936         infoPtr->calcSize.cx = clientcx;
1937         infoPtr->calcSize.cy = y;
1938         TRACE("horz, notify=%d, y=%d, origheight=%d\n",
1939               notify, y, origheight);
1940         if (notify && (y != origheight)) infoPtr->fStatus |= NTF_HGHTCHG;
1941     }
1942
1943     REBAR_DumpBand (infoPtr);
1944
1945     REBAR_MoveChildWindows (infoPtr, 0, infoPtr->uNumBands);
1946
1947     REBAR_ForceResize (infoPtr);
1948 }
1949
1950
1951 static VOID
1952 REBAR_ValidateBand (REBAR_INFO *infoPtr, REBAR_BAND *lpBand)
1953      /* Function:  This routine evaluates the band specs supplied */
1954      /*  by the user and updates the following 5 fields in        */
1955      /*  the internal band structure: cxHeader, lcx, lcy, hcx, hcy*/
1956 {
1957     UINT header=0;
1958     UINT textheight=0;
1959     UINT i, nonfixed;
1960     REBAR_BAND *tBand;
1961
1962     lpBand->fStatus = 0;
1963     lpBand->lcx = 0;
1964     lpBand->lcy = 0;
1965     lpBand->ccx = 0;
1966     lpBand->ccy = 0;
1967     lpBand->hcx = 0;
1968     lpBand->hcy = 0;
1969
1970     /* Data comming in from users into the cx... and cy... fields  */
1971     /* may be bad, just garbage, because the user never clears     */
1972     /* the fields. RB_{SET|INSERT}BAND{A|W} just passes the data   */
1973     /* along if the fields exist in the input area. Here we must   */
1974     /* determine if the data is valid. I have no idea how MS does  */
1975     /* the validation, but it does because the RB_GETBANDINFO      */
1976     /* returns a 0 when I know the sample program passed in an     */
1977     /* address. Here I will use the algorithim that if the value   */
1978     /* is greater than 65535 then it is bad and replace it with    */
1979     /* a zero. Feel free to improve the algorithim.  -  GA 12/2000 */
1980     if (lpBand->cxMinChild > 65535) lpBand->cxMinChild = 0;
1981     if (lpBand->cyMinChild > 65535) lpBand->cyMinChild = 0;
1982     if (lpBand->cx         > 65535) lpBand->cx         = 0;
1983     if (lpBand->cyChild    > 65535) lpBand->cyChild    = 0;
1984     if (lpBand->cyMaxChild > 65535) lpBand->cyMaxChild = 0;
1985     if (lpBand->cyIntegral > 65535) lpBand->cyIntegral = 0;
1986     if (lpBand->cxIdeal    > 65535) lpBand->cxIdeal    = 0;
1987     if (lpBand->cxHeader   > 65535) lpBand->cxHeader   = 0;
1988
1989     /* FIXME: probably should only set NEEDS_LAYOUT flag when */
1990     /*        values change. Till then always set it.         */
1991     TRACE("setting NEEDS_LAYOUT\n");
1992     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
1993
1994     /* Header is where the image, text and gripper exist  */
1995     /* in the band and preceed the child window.          */
1996
1997     /* count number of non-FIXEDSIZE and non-Hidden bands */
1998     nonfixed = 0;
1999     for (i=0; i<infoPtr->uNumBands; i++){
2000         tBand = &infoPtr->bands[i];
2001         if (!HIDDENBAND(tBand) && !(tBand->fStyle & RBBS_FIXEDSIZE))
2002             nonfixed++;
2003     }
2004
2005     /* calculate gripper rectangle */
2006     if (  (!(lpBand->fStyle & RBBS_NOGRIPPER)) &&
2007           ( (lpBand->fStyle & RBBS_GRIPPERALWAYS) ||
2008             ( !(lpBand->fStyle & RBBS_FIXEDSIZE) && (nonfixed > 1)))
2009        ) {
2010         lpBand->fStatus |= HAS_GRIPPER;
2011         if (infoPtr->dwStyle & CCS_VERT)
2012             if (infoPtr->dwStyle & RBS_VERTICALGRIPPER)
2013                 header += (GRIPPER_HEIGHT + REBAR_PRE_GRIPPER);
2014             else
2015                 header += (GRIPPER_WIDTH + REBAR_PRE_GRIPPER);
2016         else
2017             header += (REBAR_PRE_GRIPPER + GRIPPER_WIDTH);
2018         /* Always have 4 pixels before anything else */
2019         header += REBAR_ALWAYS_SPACE;
2020     }
2021
2022     /* image is visible */
2023     if ((lpBand->fMask & RBBIM_IMAGE) && (infoPtr->himl)) {
2024         lpBand->fStatus |= HAS_IMAGE;
2025         if (infoPtr->dwStyle & CCS_VERT) {
2026            header += (infoPtr->imageSize.cy + REBAR_POST_IMAGE);
2027            lpBand->lcy = infoPtr->imageSize.cx + 2;
2028         }
2029         else {
2030            header += (infoPtr->imageSize.cx + REBAR_POST_IMAGE);
2031            lpBand->lcy = infoPtr->imageSize.cy + 2;
2032         }
2033     }
2034
2035     /* text is visible */
2036     if ((lpBand->fMask & RBBIM_TEXT) && (lpBand->lpText) &&
2037         !(lpBand->fStyle & RBBS_HIDETITLE)) {
2038         HDC hdc = GetDC (0);
2039         HFONT hOldFont = SelectObject (hdc, infoPtr->hFont);
2040         SIZE size;
2041
2042         lpBand->fStatus |= HAS_TEXT;
2043         GetTextExtentPoint32W (hdc, lpBand->lpText,
2044                                lstrlenW (lpBand->lpText), &size);
2045         header += ((infoPtr->dwStyle & CCS_VERT) ? (size.cy + REBAR_POST_TEXT) : (size.cx + REBAR_POST_TEXT));
2046         textheight = (infoPtr->dwStyle & CCS_VERT) ? 0 : size.cy;
2047
2048         SelectObject (hdc, hOldFont);
2049         ReleaseDC (0, hdc);
2050     }
2051
2052     /* if no gripper but either image or text, then leave space */
2053     if ((lpBand->fStatus & (HAS_IMAGE | HAS_TEXT)) &&
2054         !(lpBand->fStatus & HAS_GRIPPER)) {
2055         header += REBAR_ALWAYS_SPACE;
2056     }
2057
2058     /* check if user overrode the header value */
2059     if (!(lpBand->fMask & RBBIM_HEADERSIZE))
2060         lpBand->cxHeader = header;
2061
2062
2063     /* Now compute minimum size of child window */
2064     lpBand->offChild.cx = 0;
2065     lpBand->offChild.cy = 0;
2066     lpBand->lcy = textheight;
2067     lpBand->ccy = lpBand->lcy;
2068     if (lpBand->fMask & RBBIM_CHILDSIZE) {
2069         lpBand->lcx = lpBand->cxMinChild;
2070
2071         /* Set the .cy values for CHILDSIZE case */
2072         lpBand->lcy = max(lpBand->lcy, lpBand->cyMinChild);
2073         lpBand->ccy = lpBand->lcy;
2074         lpBand->hcy = lpBand->lcy;
2075         if (lpBand->cyMaxChild != 0xffffffff) {
2076             lpBand->hcy = lpBand->cyMaxChild;
2077         }
2078         if (lpBand->cyChild != 0xffffffff)
2079             lpBand->ccy = max (lpBand->cyChild, lpBand->lcy);
2080
2081         TRACE("_CHILDSIZE\n");
2082     }
2083     if (lpBand->fMask & RBBIM_SIZE) {
2084         lpBand->hcx = max (lpBand->cx-lpBand->cxHeader, lpBand->lcx);
2085         TRACE("_SIZE\n");
2086     }
2087     else
2088         lpBand->hcx = lpBand->lcx;
2089     lpBand->ccx = lpBand->hcx;
2090
2091     /* make ->.cx include header size for _Layout */
2092     lpBand->lcx += lpBand->cxHeader;
2093     lpBand->ccx += lpBand->cxHeader;
2094     lpBand->hcx += lpBand->cxHeader;
2095
2096 }
2097
2098 static BOOL
2099 REBAR_CommonSetupBand (HWND hwnd, LPREBARBANDINFOA lprbbi, REBAR_BAND *lpBand)
2100      /* Function:  This routine copies the supplied values from   */
2101      /*  user input (lprbbi) to the internal band structure.      */
2102      /*  It returns true if something changed and false if not.   */
2103 {
2104     BOOL bChanged = FALSE;
2105
2106     lpBand->fMask |= lprbbi->fMask;
2107
2108     if( (lprbbi->fMask & RBBIM_STYLE) &&
2109         (lpBand->fStyle != lprbbi->fStyle ) )
2110     {
2111         lpBand->fStyle = lprbbi->fStyle;
2112         bChanged = TRUE;
2113     }
2114
2115     if( (lprbbi->fMask & RBBIM_COLORS) &&
2116        ( ( lpBand->clrFore != lprbbi->clrFore ) ||
2117          ( lpBand->clrBack != lprbbi->clrBack ) ) )
2118     {
2119         lpBand->clrFore = lprbbi->clrFore;
2120         lpBand->clrBack = lprbbi->clrBack;
2121         bChanged = TRUE;
2122     }
2123
2124     if( (lprbbi->fMask & RBBIM_IMAGE) &&
2125        ( lpBand->iImage != lprbbi->iImage ) )
2126     {
2127         lpBand->iImage = lprbbi->iImage;
2128         bChanged = TRUE;
2129     }
2130
2131     if( (lprbbi->fMask & RBBIM_CHILD) &&
2132        (lprbbi->hwndChild != lpBand->hwndChild ) )
2133     {
2134         if (lprbbi->hwndChild) {
2135             lpBand->hwndChild = lprbbi->hwndChild;
2136             lpBand->hwndPrevParent =
2137                 SetParent (lpBand->hwndChild, hwnd);
2138             /* below in trace fro WinRAR */
2139             ShowWindow(lpBand->hwndChild, SW_SHOWNOACTIVATE | SW_SHOWNORMAL);
2140             /* above in trace fro WinRAR */
2141         }
2142         else {
2143             TRACE("child: %p  prev parent: %p\n",
2144                    lpBand->hwndChild, lpBand->hwndPrevParent);
2145             lpBand->hwndChild = 0;
2146             lpBand->hwndPrevParent = 0;
2147         }
2148         bChanged = TRUE;
2149     }
2150
2151     if( (lprbbi->fMask & RBBIM_CHILDSIZE) &&
2152         ( (lpBand->cxMinChild != lprbbi->cxMinChild) ||
2153           (lpBand->cyMinChild != lprbbi->cyMinChild ) ||
2154           ( (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) &&
2155             ( (lpBand->cyChild    != lprbbi->cyChild ) ||
2156               (lpBand->cyMaxChild != lprbbi->cyMaxChild ) ||
2157               (lpBand->cyIntegral != lprbbi->cyIntegral ) ) ) ||
2158           ( (lprbbi->cbSize < sizeof (REBARBANDINFOA)) &&
2159             ( (lpBand->cyChild || 
2160                lpBand->cyMaxChild || 
2161                lpBand->cyIntegral ) ) ) ) )
2162     {
2163         lpBand->cxMinChild = lprbbi->cxMinChild;
2164         lpBand->cyMinChild = lprbbi->cyMinChild;
2165         if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
2166             lpBand->cyChild    = lprbbi->cyChild;
2167             lpBand->cyMaxChild = lprbbi->cyMaxChild;
2168             lpBand->cyIntegral = lprbbi->cyIntegral;
2169         }
2170         else { /* special case - these should be zeroed out since   */
2171                /* RBBIM_CHILDSIZE added these in WIN32_IE >= 0x0400 */
2172             lpBand->cyChild    = 0;
2173             lpBand->cyMaxChild = 0;
2174             lpBand->cyIntegral = 0;
2175         }
2176         bChanged = TRUE;
2177     }
2178
2179     if( (lprbbi->fMask & RBBIM_SIZE) &&
2180         (lpBand->cx != lprbbi->cx ) )
2181     {
2182         lpBand->cx = lprbbi->cx;
2183         bChanged = TRUE;
2184     }
2185
2186     if( (lprbbi->fMask & RBBIM_BACKGROUND) &&
2187        ( lpBand->hbmBack != lprbbi->hbmBack ) )
2188     {
2189         lpBand->hbmBack = lprbbi->hbmBack;
2190         bChanged = TRUE;
2191     }
2192
2193     if( (lprbbi->fMask & RBBIM_ID) &&
2194         (lpBand->wID != lprbbi->wID ) )
2195     {
2196         lpBand->wID = lprbbi->wID;
2197         bChanged = TRUE;
2198     }
2199
2200     /* check for additional data */
2201     if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
2202         if( (lprbbi->fMask & RBBIM_IDEALSIZE) &&
2203             ( lpBand->cxIdeal != lprbbi->cxIdeal ) )
2204         {
2205             lpBand->cxIdeal = lprbbi->cxIdeal;
2206             bChanged = TRUE;
2207         }
2208
2209         if( (lprbbi->fMask & RBBIM_LPARAM) &&
2210             (lpBand->lParam != lprbbi->lParam ) )
2211         {
2212             lpBand->lParam = lprbbi->lParam;
2213             bChanged = TRUE;
2214         }
2215
2216         if( (lprbbi->fMask & RBBIM_HEADERSIZE) &&
2217             (lpBand->cxHeader != lprbbi->cxHeader ) )
2218         {
2219             lpBand->cxHeader = lprbbi->cxHeader;
2220             bChanged = TRUE;
2221         }
2222     }
2223
2224     return bChanged;
2225 }
2226
2227 static LRESULT
2228 REBAR_InternalEraseBkGnd (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam, RECT *clip)
2229      /* Function:  This erases the background rectangle by drawing  */
2230      /*  each band with its background color (or the default) and   */
2231      /*  draws each bands right separator if necessary. The row     */
2232      /*  separators are drawn on the first band of the next row.    */
2233 {
2234     REBAR_BAND *lpBand;
2235     UINT i;
2236     INT oldrow;
2237     HDC hdc = (HDC)wParam;
2238     RECT rect;
2239     COLORREF old = CLR_NONE, new;
2240
2241     oldrow = -1;
2242     for(i=0; i<infoPtr->uNumBands; i++) {
2243         lpBand = &infoPtr->bands[i];
2244         if (HIDDENBAND(lpBand)) continue;
2245
2246         /* draw band separator between rows */
2247         if (lpBand->iRow != oldrow) {
2248             oldrow = lpBand->iRow;
2249             if (lpBand->fDraw & DRAW_BOTTOMSEP) {
2250                 RECT rcRowSep;
2251                 rcRowSep = lpBand->rcBand;
2252                 if (infoPtr->dwStyle & CCS_VERT) {
2253                     rcRowSep.right += SEP_WIDTH_SIZE;
2254                     rcRowSep.bottom = infoPtr->calcSize.cy;
2255                     DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_RIGHT);
2256                 }
2257                 else {
2258                     rcRowSep.bottom += SEP_WIDTH_SIZE;
2259                     rcRowSep.right = infoPtr->calcSize.cx;
2260                     DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_BOTTOM);
2261                 }
2262                 TRACE ("drawing band separator bottom (%ld,%ld)-(%ld,%ld)\n",
2263                        rcRowSep.left, rcRowSep.top,
2264                        rcRowSep.right, rcRowSep.bottom);
2265             }
2266         }
2267
2268         /* draw band separator between bands in a row */
2269         if (lpBand->fDraw & DRAW_RIGHTSEP) {
2270             RECT rcSep;
2271             rcSep = lpBand->rcBand;
2272             if (infoPtr->dwStyle & CCS_VERT) {
2273                 rcSep.bottom += SEP_WIDTH_SIZE;
2274                 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_BOTTOM);
2275             }
2276             else {
2277                 rcSep.right += SEP_WIDTH_SIZE;
2278                 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_RIGHT);
2279             }
2280             TRACE("drawing band separator right (%ld,%ld)-(%ld,%ld)\n",
2281                   rcSep.left, rcSep.top, rcSep.right, rcSep.bottom);
2282         }
2283
2284         /* draw the actual background */
2285         if (lpBand->clrBack != CLR_NONE) {
2286             new = (lpBand->clrBack == CLR_DEFAULT) ? infoPtr->clrBtnFace :
2287                     lpBand->clrBack;
2288 #if GLATESTING
2289             /* testing only - make background green to see it */
2290             new = RGB(0,128,0);
2291 #endif
2292         }
2293         else {
2294             /* In the absence of documentation for Rebar vs. CLR_NONE,
2295              * we will use the default BtnFace color. Note documentation
2296              * exists for Listview and Imagelist.
2297              */
2298             new = infoPtr->clrBtnFace;
2299 #if GLATESTING
2300             /* testing only - make background green to see it */
2301             new = RGB(0,128,0);
2302 #endif
2303         }
2304         old = SetBkColor (hdc, new);
2305
2306         rect = lpBand->rcBand;
2307         TRACE("%s background color=0x%06lx, band (%ld,%ld)-(%ld,%ld), clip (%ld,%ld)-(%ld,%ld)\n",
2308               (lpBand->clrBack == CLR_NONE) ? "none" :
2309                 ((lpBand->clrBack == CLR_DEFAULT) ? "dft" : ""),
2310               GetBkColor(hdc),
2311               lpBand->rcBand.left,lpBand->rcBand.top,
2312               lpBand->rcBand.right,lpBand->rcBand.bottom,
2313               clip->left, clip->top,
2314               clip->right, clip->bottom);
2315         ExtTextOutA (hdc, 0, 0, ETO_OPAQUE, &rect, NULL, 0, 0);
2316         if (lpBand->clrBack != CLR_NONE)
2317             SetBkColor (hdc, old);
2318     }
2319     return TRUE;
2320 }
2321
2322 static void
2323 REBAR_InternalHitTest (REBAR_INFO *infoPtr, const LPPOINT lpPt, UINT *pFlags, INT *pBand)
2324 {
2325     REBAR_BAND *lpBand;
2326     RECT rect;
2327     UINT  iCount;
2328
2329     GetClientRect (infoPtr->hwndSelf, &rect);
2330
2331     *pFlags = RBHT_NOWHERE;
2332     if (PtInRect (&rect, *lpPt))
2333     {
2334         if (infoPtr->uNumBands == 0) {
2335             *pFlags = RBHT_NOWHERE;
2336             if (pBand)
2337                 *pBand = -1;
2338             TRACE("NOWHERE\n");
2339             return;
2340         }
2341         else {
2342             /* somewhere inside */
2343             for (iCount = 0; iCount < infoPtr->uNumBands; iCount++) {
2344                 lpBand = &infoPtr->bands[iCount];
2345                 if (HIDDENBAND(lpBand)) continue;
2346                 if (PtInRect (&lpBand->rcBand, *lpPt)) {
2347                     if (pBand)
2348                         *pBand = iCount;
2349                     if (PtInRect (&lpBand->rcGripper, *lpPt)) {
2350                         *pFlags = RBHT_GRABBER;
2351                         TRACE("ON GRABBER %d\n", iCount);
2352                         return;
2353                     }
2354                     else if (PtInRect (&lpBand->rcCapImage, *lpPt)) {
2355                         *pFlags = RBHT_CAPTION;
2356                         TRACE("ON CAPTION %d\n", iCount);
2357                         return;
2358                     }
2359                     else if (PtInRect (&lpBand->rcCapText, *lpPt)) {
2360                         *pFlags = RBHT_CAPTION;
2361                         TRACE("ON CAPTION %d\n", iCount);
2362                         return;
2363                     }
2364                     else if (PtInRect (&lpBand->rcChild, *lpPt)) {
2365                         *pFlags = RBHT_CLIENT;
2366                         TRACE("ON CLIENT %d\n", iCount);
2367                         return;
2368                     }
2369                     else if (PtInRect (&lpBand->rcChevron, *lpPt)) {
2370                         *pFlags = RBHT_CHEVRON;
2371                         TRACE("ON CHEVRON %d\n", iCount);
2372                         return;
2373                     }
2374                     else {
2375                         *pFlags = RBHT_NOWHERE;
2376                         TRACE("NOWHERE %d\n", iCount);
2377                         return;
2378                     }
2379                 }
2380             }
2381
2382             *pFlags = RBHT_NOWHERE;
2383             if (pBand)
2384                 *pBand = -1;
2385
2386             TRACE("NOWHERE\n");
2387             return;
2388         }
2389     }
2390     else {
2391         *pFlags = RBHT_NOWHERE;
2392         if (pBand)
2393             *pBand = -1;
2394         TRACE("NOWHERE\n");
2395         return;
2396     }
2397 }
2398
2399
2400 static INT
2401 REBAR_Shrink (REBAR_INFO *infoPtr, REBAR_BAND *band, INT movement, INT i)
2402      /* Function:  This attempts to shrink the given band by the  */
2403      /*  the amount in "movement". A shrink to the left is indi-  */
2404      /*  cated by "movement" being negative. "i" is merely the    */
2405      /*  band index for trace messages.                           */
2406 {
2407     INT Leadjust, Readjust, avail, ret;
2408
2409     /* Note: a left drag is indicated by "movement" being negative.  */
2410     /*       Similarly, a right drag is indicated by "movement"      */
2411     /*       being positive. "movement" should never be 0, but if    */
2412     /*       it is then the band does not move.                      */
2413
2414     avail = rcBw(band) - band->lcx;
2415
2416     /* now compute the Left End adjustment factor and Right End */
2417     /* adjustment factor. They may be different if shrinking.   */
2418     if (avail <= 0) {
2419         /* if this band is not shrinkable, then just move it */
2420         Leadjust = Readjust = movement;
2421         ret = movement;
2422     }
2423     else {
2424         if (movement < 0) {
2425             /* Drag to left */
2426             if (avail <= abs(movement)) {
2427                 Readjust = movement;
2428                 Leadjust = movement + avail;
2429                 ret = Leadjust;
2430             }
2431             else {
2432                 Readjust = movement;
2433                 Leadjust = 0;
2434                 ret = 0;
2435             }
2436         }
2437         else {
2438             /* Drag to right */
2439             if (avail <= abs(movement)) {
2440                 Leadjust = movement;
2441                 Readjust = movement - avail;
2442                 ret = Readjust;
2443             }
2444             else {
2445                 Leadjust = movement;
2446                 Readjust = 0;
2447                 ret = 0;
2448             }
2449         }
2450     }
2451
2452     /* Reasonability Check */
2453     if (rcBlt(band) + Leadjust < 0) {
2454         ERR("adjustment will fail, band %d: left=%d, right=%d, move=%d, rtn=%d\n",
2455             i, Leadjust, Readjust, movement, ret);
2456     }
2457
2458     LEADJ(band, Leadjust);
2459     READJ(band, Readjust);
2460
2461     TRACE("band %d:  left=%d, right=%d, move=%d, rtn=%d, rcBand=(%ld,%ld)-(%ld,%ld)\n",
2462           i, Leadjust, Readjust, movement, ret,
2463           band->rcBand.left, band->rcBand.top,
2464           band->rcBand.right, band->rcBand.bottom);
2465     return ret;
2466 }
2467
2468
2469 static void
2470 REBAR_HandleLRDrag (REBAR_INFO *infoPtr, POINTS *ptsmove)
2471      /* Function:  This will implement the functionality of a     */
2472      /*  Gripper drag within a row. It will not implement "out-   */
2473      /*  of-row" drags. (They are detected and handled in         */
2474      /*  REBAR_MouseMove.)                                        */
2475      /*  **** FIXME Switching order of bands in a row not   ****  */
2476      /*  ****       yet implemented.                        ****  */
2477 {
2478     REBAR_BAND *hitBand, *band, *mindBand, *maxdBand;
2479     RECT newrect;
2480     INT imindBand = -1, imaxdBand, ihitBand, i, movement;
2481     INT RHeaderSum = 0, LHeaderSum = 0;
2482     INT compress;
2483
2484     /* on first significant mouse movement, issue notify */
2485
2486     if (!(infoPtr->fStatus & BEGIN_DRAG_ISSUED)) {
2487         if (REBAR_Notify_NMREBAR (infoPtr, -1, RBN_BEGINDRAG)) {
2488             /* Notify returned TRUE - abort drag */
2489             infoPtr->dragStart.x = 0;
2490             infoPtr->dragStart.y = 0;
2491             infoPtr->dragNow = infoPtr->dragStart;
2492             infoPtr->iGrabbedBand = -1;
2493             ReleaseCapture ();
2494             return ;
2495         }
2496         infoPtr->fStatus |= BEGIN_DRAG_ISSUED;
2497     }
2498
2499     ihitBand = infoPtr->iGrabbedBand;
2500     hitBand = &infoPtr->bands[ihitBand];
2501     imaxdBand = ihitBand; /* to suppress warning message */
2502
2503     /* find all the bands in the row of the one whose Gripper was seized */
2504     for (i=0; i<infoPtr->uNumBands; i++) {
2505         band = &infoPtr->bands[i];
2506         if (HIDDENBAND(band)) continue;
2507         if (band->iRow == hitBand->iRow) {
2508             imaxdBand = i;
2509             if (imindBand == -1) imindBand = i;
2510             /* minimum size of each band is size of header plus            */
2511             /* size of minimum child plus offset of child from header plus */
2512             /* a one to separate each band.                                */
2513             if (i < ihitBand)
2514                 LHeaderSum += (band->lcx + SEP_WIDTH);
2515             else
2516                 RHeaderSum += (band->lcx + SEP_WIDTH);
2517
2518         }
2519     }
2520     if (RHeaderSum) RHeaderSum -= SEP_WIDTH; /* no separator after last band */
2521
2522     mindBand = &infoPtr->bands[imindBand];
2523     maxdBand = &infoPtr->bands[imaxdBand];
2524
2525     if (imindBand == imaxdBand) return; /* nothing to drag against */
2526     if (imindBand == ihitBand) return; /* first band in row, can't drag */
2527
2528     /* limit movement to inside adjustable bands - Left */
2529     if ( (ptsmove->x < mindBand->rcBand.left) ||
2530          (ptsmove->x > maxdBand->rcBand.right) ||
2531          (ptsmove->y < mindBand->rcBand.top) ||
2532          (ptsmove->y > maxdBand->rcBand.bottom))
2533         return; /* should swap bands */
2534
2535     if (infoPtr->dwStyle & CCS_VERT)
2536         movement = ptsmove->y - ((hitBand->rcBand.top+REBAR_PRE_GRIPPER) -
2537                              infoPtr->ihitoffset);
2538     else
2539         movement = ptsmove->x - ((hitBand->rcBand.left+REBAR_PRE_GRIPPER) -
2540                              infoPtr->ihitoffset);
2541     infoPtr->dragNow = *ptsmove;
2542
2543     TRACE("before: movement=%d (%d,%d), imindBand=%d, ihitBand=%d, imaxdBand=%d, LSum=%d, RSum=%d\n",
2544           movement, ptsmove->x, ptsmove->y, imindBand, ihitBand,
2545           imaxdBand, LHeaderSum, RHeaderSum);
2546     REBAR_DumpBand (infoPtr);
2547
2548     if (movement < 0) {
2549
2550         /* ***  Drag left/up *** */
2551         compress = rcBlt(hitBand) - rcBlt(mindBand) -
2552                    LHeaderSum;
2553         if (compress < abs(movement)) {
2554             TRACE("limiting left drag, was %d changed to %d\n",
2555                   movement, -compress);
2556             movement = -compress;
2557         }
2558
2559         for (i=ihitBand; i>=imindBand; i--) {
2560             band = &infoPtr->bands[i];
2561             if (HIDDENBAND(band)) continue;
2562             if (i == ihitBand) {
2563                 LEADJ(band, movement);
2564             }
2565             else
2566                 movement = REBAR_Shrink (infoPtr, band, movement, i);
2567             band->ccx = rcBw(band);
2568         }
2569     }
2570     else {
2571         BOOL first = TRUE;
2572
2573         /* ***  Drag right/down *** */
2574         compress = rcBrb(maxdBand) - rcBlt(hitBand) -
2575                    RHeaderSum;
2576         if (compress < abs(movement)) {
2577             TRACE("limiting right drag, was %d changed to %d\n",
2578                   movement, compress);
2579             movement = compress;
2580         }
2581         for (i=ihitBand-1; i<=imaxdBand; i++) {
2582             band = &infoPtr->bands[i];
2583             if (HIDDENBAND(band)) continue;
2584             if (first) {
2585                 first = FALSE;
2586                 READJ(band, movement);
2587             }
2588             else
2589                 movement = REBAR_Shrink (infoPtr, band, movement, i);
2590             band->ccx = rcBw(band);
2591         }
2592     }
2593
2594     /* recompute all rectangles */
2595     if (infoPtr->dwStyle & CCS_VERT) {
2596         REBAR_CalcVertBand (infoPtr, imindBand, imaxdBand+1,
2597                             FALSE);
2598     }
2599     else {
2600         REBAR_CalcHorzBand (infoPtr, imindBand, imaxdBand+1,
2601                             FALSE);
2602     }
2603
2604     TRACE("bands after adjustment, see band # %d, %d\n",
2605           imindBand, imaxdBand);
2606     REBAR_DumpBand (infoPtr);
2607
2608     SetRect (&newrect,
2609              mindBand->rcBand.left,
2610              mindBand->rcBand.top,
2611              maxdBand->rcBand.right,
2612              maxdBand->rcBand.bottom);
2613
2614     REBAR_MoveChildWindows (infoPtr, imindBand, imaxdBand+1);
2615
2616     InvalidateRect (infoPtr->hwndSelf, &newrect, TRUE);
2617     UpdateWindow (infoPtr->hwndSelf);
2618
2619 }
2620
2621
2622
2623 /* << REBAR_BeginDrag >> */
2624
2625
2626 static LRESULT
2627 REBAR_DeleteBand (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2628 {
2629     UINT uBand = (UINT)wParam;
2630     HWND childhwnd = 0;
2631     REBAR_BAND *lpBand;
2632
2633     if (uBand >= infoPtr->uNumBands)
2634         return FALSE;
2635
2636     TRACE("deleting band %u!\n", uBand);
2637     lpBand = &infoPtr->bands[uBand];
2638     REBAR_Notify_NMREBAR (infoPtr, uBand, RBN_DELETINGBAND);
2639
2640     if (infoPtr->uNumBands == 1) {
2641         TRACE(" simple delete!\n");
2642         if ((lpBand->fMask & RBBIM_CHILD) && lpBand->hwndChild)
2643             childhwnd = lpBand->hwndChild;
2644         Free (infoPtr->bands);
2645         infoPtr->bands = NULL;
2646         infoPtr->uNumBands = 0;
2647     }
2648     else {
2649         REBAR_BAND *oldBands = infoPtr->bands;
2650         TRACE("complex delete! [uBand=%u]\n", uBand);
2651
2652         if ((lpBand->fMask & RBBIM_CHILD) && lpBand->hwndChild)
2653             childhwnd = lpBand->hwndChild;
2654
2655         infoPtr->uNumBands--;
2656         infoPtr->bands = Alloc (sizeof (REBAR_BAND) * infoPtr->uNumBands);
2657         if (uBand > 0) {
2658             memcpy (&infoPtr->bands[0], &oldBands[0],
2659                     uBand * sizeof(REBAR_BAND));
2660         }
2661
2662         if (uBand < infoPtr->uNumBands) {
2663             memcpy (&infoPtr->bands[uBand], &oldBands[uBand+1],
2664                     (infoPtr->uNumBands - uBand) * sizeof(REBAR_BAND));
2665         }
2666
2667         Free (oldBands);
2668     }
2669
2670     if (childhwnd)
2671         ShowWindow (childhwnd, SW_HIDE);
2672
2673     REBAR_Notify_NMREBAR (infoPtr, -1, RBN_DELETEDBAND);
2674
2675     /* if only 1 band left the re-validate to possible eliminate gripper */
2676     if (infoPtr->uNumBands == 1)
2677       REBAR_ValidateBand (infoPtr, &infoPtr->bands[0]);
2678
2679     TRACE("setting NEEDS_LAYOUT\n");
2680     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
2681     infoPtr->fStatus |= RESIZE_ANYHOW;
2682     REBAR_Layout (infoPtr, NULL, TRUE, FALSE);
2683
2684     return TRUE;
2685 }
2686
2687
2688 /* << REBAR_DragMove >> */
2689 /* << REBAR_EndDrag >> */
2690
2691
2692 static LRESULT
2693 REBAR_GetBandBorders (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2694 {
2695     LPRECT lpRect = (LPRECT)lParam;
2696     REBAR_BAND *lpBand;
2697
2698     if (!lParam)
2699         return 0;
2700     if ((UINT)wParam >= infoPtr->uNumBands)
2701         return 0;
2702
2703     lpBand = &infoPtr->bands[(UINT)wParam];
2704
2705     /* FIXME - the following values were determined by experimentation */
2706     /* with the REBAR Control Spy. I have guesses as to what the 4 and */
2707     /* 1 are, but I am not sure. There doesn't seem to be any actual   */
2708     /* difference in size of the control area with and without the     */
2709     /* style.  -  GA                                                   */
2710     if (infoPtr->dwStyle & RBS_BANDBORDERS) {
2711         if (infoPtr->dwStyle & CCS_VERT) {
2712             lpRect->left = 1;
2713             lpRect->top = lpBand->cxHeader + 4;
2714             lpRect->right = 1;
2715             lpRect->bottom = 0;
2716         }
2717         else {
2718             lpRect->left = lpBand->cxHeader + 4;
2719             lpRect->top = 1;
2720             lpRect->right = 0;
2721             lpRect->bottom = 1;
2722         }
2723     }
2724     else {
2725         lpRect->left = lpBand->cxHeader;
2726     }
2727     return 0;
2728 }
2729
2730
2731 inline static LRESULT
2732 REBAR_GetBandCount (REBAR_INFO *infoPtr)
2733 {
2734     TRACE("band count %u!\n", infoPtr->uNumBands);
2735
2736     return infoPtr->uNumBands;
2737 }
2738
2739
2740 static LRESULT
2741 REBAR_GetBandInfoA (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2742 {
2743     LPREBARBANDINFOA lprbbi = (LPREBARBANDINFOA)lParam;
2744     REBAR_BAND *lpBand;
2745
2746     if (lprbbi == NULL)
2747         return FALSE;
2748     if (lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
2749         return FALSE;
2750     if ((UINT)wParam >= infoPtr->uNumBands)
2751         return FALSE;
2752
2753     TRACE("index %u\n", (UINT)wParam);
2754
2755     /* copy band information */
2756     lpBand = &infoPtr->bands[(UINT)wParam];
2757
2758     if (lprbbi->fMask & RBBIM_STYLE)
2759         lprbbi->fStyle = lpBand->fStyle;
2760
2761     if (lprbbi->fMask & RBBIM_COLORS) {
2762         lprbbi->clrFore = lpBand->clrFore;
2763         lprbbi->clrBack = lpBand->clrBack;
2764         if (lprbbi->clrBack == CLR_DEFAULT)
2765             lprbbi->clrBack = infoPtr->clrBtnFace;
2766     }
2767
2768     if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
2769       if (lpBand->lpText && (lpBand->fMask & RBBIM_TEXT))
2770       {
2771           if (!WideCharToMultiByte( CP_ACP, 0, lpBand->lpText, -1,
2772                                     lprbbi->lpText, lprbbi->cch, NULL, NULL ))
2773               lprbbi->lpText[lprbbi->cch-1] = 0;
2774       }
2775       else
2776         *lprbbi->lpText = 0;
2777     }
2778
2779     if (lprbbi->fMask & RBBIM_IMAGE) {
2780       if (lpBand->fMask & RBBIM_IMAGE)
2781         lprbbi->iImage = lpBand->iImage;
2782       else
2783         lprbbi->iImage = -1;
2784     }
2785
2786     if (lprbbi->fMask & RBBIM_CHILD)
2787         lprbbi->hwndChild = lpBand->hwndChild;
2788
2789     if (lprbbi->fMask & RBBIM_CHILDSIZE) {
2790         lprbbi->cxMinChild = lpBand->cxMinChild;
2791         lprbbi->cyMinChild = lpBand->cyMinChild;
2792         if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
2793             lprbbi->cyChild    = lpBand->cyChild;
2794             lprbbi->cyMaxChild = lpBand->cyMaxChild;
2795             lprbbi->cyIntegral = lpBand->cyIntegral;
2796         }
2797     }
2798
2799     if (lprbbi->fMask & RBBIM_SIZE)
2800         lprbbi->cx = lpBand->cx;
2801
2802     if (lprbbi->fMask & RBBIM_BACKGROUND)
2803         lprbbi->hbmBack = lpBand->hbmBack;
2804
2805     if (lprbbi->fMask & RBBIM_ID)
2806         lprbbi->wID = lpBand->wID;
2807
2808     /* check for additional data */
2809     if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
2810         if (lprbbi->fMask & RBBIM_IDEALSIZE)
2811             lprbbi->cxIdeal = lpBand->cxIdeal;
2812
2813         if (lprbbi->fMask & RBBIM_LPARAM)
2814             lprbbi->lParam = lpBand->lParam;
2815
2816         if (lprbbi->fMask & RBBIM_HEADERSIZE)
2817             lprbbi->cxHeader = lpBand->cxHeader;
2818     }
2819
2820     REBAR_DumpBandInfo (lprbbi);
2821
2822     return TRUE;
2823 }
2824
2825
2826 static LRESULT
2827 REBAR_GetBandInfoW (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2828 {
2829     LPREBARBANDINFOW lprbbi = (LPREBARBANDINFOW)lParam;
2830     REBAR_BAND *lpBand;
2831
2832     if (lprbbi == NULL)
2833         return FALSE;
2834     if (lprbbi->cbSize < REBARBANDINFOW_V3_SIZE)
2835         return FALSE;
2836     if ((UINT)wParam >= infoPtr->uNumBands)
2837         return FALSE;
2838
2839     TRACE("index %u\n", (UINT)wParam);
2840
2841     /* copy band information */
2842     lpBand = &infoPtr->bands[(UINT)wParam];
2843
2844     if (lprbbi->fMask & RBBIM_STYLE)
2845         lprbbi->fStyle = lpBand->fStyle;
2846
2847     if (lprbbi->fMask & RBBIM_COLORS) {
2848         lprbbi->clrFore = lpBand->clrFore;
2849         lprbbi->clrBack = lpBand->clrBack;
2850         if (lprbbi->clrBack == CLR_DEFAULT)
2851             lprbbi->clrBack = infoPtr->clrBtnFace;
2852     }
2853
2854     if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
2855       if (lpBand->lpText && (lpBand->fMask & RBBIM_TEXT))
2856         lstrcpynW (lprbbi->lpText, lpBand->lpText, lprbbi->cch);
2857       else
2858         *lprbbi->lpText = 0;
2859     }
2860
2861     if (lprbbi->fMask & RBBIM_IMAGE) {
2862       if (lpBand->fMask & RBBIM_IMAGE)
2863         lprbbi->iImage = lpBand->iImage;
2864       else
2865         lprbbi->iImage = -1;
2866     }
2867
2868     if (lprbbi->fMask & RBBIM_CHILD)
2869         lprbbi->hwndChild = lpBand->hwndChild;
2870
2871     if (lprbbi->fMask & RBBIM_CHILDSIZE) {
2872         lprbbi->cxMinChild = lpBand->cxMinChild;
2873         lprbbi->cyMinChild = lpBand->cyMinChild;
2874         if (lprbbi->cbSize >= sizeof (REBARBANDINFOW)) {
2875             lprbbi->cyChild    = lpBand->cyChild;
2876             lprbbi->cyMaxChild = lpBand->cyMaxChild;
2877             lprbbi->cyIntegral = lpBand->cyIntegral;
2878         }
2879     }
2880
2881     if (lprbbi->fMask & RBBIM_SIZE)
2882         lprbbi->cx = lpBand->cx;
2883
2884     if (lprbbi->fMask & RBBIM_BACKGROUND)
2885         lprbbi->hbmBack = lpBand->hbmBack;
2886
2887     if (lprbbi->fMask & RBBIM_ID)
2888         lprbbi->wID = lpBand->wID;
2889
2890     /* check for additional data */
2891     if (lprbbi->cbSize >= sizeof (REBARBANDINFOW)) {
2892         if (lprbbi->fMask & RBBIM_IDEALSIZE)
2893             lprbbi->cxIdeal = lpBand->cxIdeal;
2894
2895         if (lprbbi->fMask & RBBIM_LPARAM)
2896             lprbbi->lParam = lpBand->lParam;
2897
2898         if (lprbbi->fMask & RBBIM_HEADERSIZE)
2899             lprbbi->cxHeader = lpBand->cxHeader;
2900     }
2901
2902     REBAR_DumpBandInfo ((LPREBARBANDINFOA)lprbbi);
2903
2904     return TRUE;
2905 }
2906
2907
2908 static LRESULT
2909 REBAR_GetBarHeight (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2910 {
2911     INT nHeight;
2912
2913     nHeight = (infoPtr->dwStyle & CCS_VERT) ? infoPtr->calcSize.cx : infoPtr->calcSize.cy;
2914
2915     TRACE("height = %d\n", nHeight);
2916
2917     return nHeight;
2918 }
2919
2920
2921 static LRESULT
2922 REBAR_GetBarInfo (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2923 {
2924     LPREBARINFO lpInfo = (LPREBARINFO)lParam;
2925
2926     if (lpInfo == NULL)
2927         return FALSE;
2928
2929     if (lpInfo->cbSize < sizeof (REBARINFO))
2930         return FALSE;
2931
2932     TRACE("getting bar info!\n");
2933
2934     if (infoPtr->himl) {
2935         lpInfo->himl = infoPtr->himl;
2936         lpInfo->fMask |= RBIM_IMAGELIST;
2937     }
2938
2939     return TRUE;
2940 }
2941
2942
2943 inline static LRESULT
2944 REBAR_GetBkColor (REBAR_INFO *infoPtr)
2945 {
2946     COLORREF clr = infoPtr->clrBk;
2947
2948     if (clr == CLR_DEFAULT)
2949       clr = infoPtr->clrBtnFace;
2950
2951     TRACE("background color 0x%06lx!\n", clr);
2952
2953     return clr;
2954 }
2955
2956
2957 /* << REBAR_GetColorScheme >> */
2958 /* << REBAR_GetDropTarget >> */
2959
2960
2961 static LRESULT
2962 REBAR_GetPalette (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2963 {
2964     FIXME("empty stub!\n");
2965
2966     return 0;
2967 }
2968
2969
2970 static LRESULT
2971 REBAR_GetRect (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
2972 {
2973     INT iBand = (INT)wParam;
2974     LPRECT lprc = (LPRECT)lParam;
2975     REBAR_BAND *lpBand;
2976
2977     if ((iBand < 0) && ((UINT)iBand >= infoPtr->uNumBands))
2978         return FALSE;
2979     if (!lprc)
2980         return FALSE;
2981
2982     lpBand = &infoPtr->bands[iBand];
2983     CopyRect (lprc, &lpBand->rcBand);
2984
2985     TRACE("band %d, (%ld,%ld)-(%ld,%ld)\n", iBand,
2986           lprc->left, lprc->top, lprc->right, lprc->bottom);
2987
2988     return TRUE;
2989 }
2990
2991
2992 inline static LRESULT
2993 REBAR_GetRowCount (REBAR_INFO *infoPtr)
2994 {
2995     TRACE("%u\n", infoPtr->uNumRows);
2996
2997     return infoPtr->uNumRows;
2998 }
2999
3000
3001 static LRESULT
3002 REBAR_GetRowHeight (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3003 {
3004     INT iRow = (INT)wParam;
3005     int j = 0, ret = 0;
3006     UINT i;
3007     REBAR_BAND *lpBand;
3008
3009     for (i=0; i<infoPtr->uNumBands; i++) {
3010         lpBand = &infoPtr->bands[i];
3011         if (HIDDENBAND(lpBand)) continue;
3012         if (lpBand->iRow != iRow) continue;
3013         if (infoPtr->dwStyle & CCS_VERT)
3014             j = lpBand->rcBand.right - lpBand->rcBand.left;
3015         else
3016             j = lpBand->rcBand.bottom - lpBand->rcBand.top;
3017         if (j > ret) ret = j;
3018     }
3019
3020     TRACE("row %d, height %d\n", iRow, ret);
3021
3022     return ret;
3023 }
3024
3025
3026 inline static LRESULT
3027 REBAR_GetTextColor (REBAR_INFO *infoPtr)
3028 {
3029     TRACE("text color 0x%06lx!\n", infoPtr->clrText);
3030
3031     return infoPtr->clrText;
3032 }
3033
3034
3035 inline static LRESULT
3036 REBAR_GetToolTips (REBAR_INFO *infoPtr)
3037 {
3038     return (LRESULT)infoPtr->hwndToolTip;
3039 }
3040
3041
3042 inline static LRESULT
3043 REBAR_GetUnicodeFormat (REBAR_INFO *infoPtr)
3044 {
3045     TRACE("%s hwnd=%p\n",
3046           infoPtr->bUnicode ? "TRUE" : "FALSE", infoPtr->hwndSelf);
3047
3048     return infoPtr->bUnicode;
3049 }
3050
3051
3052 inline static LRESULT
3053 REBAR_GetVersion (REBAR_INFO *infoPtr)
3054 {
3055     TRACE("version %d\n", infoPtr->iVersion);
3056     return infoPtr->iVersion;
3057 }
3058
3059
3060 static LRESULT
3061 REBAR_HitTest (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3062 {
3063     LPRBHITTESTINFO lprbht = (LPRBHITTESTINFO)lParam;
3064
3065     if (!lprbht)
3066         return -1;
3067
3068     REBAR_InternalHitTest (infoPtr, &lprbht->pt, &lprbht->flags, &lprbht->iBand);
3069
3070     return lprbht->iBand;
3071 }
3072
3073
3074 static LRESULT
3075 REBAR_IdToIndex (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3076 {
3077     UINT i;
3078
3079     if (infoPtr == NULL)
3080         return -1;
3081
3082     if (infoPtr->uNumBands < 1)
3083         return -1;
3084
3085     for (i = 0; i < infoPtr->uNumBands; i++) {
3086         if (infoPtr->bands[i].wID == (UINT)wParam) {
3087             TRACE("id %u is band %u found!\n", (UINT)wParam, i);
3088             return i;
3089         }
3090     }
3091
3092     TRACE("id %u is not found\n", (UINT)wParam);
3093     return -1;
3094 }
3095
3096
3097 static LRESULT
3098 REBAR_InsertBandA (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3099 {
3100     LPREBARBANDINFOA lprbbi = (LPREBARBANDINFOA)lParam;
3101     UINT uIndex = (UINT)wParam;
3102     REBAR_BAND *lpBand;
3103
3104     if (infoPtr == NULL)
3105         return FALSE;
3106     if (lprbbi == NULL)
3107         return FALSE;
3108     if (lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
3109         return FALSE;
3110
3111     /* trace the index as signed to see the -1 */
3112     TRACE("insert band at %d!\n", (INT)uIndex);
3113     REBAR_DumpBandInfo (lprbbi);
3114
3115     if (infoPtr->uNumBands == 0) {
3116         infoPtr->bands = (REBAR_BAND *)Alloc (sizeof (REBAR_BAND));
3117         uIndex = 0;
3118     }
3119     else {
3120         REBAR_BAND *oldBands = infoPtr->bands;
3121         infoPtr->bands =
3122             (REBAR_BAND *)Alloc ((infoPtr->uNumBands+1)*sizeof(REBAR_BAND));
3123         if (((INT)uIndex == -1) || (uIndex > infoPtr->uNumBands))
3124             uIndex = infoPtr->uNumBands;
3125
3126         /* pre insert copy */
3127         if (uIndex > 0) {
3128             memcpy (&infoPtr->bands[0], &oldBands[0],
3129                     uIndex * sizeof(REBAR_BAND));
3130         }
3131
3132         /* post copy */
3133         if (uIndex < infoPtr->uNumBands - 1) {
3134             memcpy (&infoPtr->bands[uIndex+1], &oldBands[uIndex],
3135                     (infoPtr->uNumBands - uIndex - 1) * sizeof(REBAR_BAND));
3136         }
3137
3138         Free (oldBands);
3139     }
3140
3141     infoPtr->uNumBands++;
3142
3143     TRACE("index %u!\n", uIndex);
3144
3145     /* initialize band (infoPtr->bands[uIndex])*/
3146     lpBand = &infoPtr->bands[uIndex];
3147     lpBand->fMask = 0;
3148     lpBand->fStatus = 0;
3149     lpBand->clrFore = infoPtr->clrText;
3150     lpBand->clrBack = infoPtr->clrBk;
3151     lpBand->hwndChild = 0;
3152     lpBand->hwndPrevParent = 0;
3153
3154     REBAR_CommonSetupBand (infoPtr->hwndSelf, lprbbi, lpBand);
3155     lpBand->lpText = NULL;
3156     if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
3157         INT len = MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, NULL, 0 );
3158         if (len > 1) {
3159             lpBand->lpText = (LPWSTR)Alloc (len*sizeof(WCHAR));
3160             MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, lpBand->lpText, len );
3161         }
3162     }
3163
3164     REBAR_ValidateBand (infoPtr, lpBand);
3165     /* On insert of second band, revalidate band 1 to possible add gripper */
3166     if (infoPtr->uNumBands == 2)
3167         REBAR_ValidateBand (infoPtr, &infoPtr->bands[0]);
3168
3169     REBAR_DumpBand (infoPtr);
3170
3171     REBAR_Layout (infoPtr, NULL, TRUE, FALSE);
3172     InvalidateRect(infoPtr->hwndSelf, 0, 1);
3173
3174     return TRUE;
3175 }
3176
3177
3178 static LRESULT
3179 REBAR_InsertBandW (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3180 {
3181     LPREBARBANDINFOW lprbbi = (LPREBARBANDINFOW)lParam;
3182     UINT uIndex = (UINT)wParam;
3183     REBAR_BAND *lpBand;
3184
3185     if (infoPtr == NULL)
3186         return FALSE;
3187     if (lprbbi == NULL)
3188         return FALSE;
3189     if (lprbbi->cbSize < REBARBANDINFOW_V3_SIZE)
3190         return FALSE;
3191
3192     /* trace the index as signed to see the -1 */
3193     TRACE("insert band at %d!\n", (INT)uIndex);
3194     REBAR_DumpBandInfo ((LPREBARBANDINFOA)lprbbi);
3195
3196     if (infoPtr->uNumBands == 0) {
3197         infoPtr->bands = (REBAR_BAND *)Alloc (sizeof (REBAR_BAND));
3198         uIndex = 0;
3199     }
3200     else {
3201         REBAR_BAND *oldBands = infoPtr->bands;
3202         infoPtr->bands =
3203             (REBAR_BAND *)Alloc ((infoPtr->uNumBands+1)*sizeof(REBAR_BAND));
3204         if (((INT)uIndex == -1) || (uIndex > infoPtr->uNumBands))
3205             uIndex = infoPtr->uNumBands;
3206
3207         /* pre insert copy */
3208         if (uIndex > 0) {
3209             memcpy (&infoPtr->bands[0], &oldBands[0],
3210                     uIndex * sizeof(REBAR_BAND));
3211         }
3212
3213         /* post copy */
3214         if (uIndex <= infoPtr->uNumBands - 1) {
3215             memcpy (&infoPtr->bands[uIndex+1], &oldBands[uIndex],
3216                     (infoPtr->uNumBands - uIndex) * sizeof(REBAR_BAND));
3217         }
3218
3219         Free (oldBands);
3220     }
3221
3222     infoPtr->uNumBands++;
3223
3224     TRACE("index %u!\n", uIndex);
3225
3226     /* initialize band (infoPtr->bands[uIndex])*/
3227     lpBand = &infoPtr->bands[uIndex];
3228     lpBand->fMask = 0;
3229     lpBand->fStatus = 0;
3230     lpBand->clrFore = infoPtr->clrText;
3231     lpBand->clrBack = infoPtr->clrBk;
3232     lpBand->hwndChild = 0;
3233     lpBand->hwndPrevParent = 0;
3234
3235     REBAR_CommonSetupBand (infoPtr->hwndSelf, (LPREBARBANDINFOA)lprbbi, lpBand);
3236     lpBand->lpText = NULL;
3237     if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
3238         INT len = lstrlenW (lprbbi->lpText);
3239         if (len > 0) {
3240             lpBand->lpText = (LPWSTR)Alloc ((len + 1)*sizeof(WCHAR));
3241             strcpyW (lpBand->lpText, lprbbi->lpText);
3242         }
3243     }
3244
3245     REBAR_ValidateBand (infoPtr, lpBand);
3246     /* On insert of second band, revalidate band 1 to possible add gripper */
3247     if (infoPtr->uNumBands == 2)
3248         REBAR_ValidateBand (infoPtr, &infoPtr->bands[uIndex ? 0 : 1]);
3249
3250     REBAR_DumpBand (infoPtr);
3251
3252     REBAR_Layout (infoPtr, NULL, TRUE, FALSE);
3253     InvalidateRect(infoPtr->hwndSelf, 0, 1);
3254
3255     return TRUE;
3256 }
3257
3258
3259 static LRESULT
3260 REBAR_MaximizeBand (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3261 {
3262     REBAR_BAND *lpBand;
3263     UINT uBand = (UINT) wParam;
3264
3265     /* Validate */
3266     if ((infoPtr->uNumBands == 0) ||
3267         ((INT)uBand < 0) || (uBand >= infoPtr->uNumBands)) {
3268         /* error !!! */
3269         ERR("Illegal MaximizeBand, requested=%d, current band count=%d\n",
3270               (INT)uBand, infoPtr->uNumBands);
3271         return FALSE;
3272     }
3273
3274     lpBand = &infoPtr->bands[uBand];
3275
3276     if (lParam && (lpBand->fMask & RBBIM_IDEALSIZE)) {
3277         /* handle setting ideal size */
3278         lpBand->ccx = lpBand->cxIdeal;
3279     }
3280     else {
3281         /* handle setting to max */
3282         FIXME("(uBand = %u fIdeal = %s) case not coded\n",
3283               (UINT)wParam, lParam ? "TRUE" : "FALSE");
3284         return FALSE;
3285     }
3286
3287     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
3288     REBAR_Layout (infoPtr, 0, TRUE, TRUE);
3289     InvalidateRect (infoPtr->hwndSelf, 0, TRUE);
3290
3291     return TRUE;
3292
3293 }
3294
3295
3296 static LRESULT
3297 REBAR_MinimizeBand (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3298 {
3299     REBAR_BAND *band, *lpBand;
3300     UINT uBand = (UINT) wParam;
3301     RECT newrect;
3302     INT imindBand, imaxdBand, iprevBand, startBand, endBand;
3303     INT movement, i;
3304
3305     /* A "minimize" band is equivalent to "dragging" the gripper
3306      * of than band to the right till the band is only the size
3307      * of the cxHeader.
3308      */
3309
3310     /* Validate */
3311     if ((infoPtr->uNumBands == 0) ||
3312         ((INT)uBand < 0) || (uBand >= infoPtr->uNumBands)) {
3313         /* error !!! */
3314         ERR("Illegal MinimizeBand, requested=%d, current band count=%d\n",
3315               (INT)uBand, infoPtr->uNumBands);
3316         return FALSE;
3317     }
3318
3319     /* compute amount of movement and validate */
3320     lpBand = &infoPtr->bands[uBand];
3321
3322     if (infoPtr->dwStyle & CCS_VERT)
3323         movement = lpBand->rcBand.bottom - lpBand->rcBand.top -
3324             lpBand->cxHeader;
3325     else
3326         movement = lpBand->rcBand.right - lpBand->rcBand.left -
3327             lpBand->cxHeader;
3328     if (movement < 0) {
3329         ERR("something is wrong, band=(%ld,%ld)-(%ld,%ld), cxheader=%d\n",
3330             lpBand->rcBand.left, lpBand->rcBand.top,
3331             lpBand->rcBand.right, lpBand->rcBand.bottom,
3332             lpBand->cxHeader);
3333         return FALSE;
3334     }
3335
3336     imindBand = -1;
3337     imaxdBand = -1;
3338     iprevBand = -1; /* to suppress warning message */
3339
3340     /* find the first band in row of the one whose is being minimized */
3341     for (i=0; i<infoPtr->uNumBands; i++) {
3342         band = &infoPtr->bands[i];
3343         if (HIDDENBAND(band)) continue;
3344         if (band->iRow == lpBand->iRow) {
3345             imaxdBand = i;
3346             if (imindBand == -1) imindBand = i;
3347         }
3348     }
3349
3350     /* if the selected band is first in row then need to expand */
3351     /* next visible band                                        */
3352     if (imindBand == uBand) {
3353         band = NULL;
3354         movement = -movement;
3355         /* find the first visible band to the right of the selected band */
3356         for (i=uBand+1; i<=imaxdBand; i++) {
3357             band = &infoPtr->bands[i];
3358             if (!HIDDENBAND(band)) {
3359                 iprevBand = i;
3360                 LEADJ(band, movement);
3361                 band->ccx = rcBw(band);
3362                 break;
3363             }
3364         }
3365         /* what case is this */
3366         if (iprevBand == -1) {
3367             ERR("no previous visible band\n");
3368             return FALSE;
3369         }
3370         startBand = uBand;
3371         endBand = iprevBand;
3372         SetRect (&newrect,
3373                  lpBand->rcBand.left,
3374                  lpBand->rcBand.top,
3375                  band->rcBand.right,
3376                  band->rcBand.bottom);
3377     }
3378     /* otherwise expand previous visible band                   */
3379     else {
3380         band = NULL;
3381         /* find the first visible band to the left of the selected band */
3382         for (i=uBand-1; i>=imindBand; i--) {
3383             band = &infoPtr->bands[i];
3384             if (!HIDDENBAND(band)) {
3385                 iprevBand = i;
3386                 READJ(band, movement);
3387                 band->ccx = rcBw(band);
3388                 break;
3389             }
3390         }
3391         /* what case is this */
3392         if (iprevBand == -1) {
3393             ERR("no previous visible band\n");
3394             return FALSE;
3395         }
3396         startBand = iprevBand;
3397         endBand = uBand;
3398         SetRect (&newrect,
3399                  band->rcBand.left,
3400                  band->rcBand.top,
3401                  lpBand->rcBand.right,
3402                  lpBand->rcBand.bottom);
3403     }
3404
3405     REBAR_Shrink (infoPtr, lpBand, movement, uBand);
3406
3407     /* recompute all rectangles */
3408     if (infoPtr->dwStyle & CCS_VERT) {
3409         REBAR_CalcVertBand (infoPtr, startBand, endBand+1,
3410                             FALSE);
3411     }
3412     else {
3413         REBAR_CalcHorzBand (infoPtr, startBand, endBand+1,
3414                             FALSE);
3415     }
3416
3417     TRACE("bands after minimize, see band # %d, %d\n",
3418           startBand, endBand);
3419     REBAR_DumpBand (infoPtr);
3420
3421     REBAR_MoveChildWindows (infoPtr, startBand, endBand+1);
3422
3423     InvalidateRect (infoPtr->hwndSelf, &newrect, TRUE);
3424     UpdateWindow (infoPtr->hwndSelf);
3425     return FALSE;
3426 }
3427
3428
3429 static LRESULT
3430 REBAR_MoveBand (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3431 {
3432     REBAR_BAND *oldBands = infoPtr->bands;
3433     REBAR_BAND holder;
3434     UINT uFrom = (UINT)wParam;
3435     UINT uTo = (UINT)lParam;
3436
3437     /* Validate */
3438     if ((infoPtr->uNumBands == 0) ||
3439         ((INT)uFrom < 0) || (uFrom >= infoPtr->uNumBands) ||
3440         ((INT)uTo < 0)   || (uTo >= infoPtr->uNumBands)) {
3441         /* error !!! */
3442         ERR("Illegal MoveBand, from=%d, to=%d, current band count=%d\n",
3443               (INT)uFrom, (INT)uTo, infoPtr->uNumBands);
3444         return FALSE;
3445     }
3446
3447     /* save one to be moved */
3448     memcpy (&holder, &oldBands[uFrom], sizeof(REBAR_BAND));
3449
3450     /* close up rest of bands (pseudo delete) */
3451     if (uFrom < infoPtr->uNumBands - 1) {
3452         memcpy (&oldBands[uFrom], &oldBands[uFrom+1],
3453                 (infoPtr->uNumBands - uFrom - 1) * sizeof(REBAR_BAND));
3454     }
3455
3456     /* allocate new space and copy rest of bands into it */
3457     infoPtr->bands =
3458         (REBAR_BAND *)Alloc ((infoPtr->uNumBands)*sizeof(REBAR_BAND));
3459
3460     /* pre insert copy */
3461     if (uTo > 0) {
3462         memcpy (&infoPtr->bands[0], &oldBands[0],
3463                 uTo * sizeof(REBAR_BAND));
3464     }
3465
3466     /* set moved band */
3467     memcpy (&infoPtr->bands[uTo], &holder, sizeof(REBAR_BAND));
3468
3469     /* post copy */
3470     if (uTo < infoPtr->uNumBands - 1) {
3471         memcpy (&infoPtr->bands[uTo+1], &oldBands[uTo],
3472                 (infoPtr->uNumBands - uTo - 1) * sizeof(REBAR_BAND));
3473     }
3474
3475     Free (oldBands);
3476
3477     TRACE("moved band %d to index %d\n", uFrom, uTo);
3478     REBAR_DumpBand (infoPtr);
3479
3480     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
3481     /* **************************************************** */
3482     /*                                                      */
3483     /* We do not do a REBAR_Layout here because the native  */
3484     /* control does not do that. The actual layout and      */
3485     /* repaint is done by the *next* real action, ex.:      */
3486     /* RB_INSERTBAND, RB_DELETEBAND, RB_SIZETORECT, etc.    */
3487     /*                                                      */
3488     /* **************************************************** */
3489
3490     return TRUE;
3491 }
3492
3493
3494 /* return TRUE if two strings are different */
3495 static BOOL
3496 REBAR_strdifW( LPCWSTR a, LPCWSTR b )
3497 {
3498     return ( (a && !b) || (b && !a) || (a && b && lstrcmpW(a, b) ) );
3499 }
3500
3501 static LRESULT
3502 REBAR_SetBandInfoA (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3503 {
3504     LPREBARBANDINFOA lprbbi = (LPREBARBANDINFOA)lParam;
3505     REBAR_BAND *lpBand;
3506     BOOL bChanged;
3507
3508     if (lprbbi == NULL)
3509         return FALSE;
3510     if (lprbbi->cbSize < REBARBANDINFOA_V3_SIZE)
3511         return FALSE;
3512     if ((UINT)wParam >= infoPtr->uNumBands)
3513         return FALSE;
3514
3515     TRACE("index %u\n", (UINT)wParam);
3516     REBAR_DumpBandInfo (lprbbi);
3517
3518     /* set band information */
3519     lpBand = &infoPtr->bands[(UINT)wParam];
3520
3521     bChanged = REBAR_CommonSetupBand (infoPtr->hwndSelf, lprbbi, lpBand);
3522     if (lprbbi->fMask & RBBIM_TEXT) {
3523         LPWSTR wstr = NULL;
3524
3525         if (lprbbi->lpText)
3526         {
3527             INT len;
3528             len = MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, NULL, 0 );
3529             if (len > 1)
3530                 wstr = (LPWSTR)Alloc (len*sizeof(WCHAR));
3531             if (wstr)
3532                 MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, wstr, len );
3533         }
3534         if (REBAR_strdifW(lpBand->lpText, wstr)) {
3535             if (lpBand->lpText) {
3536                 Free (lpBand->lpText);
3537                 lpBand->lpText = NULL;
3538             }
3539             if (wstr) {
3540                 lpBand->lpText = wstr;
3541                 wstr = NULL;
3542             }
3543             bChanged = TRUE;
3544         }
3545         if (wstr)
3546             Free (wstr);
3547     }
3548
3549     REBAR_ValidateBand (infoPtr, lpBand);
3550
3551     REBAR_DumpBand (infoPtr);
3552
3553     if (bChanged && (lprbbi->fMask & (RBBIM_CHILDSIZE | RBBIM_SIZE))) {
3554           REBAR_Layout (infoPtr, NULL, TRUE, FALSE);
3555           InvalidateRect(infoPtr->hwndSelf, 0, 1);
3556     }
3557
3558     return TRUE;
3559 }
3560
3561 static LRESULT
3562 REBAR_SetBandInfoW (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3563 {
3564     LPREBARBANDINFOW lprbbi = (LPREBARBANDINFOW)lParam;
3565     REBAR_BAND *lpBand;
3566     BOOL bChanged;
3567
3568     if (lprbbi == NULL)
3569         return FALSE;
3570     if (lprbbi->cbSize < REBARBANDINFOW_V3_SIZE)
3571         return FALSE;
3572     if ((UINT)wParam >= infoPtr->uNumBands)
3573         return FALSE;
3574
3575     TRACE("index %u\n", (UINT)wParam);
3576     REBAR_DumpBandInfo ((LPREBARBANDINFOA)lprbbi);
3577
3578     /* set band information */
3579     lpBand = &infoPtr->bands[(UINT)wParam];
3580
3581     bChanged = REBAR_CommonSetupBand (infoPtr->hwndSelf, (LPREBARBANDINFOA)lprbbi, lpBand);
3582     if( (lprbbi->fMask & RBBIM_TEXT) && 
3583         REBAR_strdifW( lpBand->lpText, lprbbi->lpText ) ) {
3584         if (lpBand->lpText) {
3585             Free (lpBand->lpText);
3586             lpBand->lpText = NULL;
3587         }
3588         if (lprbbi->lpText) {
3589             INT len = lstrlenW (lprbbi->lpText);
3590             if (len > 0)
3591             {
3592                 lpBand->lpText = (LPWSTR)Alloc ((len + 1)*sizeof(WCHAR));
3593                 strcpyW (lpBand->lpText, lprbbi->lpText);
3594             }
3595         }
3596         bChanged = TRUE;
3597     }
3598
3599     REBAR_ValidateBand (infoPtr, lpBand);
3600
3601     REBAR_DumpBand (infoPtr);
3602
3603     if ( bChanged && (lprbbi->fMask & (RBBIM_CHILDSIZE | RBBIM_SIZE)) ) {
3604       REBAR_Layout (infoPtr, NULL, TRUE, FALSE);
3605       InvalidateRect(infoPtr->hwndSelf, 0, 1);
3606     }
3607
3608     return TRUE;
3609 }
3610
3611
3612 static LRESULT
3613 REBAR_SetBarInfo (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3614 {
3615     LPREBARINFO lpInfo = (LPREBARINFO)lParam;
3616     REBAR_BAND *lpBand;
3617     UINT i;
3618
3619     if (lpInfo == NULL)
3620         return FALSE;
3621
3622     if (lpInfo->cbSize < sizeof (REBARINFO))
3623         return FALSE;
3624
3625     TRACE("setting bar info!\n");
3626
3627     if (lpInfo->fMask & RBIM_IMAGELIST) {
3628         infoPtr->himl = lpInfo->himl;
3629         if (infoPtr->himl) {
3630             INT cx, cy;
3631             ImageList_GetIconSize (infoPtr->himl, &cx, &cy);
3632             infoPtr->imageSize.cx = cx;
3633             infoPtr->imageSize.cy = cy;
3634         }
3635         else {
3636             infoPtr->imageSize.cx = 0;
3637             infoPtr->imageSize.cy = 0;
3638         }
3639         TRACE("new image cx=%ld, cy=%ld\n", infoPtr->imageSize.cx,
3640               infoPtr->imageSize.cy);
3641     }
3642
3643     /* revalidate all bands to reset flags for images in headers of bands */
3644     for (i=0; i<infoPtr->uNumBands; i++) {
3645         lpBand = &infoPtr->bands[i];
3646         REBAR_ValidateBand (infoPtr, lpBand);
3647     }
3648
3649     return TRUE;
3650 }
3651
3652
3653 static LRESULT
3654 REBAR_SetBkColor (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3655 {
3656     COLORREF clrTemp;
3657
3658     clrTemp = infoPtr->clrBk;
3659     infoPtr->clrBk = (COLORREF)lParam;
3660
3661     TRACE("background color 0x%06lx!\n", infoPtr->clrBk);
3662
3663     return clrTemp;
3664 }
3665
3666
3667 /* << REBAR_SetColorScheme >> */
3668 /* << REBAR_SetPalette >> */
3669
3670
3671 static LRESULT
3672 REBAR_SetParent (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3673 {
3674     HWND hwndTemp = infoPtr->hwndNotify;
3675
3676     infoPtr->hwndNotify = (HWND)wParam;
3677
3678     return (LRESULT)hwndTemp;
3679 }
3680
3681
3682 static LRESULT
3683 REBAR_SetTextColor (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3684 {
3685     COLORREF clrTemp;
3686
3687     clrTemp = infoPtr->clrText;
3688     infoPtr->clrText = (COLORREF)lParam;
3689
3690     TRACE("text color 0x%06lx!\n", infoPtr->clrText);
3691
3692     return clrTemp;
3693 }
3694
3695
3696 /* << REBAR_SetTooltips >> */
3697
3698
3699 inline static LRESULT
3700 REBAR_SetUnicodeFormat (REBAR_INFO *infoPtr, WPARAM wParam)
3701 {
3702     BOOL bTemp = infoPtr->bUnicode;
3703
3704     TRACE("to %s hwnd=%p, was %s\n",
3705           ((BOOL)wParam) ? "TRUE" : "FALSE", infoPtr->hwndSelf,
3706           (bTemp) ? "TRUE" : "FALSE");
3707
3708     infoPtr->bUnicode = (BOOL)wParam;
3709
3710    return bTemp;
3711 }
3712
3713
3714 static LRESULT
3715 REBAR_SetVersion (REBAR_INFO *infoPtr, INT iVersion)
3716 {
3717     INT iOldVersion = infoPtr->iVersion;
3718
3719     if (iVersion > COMCTL32_VERSION)
3720         return -1;
3721
3722     infoPtr->iVersion = iVersion;
3723
3724     TRACE("new version %d\n", iVersion);
3725
3726     return iOldVersion;
3727 }
3728
3729
3730 static LRESULT
3731 REBAR_ShowBand (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3732 {
3733     REBAR_BAND *lpBand;
3734
3735     if (((INT)wParam < 0) || ((INT)wParam > infoPtr->uNumBands))
3736         return FALSE;
3737
3738     lpBand = &infoPtr->bands[(INT)wParam];
3739
3740     if ((BOOL)lParam) {
3741         TRACE("show band %d\n", (INT)wParam);
3742         lpBand->fStyle = lpBand->fStyle & ~RBBS_HIDDEN;
3743         if (IsWindow (lpBand->hwndChild))
3744             ShowWindow (lpBand->hwndChild, SW_SHOW);
3745     }
3746     else {
3747         TRACE("hide band %d\n", (INT)wParam);
3748         lpBand->fStyle = lpBand->fStyle | RBBS_HIDDEN;
3749         if (IsWindow (lpBand->hwndChild))
3750             ShowWindow (lpBand->hwndChild, SW_HIDE);
3751     }
3752
3753     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
3754     REBAR_Layout (infoPtr, NULL, TRUE, FALSE);
3755     InvalidateRect(infoPtr->hwndSelf, 0, 1);
3756
3757     return TRUE;
3758 }
3759
3760
3761 static LRESULT
3762 REBAR_SizeToRect (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3763 {
3764     LPRECT lpRect = (LPRECT)lParam;
3765     RECT t1;
3766
3767     if (lpRect == NULL)
3768        return FALSE;
3769
3770     TRACE("[%ld %ld %ld %ld]\n",
3771           lpRect->left, lpRect->top, lpRect->right, lpRect->bottom);
3772
3773     /*  what is going on???? */
3774     GetWindowRect(infoPtr->hwndSelf, &t1);
3775     TRACE("window rect [%ld %ld %ld %ld]\n",
3776           t1.left, t1.top, t1.right, t1.bottom);
3777     GetClientRect(infoPtr->hwndSelf, &t1);
3778     TRACE("client rect [%ld %ld %ld %ld]\n",
3779           t1.left, t1.top, t1.right, t1.bottom);
3780
3781     /* force full _Layout processing */
3782     TRACE("setting NEEDS_LAYOUT\n");
3783     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
3784     REBAR_Layout (infoPtr, lpRect, TRUE, FALSE);
3785     InvalidateRect (infoPtr->hwndSelf, NULL, TRUE);
3786     return TRUE;
3787 }
3788
3789
3790
3791 static LRESULT
3792 REBAR_Create (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3793 {
3794     LPCREATESTRUCTA cs = (LPCREATESTRUCTA) lParam;
3795     RECT wnrc1, clrc1;
3796
3797     if (TRACE_ON(rebar)) {
3798         GetWindowRect(infoPtr->hwndSelf, &wnrc1);
3799         GetClientRect(infoPtr->hwndSelf, &clrc1);
3800         TRACE("window=(%ld,%ld)-(%ld,%ld) client=(%ld,%ld)-(%ld,%ld) cs=(%d,%d %dx%d)\n",
3801               wnrc1.left, wnrc1.top, wnrc1.right, wnrc1.bottom,
3802               clrc1.left, clrc1.top, clrc1.right, clrc1.bottom,
3803               cs->x, cs->y, cs->cx, cs->cy);
3804     }
3805
3806     TRACE("created!\n");
3807     return 0;
3808 }
3809
3810
3811 static LRESULT
3812 REBAR_Destroy (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3813 {
3814     REBAR_BAND *lpBand;
3815     UINT i;
3816
3817
3818     /* free rebar bands */
3819     if ((infoPtr->uNumBands > 0) && infoPtr->bands) {
3820         /* clean up each band */
3821         for (i = 0; i < infoPtr->uNumBands; i++) {
3822             lpBand = &infoPtr->bands[i];
3823
3824             /* delete text strings */
3825             if (lpBand->lpText) {
3826                 Free (lpBand->lpText);
3827                 lpBand->lpText = NULL;
3828             }
3829             /* destroy child window */
3830             DestroyWindow (lpBand->hwndChild);
3831         }
3832
3833         /* free band array */
3834         Free (infoPtr->bands);
3835         infoPtr->bands = NULL;
3836     }
3837
3838     DeleteObject (infoPtr->hcurArrow);
3839     DeleteObject (infoPtr->hcurHorz);
3840     DeleteObject (infoPtr->hcurVert);
3841     DeleteObject (infoPtr->hcurDrag);
3842     if(infoPtr->hDefaultFont) DeleteObject (infoPtr->hDefaultFont);
3843     SetWindowLongA (infoPtr->hwndSelf, 0, 0);
3844
3845     /* free rebar info data */
3846     Free (infoPtr);
3847     TRACE("destroyed!\n");
3848     return 0;
3849 }
3850
3851
3852 static LRESULT
3853 REBAR_EraseBkGnd (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3854 {
3855     RECT cliprect;
3856
3857     if (GetClipBox ( (HDC)wParam, &cliprect))
3858         return REBAR_InternalEraseBkGnd (infoPtr, wParam, lParam, &cliprect);
3859     return 0;
3860 }
3861
3862
3863 static LRESULT
3864 REBAR_GetFont (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3865 {
3866     return (LRESULT)infoPtr->hFont;
3867 }
3868
3869 static LRESULT
3870 REBAR_PushChevron(REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3871 {
3872     if (wParam >= 0 && (UINT)wParam < infoPtr->uNumBands)
3873     {
3874         NMREBARCHEVRON nmrbc;
3875         REBAR_BAND *lpBand = &infoPtr->bands[wParam];
3876
3877         TRACE("Pressed chevron on band %d\n", wParam);
3878
3879         /* redraw chevron in pushed state */
3880         lpBand->fDraw |= DRAW_CHEVRONPUSHED;
3881         RedrawWindow(infoPtr->hwndSelf, &lpBand->rcChevron,0,
3882           RDW_ERASE|RDW_INVALIDATE|RDW_UPDATENOW);
3883
3884         /* notify app so it can display a popup menu or whatever */
3885         nmrbc.uBand = wParam;
3886         nmrbc.wID = lpBand->wID;
3887         nmrbc.lParam = lpBand->lParam;
3888         nmrbc.rc = lpBand->rcChevron;
3889         nmrbc.lParamNM = lParam;
3890         REBAR_Notify((NMHDR*)&nmrbc, infoPtr, RBN_CHEVRONPUSHED);
3891
3892         /* redraw chevron in previous state */
3893         lpBand->fDraw &= ~DRAW_CHEVRONPUSHED;
3894         InvalidateRect(infoPtr->hwndSelf, &lpBand->rcChevron, TRUE);
3895
3896         return TRUE;
3897     }
3898     return FALSE;
3899 }
3900
3901 static LRESULT
3902 REBAR_LButtonDown (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3903 {
3904     REBAR_BAND *lpBand;
3905     UINT htFlags;
3906     UINT iHitBand;
3907     POINT ptMouseDown;
3908     ptMouseDown.x = (INT)LOWORD(lParam);
3909     ptMouseDown.y = (INT)HIWORD(lParam);
3910
3911     REBAR_InternalHitTest(infoPtr, &ptMouseDown, &htFlags, &iHitBand);
3912     lpBand = &infoPtr->bands[iHitBand];
3913
3914     if (htFlags == RBHT_CHEVRON)
3915     {
3916         REBAR_PushChevron(infoPtr, iHitBand, 0);
3917     }
3918     else if (htFlags == RBHT_GRABBER || htFlags == RBHT_CAPTION)
3919     {
3920         TRACE("Starting drag\n");
3921
3922         SetCapture (infoPtr->hwndSelf);
3923         infoPtr->iGrabbedBand = iHitBand;
3924
3925         /* save off the LOWORD and HIWORD of lParam as initial x,y */
3926         infoPtr->dragStart = MAKEPOINTS(lParam);
3927         infoPtr->dragNow = infoPtr->dragStart;
3928         if (infoPtr->dwStyle & CCS_VERT)
3929             infoPtr->ihitoffset = infoPtr->dragStart.y - (lpBand->rcBand.top+REBAR_PRE_GRIPPER);
3930         else
3931             infoPtr->ihitoffset = infoPtr->dragStart.x - (lpBand->rcBand.left+REBAR_PRE_GRIPPER);
3932     }
3933     return 0;
3934 }
3935
3936 static LRESULT
3937 REBAR_LButtonUp (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3938 {
3939     if (infoPtr->iGrabbedBand >= 0)
3940     {
3941         NMHDR layout;
3942         RECT rect;
3943
3944         infoPtr->dragStart.x = 0;
3945         infoPtr->dragStart.y = 0;
3946         infoPtr->dragNow = infoPtr->dragStart;
3947
3948         ReleaseCapture ();
3949
3950         if (infoPtr->fStatus & BEGIN_DRAG_ISSUED) {
3951             REBAR_Notify(&layout, infoPtr, RBN_LAYOUTCHANGED);
3952             REBAR_Notify_NMREBAR (infoPtr, infoPtr->iGrabbedBand, RBN_ENDDRAG);
3953             infoPtr->fStatus &= ~BEGIN_DRAG_ISSUED;
3954         }
3955
3956         infoPtr->iGrabbedBand = -1;
3957
3958         GetClientRect(infoPtr->hwndSelf, &rect);
3959         InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
3960     }
3961
3962     return 0;
3963 }
3964
3965 static LRESULT
3966 REBAR_MouseLeave (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3967 {
3968     if (infoPtr->ichevronhotBand >= 0)
3969     {
3970         REBAR_BAND *lpChevronBand = &infoPtr->bands[infoPtr->ichevronhotBand];
3971         if (lpChevronBand->fDraw & DRAW_CHEVRONHOT)
3972         {
3973             lpChevronBand->fDraw &= ~DRAW_CHEVRONHOT;
3974             InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
3975         }
3976     }
3977     infoPtr->iOldBand = -1;
3978     infoPtr->ichevronhotBand = -2;
3979
3980     return TRUE;
3981 }
3982
3983 static LRESULT
3984 REBAR_MouseMove (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
3985 {
3986     REBAR_BAND *lpChevronBand;
3987     POINTS ptsmove;
3988
3989     ptsmove = MAKEPOINTS(lParam);
3990
3991     /* if we are currently dragging a band */
3992     if (infoPtr->iGrabbedBand >= 0)
3993     {
3994         REBAR_BAND *band1, *band2;
3995     
3996         if (GetCapture() != infoPtr->hwndSelf)
3997             ERR("We are dragging but haven't got capture?!?\n");
3998
3999         band1 = &infoPtr->bands[infoPtr->iGrabbedBand-1];
4000         band2 = &infoPtr->bands[infoPtr->iGrabbedBand];
4001
4002         /* if mouse did not move much, exit */
4003         if ((abs(ptsmove.x - infoPtr->dragNow.x) <= mindragx) &&
4004             (abs(ptsmove.y - infoPtr->dragNow.y) <= mindragy)) return 0;
4005
4006         /* Test for valid drag case - must not be first band in row */
4007         if (infoPtr->dwStyle & CCS_VERT) {
4008             if ((ptsmove.x < band2->rcBand.left) ||
4009               (ptsmove.x > band2->rcBand.right) ||
4010               ((infoPtr->iGrabbedBand > 0) && (band1->iRow != band2->iRow))) {
4011                 FIXME("Cannot drag to other rows yet!!\n");
4012             }
4013             else {
4014                 REBAR_HandleLRDrag (infoPtr, &ptsmove);
4015             }
4016         }
4017         else {
4018             if ((ptsmove.y < band2->rcBand.top) ||
4019               (ptsmove.y > band2->rcBand.bottom) ||
4020               ((infoPtr->iGrabbedBand > 0) && (band1->iRow != band2->iRow))) {
4021                 FIXME("Cannot drag to other rows yet!!\n");
4022             }
4023             else {
4024                 REBAR_HandleLRDrag (infoPtr, &ptsmove);
4025             }
4026         }
4027     }
4028     else
4029     {
4030         POINT ptMove;
4031         INT iHitBand;
4032         UINT htFlags;
4033         TRACKMOUSEEVENT trackinfo;
4034
4035         ptMove.x = (INT)ptsmove.x;
4036         ptMove.y = (INT)ptsmove.y;
4037         REBAR_InternalHitTest(infoPtr, &ptMove, &htFlags, &iHitBand);
4038
4039         if (infoPtr->iOldBand >= 0 && infoPtr->iOldBand == infoPtr->ichevronhotBand)
4040         {
4041             lpChevronBand = &infoPtr->bands[infoPtr->ichevronhotBand];
4042             if (lpChevronBand->fDraw & DRAW_CHEVRONHOT)
4043             {
4044                 lpChevronBand->fDraw &= ~DRAW_CHEVRONHOT;
4045                 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
4046             }
4047             infoPtr->ichevronhotBand = -2;
4048         }
4049
4050         if (htFlags == RBHT_CHEVRON)
4051         {
4052             /* fill in the TRACKMOUSEEVENT struct */
4053             trackinfo.cbSize = sizeof(TRACKMOUSEEVENT);
4054             trackinfo.dwFlags = TME_QUERY;
4055             trackinfo.hwndTrack = infoPtr->hwndSelf;
4056             trackinfo.dwHoverTime = 0;
4057
4058             /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
4059             _TrackMouseEvent(&trackinfo);
4060
4061             /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
4062             if(!(trackinfo.dwFlags & TME_LEAVE))
4063             {
4064                 trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
4065
4066                 /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
4067                 /* and can properly deactivate the hot chevron */
4068                 _TrackMouseEvent(&trackinfo);
4069             }
4070
4071             lpChevronBand = &infoPtr->bands[iHitBand];
4072             if (!(lpChevronBand->fDraw & DRAW_CHEVRONHOT))
4073             {
4074                 lpChevronBand->fDraw |= DRAW_CHEVRONHOT;
4075                 InvalidateRect(infoPtr->hwndSelf, &lpChevronBand->rcChevron, TRUE);
4076                 infoPtr->ichevronhotBand = iHitBand;
4077             }
4078         }
4079         infoPtr->iOldBand = iHitBand;
4080     }
4081
4082     return 0;
4083 }
4084
4085
4086 inline static LRESULT
4087 REBAR_NCCalcSize (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4088 {
4089     if (infoPtr->dwStyle & WS_BORDER) {
4090         InflateRect((LPRECT)lParam, -GetSystemMetrics(SM_CXEDGE),
4091                     -GetSystemMetrics(SM_CYEDGE));
4092     }
4093     TRACE("new client=(%ld,%ld)-(%ld,%ld)\n",
4094           ((LPRECT)lParam)->left, ((LPRECT)lParam)->top,
4095           ((LPRECT)lParam)->right, ((LPRECT)lParam)->bottom);
4096     return 0;
4097 }
4098
4099
4100 static LRESULT
4101 REBAR_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
4102 {
4103     LPCREATESTRUCTA cs = (LPCREATESTRUCTA) lParam;
4104     REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
4105     RECT wnrc1, clrc1;
4106     NONCLIENTMETRICSA ncm;
4107     HFONT tfont;
4108     INT i;
4109
4110     if (infoPtr != NULL) {
4111         ERR("Strange info structure pointer *not* NULL\n");
4112         return FALSE;
4113     }
4114
4115     if (TRACE_ON(rebar)) {
4116         GetWindowRect(hwnd, &wnrc1);
4117         GetClientRect(hwnd, &clrc1);
4118         TRACE("window=(%ld,%ld)-(%ld,%ld) client=(%ld,%ld)-(%ld,%ld) cs=(%d,%d %dx%d)\n",
4119               wnrc1.left, wnrc1.top, wnrc1.right, wnrc1.bottom,
4120               clrc1.left, clrc1.top, clrc1.right, clrc1.bottom,
4121               cs->x, cs->y, cs->cx, cs->cy);
4122     }
4123
4124     /* allocate memory for info structure */
4125     infoPtr = (REBAR_INFO *)Alloc (sizeof(REBAR_INFO));
4126     SetWindowLongA (hwnd, 0, (DWORD)infoPtr);
4127
4128     /* initialize info structure - initial values are 0 */
4129     infoPtr->clrBk = CLR_NONE;
4130     infoPtr->clrText = CLR_NONE;
4131     infoPtr->clrBtnText = GetSysColor (COLOR_BTNTEXT);
4132     infoPtr->clrBtnFace = GetSysColor (COLOR_BTNFACE);
4133     infoPtr->iOldBand = -1;
4134     infoPtr->ichevronhotBand = -2;
4135     infoPtr->iGrabbedBand = -1;
4136     infoPtr->hwndSelf = hwnd;
4137     infoPtr->DoRedraw = TRUE;
4138     infoPtr->hcurArrow = LoadCursorA (0, (LPSTR)IDC_ARROW);
4139     infoPtr->hcurHorz  = LoadCursorA (0, (LPSTR)IDC_SIZEWE);
4140     infoPtr->hcurVert  = LoadCursorA (0, (LPSTR)IDC_SIZENS);
4141     infoPtr->hcurDrag  = LoadCursorA (0, (LPSTR)IDC_SIZE);
4142     infoPtr->bUnicode = IsWindowUnicode (hwnd);
4143     infoPtr->fStatus = CREATE_RUNNING;
4144     infoPtr->hFont = GetStockObject (SYSTEM_FONT);
4145
4146     /* issue WM_NOTIFYFORMAT to get unicode status of parent */
4147     i = SendMessageA(REBAR_GetNotifyParent (infoPtr),
4148                      WM_NOTIFYFORMAT, (WPARAM)hwnd, NF_QUERY);
4149     if ((i < NFR_ANSI) || (i > NFR_UNICODE)) {
4150         ERR("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n",
4151             i);
4152         i = NFR_ANSI;
4153     }
4154     infoPtr->NtfUnicode = (i == NFR_UNICODE) ? 1 : 0;
4155
4156     /* add necessary styles to the requested styles */
4157     infoPtr->dwStyle = cs->style | WS_VISIBLE | CCS_TOP;
4158     SetWindowLongA (hwnd, GWL_STYLE, infoPtr->dwStyle);
4159
4160     /* get font handle for Caption Font */
4161     ncm.cbSize = sizeof(NONCLIENTMETRICSA);
4162     SystemParametersInfoA (SPI_GETNONCLIENTMETRICS,
4163                           ncm.cbSize, &ncm, 0);
4164     /* if the font is bold, set to normal */
4165     if (ncm.lfCaptionFont.lfWeight > FW_NORMAL) {
4166         ncm.lfCaptionFont.lfWeight = FW_NORMAL;
4167     }
4168     tfont = CreateFontIndirectA (&ncm.lfCaptionFont);
4169     if (tfont) {
4170         infoPtr->hFont = infoPtr->hDefaultFont = tfont;
4171     }
4172
4173 /* native does:
4174             GetSysColor (numerous);
4175             GetSysColorBrush (numerous) (see WM_SYSCOLORCHANGE);
4176            *GetStockObject (SYSTEM_FONT);
4177            *SetWindowLong (hwnd, 0, info ptr);
4178            *WM_NOTIFYFORMAT;
4179            *SetWindowLong (hwnd, GWL_STYLE, style+0x10000001);
4180                                     WS_VISIBLE = 0x10000000;
4181                                     CCS_TOP    = 0x00000001;
4182            *SystemParametersInfo (SPI_GETNONCLIENTMETRICS...);
4183            *CreateFontIndirect (lfCaptionFont from above);
4184             GetDC ();
4185             SelectObject (hdc, fontabove);
4186             GetTextMetrics (hdc, );    guessing is tmHeight
4187             SelectObject (hdc, oldfont);
4188             ReleaseDC ();
4189             GetWindowRect ();
4190             MapWindowPoints (0, parent, rectabove, 2);
4191             GetWindowRect ();
4192             GetClientRect ();
4193             ClientToScreen (clientrect);
4194             SetWindowPos (hwnd, 0, 0, 0, 0, 0, SWP_NOZORDER);
4195  */
4196     return TRUE;
4197 }
4198
4199
4200 static LRESULT
4201 REBAR_NCHitTest (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4202 {
4203     NMMOUSE nmmouse;
4204     POINTS shortpt;
4205     POINT clpt, pt;
4206     INT i;
4207     UINT scrap;
4208     LRESULT ret = HTCLIENT;
4209
4210     /*
4211      * Differences from doc at MSDN (as observed with version 4.71 of
4212      *      comctl32.dll
4213      * 1. doc says nmmouse.pt is in screen coord, trace shows client coord.
4214      * 2. if band is not identified .dwItemSpec is 0xffffffff.
4215      * 3. native always seems to return HTCLIENT if notify return is 0.
4216      */
4217
4218     shortpt = MAKEPOINTS (lParam);
4219     POINTSTOPOINT(pt, shortpt);
4220     clpt = pt;
4221     ScreenToClient (infoPtr->hwndSelf, &clpt);
4222     REBAR_InternalHitTest (infoPtr, &clpt, &scrap,
4223                            (INT *)&nmmouse.dwItemSpec);
4224     nmmouse.dwItemData = 0;
4225     nmmouse.pt = clpt;
4226     nmmouse.dwHitInfo = 0;
4227     if ((i = REBAR_Notify((NMHDR *) &nmmouse, infoPtr, NM_NCHITTEST))) {
4228         TRACE("notify changed return value from %ld to %d\n",
4229               ret, i);
4230         ret = (LRESULT) i;
4231     }
4232     TRACE("returning %ld, client point (%ld,%ld)\n", ret, clpt.x, clpt.y);
4233     return ret;
4234 }
4235
4236
4237 static LRESULT
4238 REBAR_NCPaint (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4239 {
4240     RECT rcWindow;
4241     HDC hdc;
4242
4243     if (infoPtr->dwStyle & WS_MINIMIZE)
4244         return 0; /* Nothing to do */
4245
4246     if (infoPtr->dwStyle & WS_BORDER) {
4247
4248         /* adjust rectangle and draw the necessary edge */
4249         if (!(hdc = GetDCEx( infoPtr->hwndSelf, 0, DCX_USESTYLE | DCX_WINDOW )))
4250             return 0;
4251         GetWindowRect (infoPtr->hwndSelf, &rcWindow);
4252         OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
4253         TRACE("rect (%ld,%ld)-(%ld,%ld)\n",
4254               rcWindow.left, rcWindow.top,
4255               rcWindow.right, rcWindow.bottom);
4256         DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_RECT);
4257         ReleaseDC( infoPtr->hwndSelf, hdc );
4258     }
4259
4260     return 0;
4261 }
4262
4263
4264 static LRESULT
4265 REBAR_NotifyFormat (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4266 {
4267     INT i;
4268
4269     if (lParam == NF_REQUERY) {
4270         i = SendMessageA(REBAR_GetNotifyParent (infoPtr),
4271                          WM_NOTIFYFORMAT, (WPARAM)infoPtr->hwndSelf, NF_QUERY);
4272         if ((i < NFR_ANSI) || (i > NFR_UNICODE)) {
4273             ERR("wrong response to WM_NOTIFYFORMAT (%d), assuming ANSI\n",
4274                 i);
4275             i = NFR_ANSI;
4276         }
4277         infoPtr->NtfUnicode = (i == NFR_UNICODE) ? 1 : 0;
4278         return (LRESULT)i;
4279     }
4280     return (LRESULT)((infoPtr->bUnicode) ? NFR_UNICODE : NFR_ANSI);
4281 }
4282
4283
4284 static LRESULT
4285 REBAR_Paint (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4286 {
4287     HDC hdc;
4288     PAINTSTRUCT ps;
4289     RECT rc;
4290
4291     GetClientRect(infoPtr->hwndSelf, &rc);
4292     hdc = wParam==0 ? BeginPaint (infoPtr->hwndSelf, &ps) : (HDC)wParam;
4293
4294     TRACE("painting (%ld,%ld)-(%ld,%ld) client (%ld,%ld)-(%ld,%ld)\n",
4295           ps.rcPaint.left, ps.rcPaint.top,
4296           ps.rcPaint.right, ps.rcPaint.bottom,
4297           rc.left, rc.top, rc.right, rc.bottom);
4298
4299     if (ps.fErase) {
4300         /* Erase area of paint if requested */
4301         REBAR_InternalEraseBkGnd (infoPtr, wParam, lParam, &ps.rcPaint);
4302     }
4303
4304     REBAR_Refresh (infoPtr, hdc);
4305     if (!wParam)
4306         EndPaint (infoPtr->hwndSelf, &ps);
4307     return 0;
4308 }
4309
4310
4311 static LRESULT
4312 REBAR_SetCursor (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4313 {
4314     POINT pt;
4315     UINT  flags;
4316
4317     TRACE("code=0x%X  id=0x%X\n", LOWORD(lParam), HIWORD(lParam));
4318
4319     GetCursorPos (&pt);
4320     ScreenToClient (infoPtr->hwndSelf, &pt);
4321
4322     REBAR_InternalHitTest (infoPtr, &pt, &flags, NULL);
4323
4324     if (flags == RBHT_GRABBER) {
4325         if ((infoPtr->dwStyle & CCS_VERT) &&
4326             !(infoPtr->dwStyle & RBS_VERTICALGRIPPER))
4327             SetCursor (infoPtr->hcurVert);
4328         else
4329             SetCursor (infoPtr->hcurHorz);
4330     }
4331     else if (flags != RBHT_CLIENT)
4332         SetCursor (infoPtr->hcurArrow);
4333
4334     return 0;
4335 }
4336
4337
4338 static LRESULT
4339 REBAR_SetFont (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4340 {
4341     RECT rcClient;
4342     REBAR_BAND *lpBand;
4343     UINT i;
4344
4345     infoPtr->hFont = (HFONT)wParam;
4346
4347     /* revalidate all bands to change sizes of text in headers of bands */
4348     for (i=0; i<infoPtr->uNumBands; i++) {
4349         lpBand = &infoPtr->bands[i];
4350         REBAR_ValidateBand (infoPtr, lpBand);
4351     }
4352
4353
4354     if (LOWORD(lParam)) {
4355         GetClientRect (infoPtr->hwndSelf, &rcClient);
4356         REBAR_Layout (infoPtr, &rcClient, FALSE, TRUE);
4357     }
4358
4359     return 0;
4360 }
4361
4362
4363 inline static LRESULT
4364 REBAR_SetRedraw (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4365      /*****************************************************
4366       *
4367       * Function;
4368       *  Handles the WM_SETREDRAW message.
4369       *
4370       * Documentation:
4371       *  According to testing V4.71 of COMCTL32 returns the
4372       *  *previous* status of the redraw flag (either 0 or -1)
4373       *  instead of the MSDN documented value of 0 if handled
4374       *
4375       *****************************************************/
4376 {
4377     BOOL oldredraw = infoPtr->DoRedraw;
4378
4379     TRACE("set to %s, fStatus=%08x\n",
4380           (wParam) ? "TRUE" : "FALSE", infoPtr->fStatus);
4381     infoPtr->DoRedraw = (BOOL) wParam;
4382     if (wParam) {
4383         if (infoPtr->fStatus & BAND_NEEDS_REDRAW) {
4384             REBAR_MoveChildWindows (infoPtr, 0, infoPtr->uNumBands);
4385             REBAR_ForceResize (infoPtr);
4386             InvalidateRect (infoPtr->hwndSelf, 0, TRUE);
4387         }
4388         infoPtr->fStatus &= ~BAND_NEEDS_REDRAW;
4389     }
4390     return (oldredraw) ? -1 : 0;
4391 }
4392
4393
4394 static LRESULT
4395 REBAR_Size (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4396 {
4397     RECT rcClient;
4398
4399     /* auto resize deadlock check */
4400     if (infoPtr->fStatus & AUTO_RESIZE) {
4401         infoPtr->fStatus &= ~AUTO_RESIZE;
4402         TRACE("AUTO_RESIZE was set, reset, fStatus=%08x lparam=%08lx\n",
4403               infoPtr->fStatus, lParam);
4404         return 0;
4405     }
4406
4407     if (infoPtr->fStatus & CREATE_RUNNING) {
4408         /* still in CreateWindow */
4409         RECT rcWin;
4410
4411         if ((INT)wParam != SIZE_RESTORED) {
4412             ERR("WM_SIZE in create and flags=%08x, lParam=%08lx\n",
4413                 wParam, lParam);
4414         }
4415
4416         TRACE("still in CreateWindow\n");
4417         infoPtr->fStatus &= ~CREATE_RUNNING;
4418         GetWindowRect ( infoPtr->hwndSelf, &rcWin);
4419         TRACE("win rect (%ld,%ld)-(%ld,%ld)\n",
4420               rcWin.left, rcWin.top, rcWin.right, rcWin.bottom);
4421
4422         if ((lParam == 0) && (rcWin.right-rcWin.left == 0) &&
4423             (rcWin.bottom-rcWin.top == 0)) {
4424             /* native control seems to do this */
4425             GetClientRect (GetParent(infoPtr->hwndSelf), &rcClient);
4426             TRACE("sizing rebar, message and client zero, parent client (%ld,%ld)\n",
4427                   rcClient.right, rcClient.bottom);
4428         }
4429         else {
4430             INT cx, cy;
4431
4432             cx = rcWin.right - rcWin.left;
4433             cy = rcWin.bottom - rcWin.top;
4434             if ((cx == LOWORD(lParam)) && (cy == HIWORD(lParam))) {
4435                 return 0;
4436             }
4437
4438             /* do the actual WM_SIZE request */
4439             GetClientRect (infoPtr->hwndSelf, &rcClient);
4440             TRACE("sizing rebar from (%ld,%ld) to (%d,%d), client (%ld,%ld)\n",
4441                   infoPtr->calcSize.cx, infoPtr->calcSize.cy,
4442                   LOWORD(lParam), HIWORD(lParam),
4443                   rcClient.right, rcClient.bottom);
4444         }
4445     }
4446     else {
4447         if ((INT)wParam != SIZE_RESTORED) {
4448             ERR("WM_SIZE out of create and flags=%08x, lParam=%08lx\n",
4449                 wParam, lParam);
4450         }
4451
4452         /* Handle cases when outside of the CreateWindow process */
4453
4454         GetClientRect (infoPtr->hwndSelf, &rcClient);
4455         if ((lParam == 0) && (rcClient.right + rcClient.bottom != 0) &&
4456             (infoPtr->dwStyle & RBS_AUTOSIZE)) {
4457             /* on a WM_SIZE to zero and current client not zero and AUTOSIZE */
4458             /* native seems to use the current client rect for the size      */
4459             infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
4460             TRACE("sizing rebar to client (%ld,%ld) size is zero but AUTOSIZE set\n",
4461                   rcClient.right, rcClient.bottom);
4462         }
4463         else {
4464             TRACE("sizing rebar from (%ld,%ld) to (%d,%d), client (%ld,%ld)\n",
4465                   infoPtr->calcSize.cx, infoPtr->calcSize.cy,
4466                   LOWORD(lParam), HIWORD(lParam),
4467                   rcClient.right, rcClient.bottom);
4468         }
4469     }
4470
4471     if (infoPtr->dwStyle & RBS_AUTOSIZE) {
4472         NMRBAUTOSIZE autosize;
4473
4474         GetClientRect(infoPtr->hwndSelf, &autosize.rcTarget);
4475         autosize.fChanged = 0;  /* ??? */
4476         autosize.rcActual = autosize.rcTarget;  /* ??? */
4477         REBAR_Notify((NMHDR *) &autosize, infoPtr, RBN_AUTOSIZE);
4478         TRACE("RBN_AUTOSIZE client=(%ld,%ld), lp=%08lx\n",
4479               autosize.rcTarget.right, autosize.rcTarget.bottom, lParam);
4480     }
4481
4482     if ((infoPtr->calcSize.cx != rcClient.right) ||
4483         (infoPtr->calcSize.cy != rcClient.bottom))
4484         infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
4485
4486     REBAR_Layout (infoPtr, &rcClient, TRUE, TRUE);
4487     infoPtr->fStatus &= ~AUTO_RESIZE;
4488
4489     return 0;
4490 }
4491
4492
4493 static LRESULT
4494 REBAR_StyleChanged (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4495 {
4496     STYLESTRUCT *ss = (STYLESTRUCT *)lParam;
4497
4498     TRACE("current style=%08lx, styleOld=%08lx, style being set to=%08lx\n",
4499           infoPtr->dwStyle, ss->styleOld, ss->styleNew);
4500     infoPtr->dwStyle = ss->styleNew;
4501
4502     return FALSE;
4503 }
4504
4505
4506 static LRESULT
4507 REBAR_WindowPosChanged (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
4508 {
4509     WINDOWPOS *lpwp = (WINDOWPOS *)lParam;
4510     LRESULT ret;
4511     RECT rc;
4512
4513     /* Save the new origin of this window - used by _ForceResize */
4514     infoPtr->origin.x = lpwp->x;
4515     infoPtr->origin.y = lpwp->y;
4516     ret = DefWindowProcA(infoPtr->hwndSelf, WM_WINDOWPOSCHANGED,
4517                          wParam, lParam);
4518     GetWindowRect(infoPtr->hwndSelf, &rc);
4519     TRACE("hwnd %p new pos (%ld,%ld)-(%ld,%ld)\n",
4520           infoPtr->hwndSelf, rc.left, rc.top, rc.right, rc.bottom);
4521     return ret;
4522 }
4523
4524
4525 static LRESULT WINAPI
4526 REBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
4527 {
4528     REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
4529
4530     TRACE("hwnd=%p msg=%x wparam=%x lparam=%lx\n",
4531           hwnd, uMsg, wParam, lParam);
4532     if (!infoPtr && (uMsg != WM_NCCREATE))
4533             return DefWindowProcA (hwnd, uMsg, wParam, lParam);
4534     switch (uMsg)
4535     {
4536 /*      case RB_BEGINDRAG: */
4537
4538         case RB_DELETEBAND:
4539             return REBAR_DeleteBand (infoPtr, wParam, lParam);
4540
4541 /*      case RB_DRAGMOVE: */
4542 /*      case RB_ENDDRAG: */
4543
4544         case RB_GETBANDBORDERS:
4545             return REBAR_GetBandBorders (infoPtr, wParam, lParam);
4546
4547         case RB_GETBANDCOUNT:
4548             return REBAR_GetBandCount (infoPtr);
4549
4550         case RB_GETBANDINFO_OLD:
4551         case RB_GETBANDINFOA:
4552             return REBAR_GetBandInfoA (infoPtr, wParam, lParam);
4553
4554         case RB_GETBANDINFOW:
4555             return REBAR_GetBandInfoW (infoPtr, wParam, lParam);
4556
4557         case RB_GETBARHEIGHT:
4558             return REBAR_GetBarHeight (infoPtr, wParam, lParam);
4559
4560         case RB_GETBARINFO:
4561             return REBAR_GetBarInfo (infoPtr, wParam, lParam);
4562
4563         case RB_GETBKCOLOR:
4564             return REBAR_GetBkColor (infoPtr);
4565
4566 /*      case RB_GETCOLORSCHEME: */
4567 /*      case RB_GETDROPTARGET: */
4568
4569         case RB_GETPALETTE:
4570             return REBAR_GetPalette (infoPtr, wParam, lParam);
4571
4572         case RB_GETRECT:
4573             return REBAR_GetRect (infoPtr, wParam, lParam);
4574
4575         case RB_GETROWCOUNT:
4576             return REBAR_GetRowCount (infoPtr);
4577
4578         case RB_GETROWHEIGHT:
4579             return REBAR_GetRowHeight (infoPtr, wParam, lParam);
4580
4581         case RB_GETTEXTCOLOR:
4582             return REBAR_GetTextColor (infoPtr);
4583
4584         case RB_GETTOOLTIPS:
4585             return REBAR_GetToolTips (infoPtr);
4586
4587         case RB_GETUNICODEFORMAT:
4588             return REBAR_GetUnicodeFormat (infoPtr);
4589
4590         case CCM_GETVERSION:
4591             return REBAR_GetVersion (infoPtr);
4592
4593         case RB_HITTEST:
4594             return REBAR_HitTest (infoPtr, wParam, lParam);
4595
4596         case RB_IDTOINDEX:
4597             return REBAR_IdToIndex (infoPtr, wParam, lParam);
4598
4599         case RB_INSERTBANDA:
4600             return REBAR_InsertBandA (infoPtr, wParam, lParam);
4601
4602         case RB_INSERTBANDW:
4603             return REBAR_InsertBandW (infoPtr, wParam, lParam);
4604
4605         case RB_MAXIMIZEBAND:
4606             return REBAR_MaximizeBand (infoPtr, wParam, lParam);
4607
4608         case RB_MINIMIZEBAND:
4609             return REBAR_MinimizeBand (infoPtr, wParam, lParam);
4610
4611         case RB_MOVEBAND:
4612             return REBAR_MoveBand (infoPtr, wParam, lParam);
4613
4614         case RB_PUSHCHEVRON:
4615             return REBAR_PushChevron (infoPtr, wParam, lParam);
4616
4617         case RB_SETBANDINFOA:
4618             return REBAR_SetBandInfoA (infoPtr, wParam, lParam);
4619
4620         case RB_SETBANDINFOW:
4621             return REBAR_SetBandInfoW (infoPtr, wParam, lParam);
4622
4623         case RB_SETBARINFO:
4624             return REBAR_SetBarInfo (infoPtr, wParam, lParam);
4625
4626         case RB_SETBKCOLOR:
4627             return REBAR_SetBkColor (infoPtr, wParam, lParam);
4628
4629 /*      case RB_SETCOLORSCHEME: */
4630 /*      case RB_SETPALETTE: */
4631 /*          return REBAR_GetPalette (infoPtr, wParam, lParam); */
4632
4633         case RB_SETPARENT:
4634             return REBAR_SetParent (infoPtr, wParam, lParam);
4635
4636         case RB_SETTEXTCOLOR:
4637             return REBAR_SetTextColor (infoPtr, wParam, lParam);
4638
4639 /*      case RB_SETTOOLTIPS: */
4640
4641         case RB_SETUNICODEFORMAT:
4642             return REBAR_SetUnicodeFormat (infoPtr, wParam);
4643
4644         case CCM_SETVERSION:
4645             return REBAR_SetVersion (infoPtr, (INT)wParam);
4646
4647         case RB_SHOWBAND:
4648             return REBAR_ShowBand (infoPtr, wParam, lParam);
4649
4650         case RB_SIZETORECT:
4651             return REBAR_SizeToRect (infoPtr, wParam, lParam);
4652
4653
4654 /*    Messages passed to parent */
4655         case WM_COMMAND:
4656         case WM_DRAWITEM:
4657         case WM_NOTIFY:
4658             if (infoPtr->NtfUnicode)
4659                 return SendMessageW (REBAR_GetNotifyParent (infoPtr),
4660                                      uMsg, wParam, lParam);
4661             else
4662                 return SendMessageA (REBAR_GetNotifyParent (infoPtr),
4663                                      uMsg, wParam, lParam);
4664
4665
4666 /*      case WM_CHARTOITEM:     supported according to ControlSpy */
4667
4668         case WM_CREATE:
4669             return REBAR_Create (infoPtr, wParam, lParam);
4670
4671         case WM_DESTROY:
4672             return REBAR_Destroy (infoPtr, wParam, lParam);
4673
4674         case WM_ERASEBKGND:
4675             return REBAR_EraseBkGnd (infoPtr, wParam, lParam);
4676
4677         case WM_GETFONT:
4678             return REBAR_GetFont (infoPtr, wParam, lParam);
4679
4680 /*      case WM_LBUTTONDBLCLK:  supported according to ControlSpy */
4681
4682         case WM_LBUTTONDOWN:
4683             return REBAR_LButtonDown (infoPtr, wParam, lParam);
4684
4685         case WM_LBUTTONUP:
4686             return REBAR_LButtonUp (infoPtr, wParam, lParam);
4687
4688 /*      case WM_MEASUREITEM:    supported according to ControlSpy */
4689
4690         case WM_MOUSEMOVE:
4691             return REBAR_MouseMove (infoPtr, wParam, lParam);
4692
4693         case WM_MOUSELEAVE:
4694             return REBAR_MouseLeave (infoPtr, wParam, lParam);
4695
4696         case WM_NCCALCSIZE:
4697             return REBAR_NCCalcSize (infoPtr, wParam, lParam);
4698
4699         case WM_NCCREATE:
4700             return REBAR_NCCreate (hwnd, wParam, lParam);
4701
4702         case WM_NCHITTEST:
4703             return REBAR_NCHitTest (infoPtr, wParam, lParam);
4704
4705         case WM_NCPAINT:
4706             return REBAR_NCPaint (infoPtr, wParam, lParam);
4707
4708         case WM_NOTIFYFORMAT:
4709             return REBAR_NotifyFormat (infoPtr, wParam, lParam);
4710
4711         case WM_PAINT:
4712             return REBAR_Paint (infoPtr, wParam, lParam);
4713
4714 /*      case WM_PALETTECHANGED: supported according to ControlSpy */
4715 /*      case WM_PRINTCLIENT:    supported according to ControlSpy */
4716 /*      case WM_QUERYNEWPALETTE:supported according to ControlSpy */
4717 /*      case WM_RBUTTONDOWN:    supported according to ControlSpy */
4718 /*      case WM_RBUTTONUP:      supported according to ControlSpy */
4719
4720         case WM_SETCURSOR:
4721             return REBAR_SetCursor (infoPtr, wParam, lParam);
4722
4723         case WM_SETFONT:
4724             return REBAR_SetFont (infoPtr, wParam, lParam);
4725
4726         case WM_SETREDRAW:
4727             return REBAR_SetRedraw (infoPtr, wParam, lParam);
4728
4729         case WM_SIZE:
4730             return REBAR_Size (infoPtr, wParam, lParam);
4731
4732         case WM_STYLECHANGED:
4733             return REBAR_StyleChanged (infoPtr, wParam, lParam);
4734
4735 /*      case WM_SYSCOLORCHANGE: supported according to ControlSpy */
4736 /*      "Applications that have brushes using the existing system colors
4737          should delete those brushes and recreate them using the new
4738          system colors."  per MSDN                                */
4739
4740 /*      case WM_VKEYTOITEM:     supported according to ControlSpy */
4741 /*      case WM_WININICHANGE: */
4742
4743         case WM_WINDOWPOSCHANGED:
4744             return REBAR_WindowPosChanged (infoPtr, wParam, lParam);
4745
4746         default:
4747             if ((uMsg >= WM_USER) && (uMsg < WM_APP))
4748                 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
4749                      uMsg, wParam, lParam);
4750             return DefWindowProcA (hwnd, uMsg, wParam, lParam);
4751     }
4752     return 0;
4753 }
4754
4755
4756 VOID
4757 REBAR_Register (void)
4758 {
4759     WNDCLASSA wndClass;
4760
4761     ZeroMemory (&wndClass, sizeof(WNDCLASSA));
4762     wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS;
4763     wndClass.lpfnWndProc   = (WNDPROC)REBAR_WindowProc;
4764     wndClass.cbClsExtra    = 0;
4765     wndClass.cbWndExtra    = sizeof(REBAR_INFO *);
4766     wndClass.hCursor       = 0;
4767     wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
4768 #if GLATESTING
4769     wndClass.hbrBackground = CreateSolidBrush(RGB(0,128,0));
4770 #endif
4771     wndClass.lpszClassName = REBARCLASSNAMEA;
4772
4773     RegisterClassA (&wndClass);
4774
4775     mindragx = GetSystemMetrics (SM_CXDRAG);
4776     mindragy = GetSystemMetrics (SM_CYDRAG);
4777
4778 }
4779
4780
4781 VOID
4782 REBAR_Unregister (void)
4783 {
4784     UnregisterClassA (REBARCLASSNAMEA, NULL);
4785 }