blob: 1c4110b00f230f238b4f38044c005ec73b810e02 [file] [log] [blame]
Alexandre Julliard642d3131998-07-12 19:29:36 +00001/*
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002 * Rebar control rev 5b
Alexandre Julliard642d3131998-07-12 19:29:36 +00003 *
Eric Kohlcad17ff1999-03-12 17:42:50 +00004 * Copyright 1998, 1999 Eric Kohl
Alexandre Julliard642d3131998-07-12 19:29:36 +00005 *
6 * NOTES
Eric Kohlb075ce51998-10-24 10:47:25 +00007 * An author is needed! Any volunteers?
Alexandre Julliard642d3131998-07-12 19:29:36 +00008 * I will only improve this control once in a while.
9 * Eric <ekohl@abo.rhein-zeitung.de>
10 *
11 * TODO:
Eric Kohl12461851998-11-08 11:31:12 +000012 * - vertical placement
13 * - ComboBox and ComboBoxEx placement
Eric Kohl44443b61998-11-22 18:01:15 +000014 * - center image
Eric Kohlb075ce51998-10-24 10:47:25 +000015 * - Layout code.
16 * - Display code.
Eric Kohl44443b61998-11-22 18:01:15 +000017 * - Some messages.
18 * - All notifications.
Guy L. Albertellif82e4932000-10-12 23:09:01 +000019
20 * Changes Guy Albertelli <galberte@neo.lrun.com>
Guy L. Albertelli418efdc2000-11-13 19:29:16 +000021 * rev 2,3,4
22 * - Implement initial version of row grouping, row separators,
23 * text and background colors. Support additional messages.
24 * Support RBBS_BREAK. Implement ERASEBKGND and improve painting.
25 * rev 5
26 * 1. Support dragging by the Gripper for only left and right drags
27 * within a row. (5a)
28 * 2. Implement WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE.
29 * 3. Support RBS_BANDBORDERS.
30 * 4. Total rewrite of MouseMove code to handle multiple bands in row. (5b)
31 * 5. Fix drawing bugs.
32 *
Guy L. Albertellif82e4932000-10-12 23:09:01 +000033 * Still to do:
34 * 1. default row height should be the max height of all visible bands
35 * 2. Following still not handled: RBBS_FIXEDBMP, RBBS_CHILDEDGE,
36 * RBBS_VARIABLEHEIGHT, RBBS_USECHEVRON
37 * 3. GETBANDINFO seems to return correct colors in native but not here.
38
Alexandre Julliard642d3131998-07-12 19:29:36 +000039 */
40
Dimitrie O. Paunef7a5c12000-11-29 00:03:27 +000041#include <stdlib.h>
Jeff Garzikc3e1f721999-02-19 15:42:11 +000042#include <string.h>
43
Marcus Meissner3480e4a1999-03-16 10:53:11 +000044#include "winbase.h"
Marcus Meissner9f3eb191999-05-22 11:22:36 +000045#include "wingdi.h"
Alexandre Julliardc7e7df82000-08-14 14:41:19 +000046#include "wine/unicode.h"
Alexandre Julliard642d3131998-07-12 19:29:36 +000047#include "commctrl.h"
Alexandre Julliarda099a551999-06-12 15:45:58 +000048#include "debugtools.h"
Alexandre Julliard642d3131998-07-12 19:29:36 +000049
Alexandre Julliard70c9e092000-08-09 00:41:17 +000050DEFAULT_DEBUG_CHANNEL(rebar);
51
52typedef struct
53{
54 UINT fStyle;
Guy L. Albertellif82e4932000-10-12 23:09:01 +000055 UINT fMask;
Alexandre Julliard70c9e092000-08-09 00:41:17 +000056 COLORREF clrFore;
57 COLORREF clrBack;
58 INT iImage;
59 HWND hwndChild;
60 UINT cxMinChild;
61 UINT cyMinChild;
62 UINT cx;
63 HBITMAP hbmBack;
64 UINT wID;
65 UINT cyChild;
66 UINT cyMaxChild;
67 UINT cyIntegral;
68 UINT cxIdeal;
69 LPARAM lParam;
70 UINT cxHeader;
71
Guy L. Albertellif82e4932000-10-12 23:09:01 +000072 UINT lcx; /* minimum cx for band */
73 UINT hcx; /* maximum cx for band */
74 UINT lcy; /* minimum cy for band */
75 UINT hcy; /* maximum cy for band */
76
Guy L. Albertelli418efdc2000-11-13 19:29:16 +000077 SIZE offChild; /* x,y offset if child is not FIXEDSIZE */
Alexandre Julliard70c9e092000-08-09 00:41:17 +000078 UINT uMinHeight;
Guy L. Albertellif82e4932000-10-12 23:09:01 +000079 INT iRow; /* row this band assigned to */
Alexandre Julliard70c9e092000-08-09 00:41:17 +000080 UINT fDraw; /* drawing flags */
81 RECT rcBand; /* calculated band rectangle */
82 RECT rcGripper; /* calculated gripper rectangle */
83 RECT rcCapImage; /* calculated caption image rectangle */
84 RECT rcCapText; /* calculated caption text rectangle */
85 RECT rcChild; /* calculated child rectangle */
86
87 LPWSTR lpText;
88 HWND hwndPrevParent;
89} REBAR_BAND;
90
Guy L. Albertelli418efdc2000-11-13 19:29:16 +000091/* fDraw flags */
92#define DRAW_GRIPPER 1
93#define DRAW_IMAGE 2
94#define DRAW_TEXT 4
95#define DRAW_CHILD 8
96#define DRAW_SEP 16
97
98
Alexandre Julliard70c9e092000-08-09 00:41:17 +000099typedef struct
100{
101 COLORREF clrBk; /* background color */
102 COLORREF clrText; /* text color */
103 HIMAGELIST himl; /* handle to imagelist */
104 UINT uNumBands; /* number of bands in the rebar */
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000105 UINT uNumRows; /* number of rows of bands */
Alexandre Julliard70c9e092000-08-09 00:41:17 +0000106 HWND hwndToolTip; /* handle to the tool tip control */
107 HWND hwndNotify; /* notification window (parent) */
108 HFONT hFont; /* handle to the rebar's font */
109 SIZE imageSize; /* image size (image list) */
110
111 SIZE calcSize; /* calculated rebar size */
Alexandre Julliard70c9e092000-08-09 00:41:17 +0000112 BOOL bUnicode; /* Unicode flag */
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000113 UINT fStatus; /* Status flags (see below) */
Alexandre Julliard70c9e092000-08-09 00:41:17 +0000114 HCURSOR hcurArrow; /* handle to the arrow cursor */
115 HCURSOR hcurHorz; /* handle to the EW cursor */
116 HCURSOR hcurVert; /* handle to the NS cursor */
117 HCURSOR hcurDrag; /* handle to the drag cursor */
118 INT iVersion; /* version number */
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000119 POINTS dragStart; /* x,y of button down */
120 POINTS dragNow; /* x,y of this MouseMove */
121 INT ihitBand; /* band number of band whose gripper was grabbed */
122 INT ihitoffset; /* offset of hotspot from gripper.left */
Alexandre Julliard70c9e092000-08-09 00:41:17 +0000123
124 REBAR_BAND *bands; /* pointer to the array of rebar bands */
125} REBAR_INFO;
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +0000126
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000127/* fStatus flags */
128#define BEGIN_DRAG_ISSUED 1
129#define AUTO_RESIZE 2
Alexandre Julliard642d3131998-07-12 19:29:36 +0000130
Eric Kohlb075ce51998-10-24 10:47:25 +0000131
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000132#define GRIPPER_WIDTH 8
133#define GRIPPER_HEIGHT 16
134#define SEP_WIDTH 3
Eric Kohlb075ce51998-10-24 10:47:25 +0000135
Guy L. Albertelli3c7df5c2000-10-29 01:16:26 +0000136/* This is the increment that is used over the band height */
137/* Determined by experiment. */
138#define REBARSPACE 4
139
Eric Kohlcad17ff1999-03-12 17:42:50 +0000140#define REBAR_GetInfoPtr(wndPtr) ((REBAR_INFO *)GetWindowLongA (hwnd, 0))
Alexandre Julliard642d3131998-07-12 19:29:36 +0000141
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000142
143/* "constant values" retrieved when DLL was initialized */
144/* FIXME we do this when the classes are registered. */
145static UINT mindragx = 0;
146static UINT mindragy = 0;
147
148
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000149static VOID
150REBAR_DumpBandInfo( LPREBARBANDINFOA pB)
151{
152 TRACE("band info: ID=%u, size=%u, style=0x%08x, mask=0x%08x, child=%04x\n",
153 pB->wID, pB->cbSize, pB->fStyle, pB->fMask, pB->hwndChild);
154 TRACE("band info: cx=%u, xMin=%u, yMin=%u, yChild=%u, yMax=%u, yIntgl=%u\n",
155 pB->cx, pB->cxMinChild,
156 pB->cyMinChild, pB->cyChild, pB->cyMaxChild, pB->cyIntegral);
157 TRACE("band info: xIdeal=%u, xHeader=%u, lParam=0x%08lx, clrF=0x%06lx, clrB=0x%06lx\n",
158 pB->cxIdeal, pB->cxHeader, pB->lParam, pB->clrFore, pB->clrBack);
159}
Alexandre Julliard642d3131998-07-12 19:29:36 +0000160
Eric Kohlb075ce51998-10-24 10:47:25 +0000161static VOID
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000162REBAR_DumpBand (HWND hwnd)
163{
164 REBAR_INFO *iP = REBAR_GetInfoPtr (hwnd);
165 REBAR_BAND *pB;
166 UINT i;
167
168 if( TRACE_ON(rebar) ) {
169
170 TRACE("hwnd=%04x: color=%08lx/%08lx, bands=%u, rows=%u, cSize=%ld,%ld\n",
171 hwnd, iP->clrText, iP->clrBk, iP->uNumBands, iP->uNumRows,
172 iP->calcSize.cx, iP->calcSize.cy);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000173 TRACE("hwnd=%04x: flags=%08x, dragStart=%d,%d, dragNow=%d,%d, ihitBand=%d\n",
174 hwnd, iP->fStatus, iP->dragStart.x, iP->dragStart.y,
175 iP->dragNow.x, iP->dragNow.y,
176 iP->ihitBand);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000177 for (i = 0; i < iP->uNumBands; i++) {
178 pB = &iP->bands[i];
179 TRACE("band # %u: ID=%u, mask=0x%08x, style=0x%08x, child=%04x, row=%u\n",
180 i, pB->wID, pB->fMask, pB->fStyle, pB->hwndChild, pB->iRow);
181 TRACE("band # %u: xMin=%u, yMin=%u, cx=%u, yChild=%u, yMax=%u, yIntgl=%u, uMinH=%u,\n",
182 i, pB->cxMinChild, pB->cyMinChild, pB->cx,
183 pB->cyChild, pB->cyMaxChild, pB->cyIntegral, pB->uMinHeight);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000184 TRACE("band # %u: header=%u, lcx=%u, hcx=%u, lcy=%u, hcy=%u, offChild=%ld,%ld\n",
185 i, pB->cxHeader, pB->lcx, pB->hcx, pB->lcy, pB->hcy, pB->offChild.cx, pB->offChild.cy);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000186 TRACE("band # %u: fDraw=%08x, Band=(%d,%d)-(%d,%d), Grip=(%d,%d)-(%d,%d)\n",
187 i, pB->fDraw,
188 pB->rcBand.left, pB->rcBand.top, pB->rcBand.right, pB->rcBand.bottom,
189 pB->rcGripper.left, pB->rcGripper.top, pB->rcGripper.right, pB->rcGripper.bottom);
190 TRACE("band # %u: Img=(%d,%d)-(%d,%d), Txt=(%d,%d)-(%d,%d), Child=(%d,%d)-(%d,%d)\n",
191 i,
192 pB->rcCapImage.left, pB->rcCapImage.top, pB->rcCapImage.right, pB->rcCapImage.bottom,
193 pB->rcCapText.left, pB->rcCapText.top, pB->rcCapText.right, pB->rcCapText.bottom,
194 pB->rcChild.left, pB->rcChild.top, pB->rcChild.right, pB->rcChild.bottom);
195 }
196
197 }
198}
199
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000200static void
201REBAR_Notify (HWND hwnd, NMHDR *nmhdr, UINT code)
202{
203 HWND parent, owner;
204
205 parent = GetParent (hwnd);
206 owner = GetWindow (hwnd, GW_OWNER);
207 if (owner) parent = owner;
208 nmhdr->idFrom = GetDlgCtrlID (hwnd);
209 nmhdr->hwndFrom = hwnd;
210 nmhdr->code = code;
211
212 SendMessageA (parent, WM_NOTIFY, (WPARAM) nmhdr->idFrom,
213 (LPARAM)nmhdr);
214}
215
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000216static VOID
217REBAR_DrawBand (HDC hdc, REBAR_INFO *infoPtr, REBAR_BAND *lpBand, DWORD dwStyle)
Eric Kohlb075ce51998-10-24 10:47:25 +0000218{
219
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000220 /* draw separator */
221 if (lpBand->fDraw & DRAW_SEP) {
222 RECT rcSep;
223 if (dwStyle & CCS_VERT)
224 SetRect (&rcSep, lpBand->rcBand.left-2, lpBand->rcBand.top-SEP_WIDTH,
225 lpBand->rcBand.right+2, lpBand->rcBand.top-1);
226 else
227 SetRect (&rcSep, lpBand->rcBand.left-SEP_WIDTH, lpBand->rcBand.top-2,
228 lpBand->rcBand.left-1, lpBand->rcBand.bottom+2);
229 TRACE("drawing band separator (%d,%d)-(%d,%d)\n",
230 rcSep.left, rcSep.top, rcSep.right, rcSep.bottom);
231 DrawEdge (hdc, &rcSep, EDGE_ETCHED, BF_LEFT | BF_TOP | BF_MIDDLE);
232 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000233
Eric Kohlb075ce51998-10-24 10:47:25 +0000234 /* draw gripper */
235 if (lpBand->fDraw & DRAW_GRIPPER)
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000236 DrawEdge (hdc, &lpBand->rcGripper, BDR_RAISEDINNER, BF_RECT | BF_MIDDLE);
Eric Kohlb075ce51998-10-24 10:47:25 +0000237
238 /* draw caption image */
Eric Kohl44443b61998-11-22 18:01:15 +0000239 if (lpBand->fDraw & DRAW_IMAGE) {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000240 POINT pt;
Eric Kohl44443b61998-11-22 18:01:15 +0000241
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000242 /* center image */
Eric Kohl44443b61998-11-22 18:01:15 +0000243 pt.y = (lpBand->rcCapImage.bottom + lpBand->rcCapImage.top - infoPtr->imageSize.cy)/2;
244 pt.x = (lpBand->rcCapImage.right + lpBand->rcCapImage.left - infoPtr->imageSize.cx)/2;
245
Eric Kohlb075ce51998-10-24 10:47:25 +0000246 ImageList_Draw (infoPtr->himl, lpBand->iImage, hdc,
Eric Kohl44443b61998-11-22 18:01:15 +0000247 pt.x, pt.y,
Eric Kohlb075ce51998-10-24 10:47:25 +0000248 ILD_TRANSPARENT);
Eric Kohl44443b61998-11-22 18:01:15 +0000249 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000250
251 /* draw caption text */
252 if (lpBand->fDraw & DRAW_TEXT) {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000253 HFONT hOldFont = SelectObject (hdc, infoPtr->hFont);
254 INT oldBkMode = SetBkMode (hdc, TRANSPARENT);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000255 COLORREF oldcolor = CLR_NONE;
256 if (lpBand->clrFore != CLR_NONE)
257 oldcolor = SetTextColor (hdc, lpBand->clrFore);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000258 DrawTextW (hdc, lpBand->lpText, -1, &lpBand->rcCapText,
Eric Kohlb075ce51998-10-24 10:47:25 +0000259 DT_CENTER | DT_VCENTER | DT_SINGLELINE);
260 if (oldBkMode != TRANSPARENT)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000261 SetBkMode (hdc, oldBkMode);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000262 if (lpBand->clrFore != CLR_NONE)
263 SetTextColor (hdc, oldcolor);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000264 SelectObject (hdc, hOldFont);
Eric Kohlb075ce51998-10-24 10:47:25 +0000265 }
266}
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000267
268
269static VOID
Eric Kohlcad17ff1999-03-12 17:42:50 +0000270REBAR_Refresh (HWND hwnd, HDC hdc)
Alexandre Julliarda0d77311998-09-13 16:32:00 +0000271{
Eric Kohlcad17ff1999-03-12 17:42:50 +0000272 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +0000273 REBAR_BAND *lpBand;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000274 UINT i, oldrow;
275 RECT rcRowSep;
276 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
Eric Kohlb075ce51998-10-24 10:47:25 +0000277
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000278 oldrow = infoPtr->bands[0].iRow;
Eric Kohlb075ce51998-10-24 10:47:25 +0000279 for (i = 0; i < infoPtr->uNumBands; i++) {
280 lpBand = &infoPtr->bands[i];
281
282 if ((lpBand->fStyle & RBBS_HIDDEN) ||
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000283 ((dwStyle & CCS_VERT) &&
Eric Kohlcad17ff1999-03-12 17:42:50 +0000284 (lpBand->fStyle & RBBS_NOVERT)))
Eric Kohlb075ce51998-10-24 10:47:25 +0000285 continue;
286
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000287 /* if a new row then draw a separator */
288 if (oldrow != lpBand->iRow) {
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000289 if (dwStyle & RBS_BANDBORDERS) {
290 if (dwStyle & CCS_VERT) {
291 SetRect (&rcRowSep, lpBand->rcBand.left-2, 0,
292 lpBand->rcBand.left-1, infoPtr->calcSize.cy);
293 }
294 else {
295 SetRect (&rcRowSep, 0, lpBand->rcBand.top-2,
296 infoPtr->calcSize.cx, lpBand->rcBand.top-1);
297 }
298 TRACE ("drawing row sep (%d,%d)-(%d,%d)\n",
299 rcRowSep.left, rcRowSep.top,
300 rcRowSep.right, rcRowSep.bottom);
301 DrawEdge (hdc, &rcRowSep, EDGE_ETCHED, BF_TOP|BF_LEFT);
302 oldrow = lpBand->iRow;
303 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000304 }
305
306 /* now draw the band */
307 REBAR_DrawBand (hdc, infoPtr, lpBand, dwStyle);
Eric Kohlb075ce51998-10-24 10:47:25 +0000308
309 }
310}
311
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000312static void
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000313REBAR_AdjustBands (REBAR_INFO *infoPtr, UINT rowstart, UINT rowend,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000314 INT maxx, INT usedx, INT mcy, DWORD dwStyle)
315 /* Function: This routine distributes the extra space in a row */
316 /* evenly over the adjustable bands in the row. It also makes */
317 /* sure that all bands in the row are the same height. */
Eric Kohlb075ce51998-10-24 10:47:25 +0000318{
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000319 REBAR_BAND *lpBand;
320 UINT i, j;
321 INT incr, lastx=0;
Eric Kohlb075ce51998-10-24 10:47:25 +0000322
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000323 TRACE("start=%u, end=%u, max x=%d, used x=%d, max y=%d\n",
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000324 rowstart, rowend-1, maxx, usedx, mcy);
Eric Kohlb075ce51998-10-24 10:47:25 +0000325
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000326 j = 0;
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000327 for (i = rowstart; i<rowend; i++) {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000328 lpBand = &infoPtr->bands[i];
329 if ((lpBand->fMask & RBBIM_CHILD) && lpBand->hwndChild &&
330 !(lpBand->fStyle & RBBS_FIXEDSIZE))
331 j++;
332 }
333 if (j)
334 incr = (maxx-usedx) / j;
335 else
336 incr = 0;
337
338 TRACE("adjusting %u of %u bands in row, incr=%d\n",
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000339 j, rowend-rowstart, incr);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000340
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000341 for (i = rowstart; i<rowend; i++) {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000342 lpBand = &infoPtr->bands[i];
343 if (dwStyle & CCS_VERT) {
344 lpBand->rcBand.bottom = lastx +
345 lpBand->rcBand.bottom - lpBand->rcBand.top;
346 if ((lpBand->fMask & RBBIM_CHILD) && lpBand->hwndChild &&
347 !(lpBand->fStyle & RBBS_FIXEDSIZE)) {
348 /* if a child window exists and not fixed then widen it */
349 lpBand->rcBand.bottom += incr;
350 }
351 lpBand->rcBand.top = lastx;
352 lastx = lpBand->rcBand.bottom + 1;
353 lpBand->rcBand.right = lpBand->rcBand.left + mcy;
354 }
355 else {
356 lpBand->rcBand.right = lastx +
357 lpBand->rcBand.right - lpBand->rcBand.left;
358 if ((lpBand->fMask & RBBIM_CHILD) && lpBand->hwndChild &&
359 !(lpBand->fStyle & RBBS_FIXEDSIZE)) {
360 /* if a child window exists and not fixed then widen it */
361 lpBand->rcBand.right += incr;
362 }
363 lpBand->rcBand.left = lastx;
364 lastx = lpBand->rcBand.right + 1;
365 lpBand->rcBand.bottom = lpBand->rcBand.top + mcy;
366 }
367 }
368
369}
370
371static void
372REBAR_CalcHorzBand (HWND hwnd, REBAR_INFO *infoPtr, UINT rstart, UINT rend, BOOL notify, DWORD dwStyle)
373 /* Function: this routine initializes all the rectangles in */
374 /* each band in a row to fit in the adjusted rcBand rect. */
375 /* *** Supports only Horizontal bars. *** */
376{
377 REBAR_BAND *lpBand;
378 UINT i, xoff, yoff;
379 NMREBARCHILDSIZE rbcz;
380 HWND parenthwnd;
381 RECT oldChild;
382
383 rbcz.hdr.hwndFrom = hwnd;
384 rbcz.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
385 /* MS seems to use GetDlgCtrlID() for above GetWindowLong call */
386 parenthwnd = GetParent (hwnd);
387
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000388 for(i=rstart; i<rend; i++){
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000389 lpBand = &infoPtr->bands[i];
390 oldChild = lpBand->rcChild;
391
392 /* set initial gripper rectangle */
393 SetRect (&lpBand->rcGripper, lpBand->rcBand.left, lpBand->rcBand.top,
394 lpBand->rcBand.left, lpBand->rcBand.bottom);
395
396 /* calculate gripper rectangle */
397 if ((!(lpBand->fStyle & RBBS_NOGRIPPER)) &&
398 (!(lpBand->fStyle & RBBS_FIXEDSIZE)) &&
399 ((lpBand->fStyle & RBBS_GRIPPERALWAYS) ||
400 (infoPtr->uNumBands > 1))) {
401 lpBand->fDraw |= DRAW_GRIPPER;
402 lpBand->rcGripper.left += 1;
403 lpBand->rcGripper.right = lpBand->rcGripper.left + 3;
404 lpBand->rcGripper.top += 3;
405 lpBand->rcGripper.bottom -= 3;
406
407 SetRect (&lpBand->rcCapImage, lpBand->rcGripper.left + GRIPPER_WIDTH,
408 lpBand->rcBand.top, lpBand->rcGripper.left + GRIPPER_WIDTH,
409 lpBand->rcBand.bottom);
410 }
411 else {
412 SetRect (&lpBand->rcCapImage, lpBand->rcBand.left, lpBand->rcBand.top,
413 lpBand->rcBand.left, lpBand->rcBand.bottom);
414 }
415
416 /* image is visible */
417 if ((lpBand->fMask & RBBIM_IMAGE) && (infoPtr->himl)) {
Eric Kohlb075ce51998-10-24 10:47:25 +0000418 lpBand->fDraw |= DRAW_IMAGE;
419
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000420 lpBand->rcCapImage.right += infoPtr->imageSize.cx;
Eric Kohlb075ce51998-10-24 10:47:25 +0000421 lpBand->rcCapImage.bottom = lpBand->rcCapImage.top + infoPtr->imageSize.cy;
422
423 /* update band height */
424 if (lpBand->uMinHeight < infoPtr->imageSize.cy + 2) {
425 lpBand->uMinHeight = infoPtr->imageSize.cy + 2;
426 lpBand->rcBand.bottom = lpBand->rcBand.top + lpBand->uMinHeight;
427 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000428 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000429
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000430 /* set initial caption text rectangle */
431 SetRect (&lpBand->rcCapText, lpBand->rcCapImage.right, lpBand->rcBand.top+1,
432 lpBand->rcCapImage.right, lpBand->rcBand.bottom-1);
Eric Kohlb075ce51998-10-24 10:47:25 +0000433
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000434 /* text is visible */
435 if ((lpBand->fMask & RBBIM_TEXT) && (lpBand->lpText)) {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000436 HDC hdc = GetDC (0);
437 HFONT hOldFont = SelectObject (hdc, infoPtr->hFont);
438 SIZE size;
Eric Kohlb075ce51998-10-24 10:47:25 +0000439
440 lpBand->fDraw |= DRAW_TEXT;
Eric Kohl44443b61998-11-22 18:01:15 +0000441 GetTextExtentPoint32W (hdc, lpBand->lpText,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000442 lstrlenW (lpBand->lpText), &size);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000443 lpBand->rcCapText.right += (size.cx + 2);
Eric Kohlb075ce51998-10-24 10:47:25 +0000444
Alexandre Julliarda3960291999-02-26 11:11:13 +0000445 SelectObject (hdc, hOldFont);
446 ReleaseDC (0, hdc);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000447 }
448
449 /* set initial child window rectangle if there is a child */
450 if (lpBand->fMask & RBBIM_CHILD) {
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000451 xoff = lpBand->offChild.cx;
452 yoff = lpBand->offChild.cy;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000453 SetRect (&lpBand->rcChild,
454 lpBand->rcBand.left+lpBand->cxHeader+xoff, lpBand->rcBand.top+yoff,
455 lpBand->rcBand.right-xoff, lpBand->rcBand.bottom-yoff);
456 }
457 else {
458 SetRect (&lpBand->rcChild,
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000459 lpBand->rcCapText.right, lpBand->rcBand.top,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000460 lpBand->rcBand.right, lpBand->rcBand.bottom);
461 }
462
463#if 1
464 /* do notify is child rectangle changed */
465 if (notify && !EqualRect (&oldChild, &lpBand->rcChild)) {
466 TRACE("Child rectangle changed for band %u\n", i);
467 TRACE(" from (%d,%d)-(%d,%d) to (%d,%d)-(%d,%d)\n",
468 oldChild.left, oldChild.top,
469 oldChild.right, oldChild.bottom,
470 lpBand->rcChild.left, lpBand->rcChild.top,
471 lpBand->rcChild.right, lpBand->rcChild.bottom);
472 rbcz.hdr.code = RBN_CHILDSIZE;
473 rbcz.uBand = i;
474 rbcz.wID = lpBand->wID;
475 rbcz.rcChild = lpBand->rcChild;
476 rbcz.rcBand = lpBand->rcBand;
477 SendMessageA (parenthwnd, WM_NOTIFY, (WPARAM) rbcz.hdr.idFrom,
478 (LPARAM)&rbcz);
479 if (!EqualRect (&lpBand->rcChild, &rbcz.rcChild)) {
480 TRACE("Child rect changed by NOTIFY for band %u\n", i);
481 TRACE(" from (%d,%d)-(%d,%d) to (%d,%d)-(%d,%d)\n",
482 lpBand->rcChild.left, lpBand->rcChild.top,
483 lpBand->rcChild.right, lpBand->rcChild.bottom,
484 rbcz.rcChild.left, rbcz.rcChild.top,
485 rbcz.rcChild.right, rbcz.rcChild.bottom);
486 }
487 }
488#endif
489
Eric Kohlb075ce51998-10-24 10:47:25 +0000490 }
491
Eric Kohlb075ce51998-10-24 10:47:25 +0000492}
493
Eric Kohl12461851998-11-08 11:31:12 +0000494
495static VOID
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000496REBAR_CalcVertBand (HWND hwnd, REBAR_INFO *infoPtr, UINT rstart, UINT rend, BOOL notify, DWORD dwStyle)
497 /* Function: this routine initializes all the rectangles in */
498 /* each band in a row to fit in the adjusted rcBand rect. */
499 /* *** Supports only Vertical bars. *** */
Eric Kohl12461851998-11-08 11:31:12 +0000500{
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000501 REBAR_BAND *lpBand;
502 UINT i, xoff, yoff;
503 NMREBARCHILDSIZE rbcz;
504 HWND parenthwnd;
505 RECT oldChild;
Eric Kohl12461851998-11-08 11:31:12 +0000506
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000507 rbcz.hdr.hwndFrom = hwnd;
508 rbcz.hdr.idFrom = GetWindowLongA (hwnd, GWL_ID);
509 /* MS seems to use GetDlgCtrlID() for above GetWindowLong call */
510 parenthwnd = GetParent (hwnd);
Eric Kohl12461851998-11-08 11:31:12 +0000511
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000512 for(i=rstart; i<rend; i++){
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000513 lpBand = &infoPtr->bands[i];
514 oldChild = lpBand->rcChild;
515
516 /* set initial gripper rectangle */
517 SetRect (&lpBand->rcGripper, lpBand->rcBand.left, lpBand->rcBand.top,
518 lpBand->rcBand.right, lpBand->rcBand.top);
519
520 /* calculate gripper rectangle */
521 if ((!(lpBand->fStyle & RBBS_NOGRIPPER)) &&
522 (!(lpBand->fStyle & RBBS_FIXEDSIZE)) &&
523 ((lpBand->fStyle & RBBS_GRIPPERALWAYS) ||
524 (infoPtr->uNumBands > 1))) {
525 lpBand->fDraw |= DRAW_GRIPPER;
526
527 if (dwStyle & RBS_VERTICALGRIPPER) {
528 /* vertical gripper */
529 lpBand->rcGripper.left += 3;
530 lpBand->rcGripper.right = lpBand->rcGripper.left + 3;
531 lpBand->rcGripper.top += 3;
532 lpBand->rcGripper.bottom = lpBand->rcGripper.top + GRIPPER_HEIGHT;
533
534 /* initialize Caption image rectangle */
535 SetRect (&lpBand->rcCapImage, lpBand->rcBand.left,
536 lpBand->rcGripper.top + GRIPPER_HEIGHT,
537 lpBand->rcBand.right,
538 lpBand->rcGripper.top + GRIPPER_HEIGHT);
539 }
540 else {
541 /* horizontal gripper */
542 lpBand->rcGripper.left += 3;
543 lpBand->rcGripper.right -= 3;
544 lpBand->rcGripper.top += 3;
545 lpBand->rcGripper.bottom = lpBand->rcGripper.top + 3;
546
547 /* initialize Caption image rectangle */
548 SetRect (&lpBand->rcCapImage, lpBand->rcBand.left,
549 lpBand->rcGripper.top + GRIPPER_WIDTH,
550 lpBand->rcBand.right,
551 lpBand->rcGripper.top + GRIPPER_WIDTH);
552 }
553 }
554 else {
555 /* initialize Caption image rectangle */
556 SetRect (&lpBand->rcCapImage, lpBand->rcBand.left, lpBand->rcBand.top,
557 lpBand->rcBand.right, lpBand->rcBand.top);
558 }
559
560 /* image is visible */
561 if ((lpBand->fMask & RBBIM_IMAGE) && (infoPtr->himl)) {
Eric Kohl12461851998-11-08 11:31:12 +0000562 lpBand->fDraw |= DRAW_IMAGE;
563
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000564 lpBand->rcCapImage.right += infoPtr->imageSize.cx;
565 lpBand->rcCapImage.bottom += infoPtr->imageSize.cy;
Eric Kohl12461851998-11-08 11:31:12 +0000566
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000567 /* update band height */
Eric Kohl12461851998-11-08 11:31:12 +0000568 if (lpBand->uMinHeight < infoPtr->imageSize.cx + 2) {
569 lpBand->uMinHeight = infoPtr->imageSize.cx + 2;
570 lpBand->rcBand.right = lpBand->rcBand.left + lpBand->uMinHeight;
571 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000572 }
Eric Kohl12461851998-11-08 11:31:12 +0000573
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000574 /* set initial caption text rectangle */
575 lpBand->rcCapText.left = lpBand->rcBand.left + 1;
576 lpBand->rcCapText.top = lpBand->rcCapImage.bottom;
577 lpBand->rcCapText.right = lpBand->rcBand.right - 1;
578 lpBand->rcCapText.bottom = lpBand->rcCapText.top;
Eric Kohl12461851998-11-08 11:31:12 +0000579
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000580 /* text is visible */
581 if (lpBand->lpText) {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000582 HDC hdc = GetDC (0);
583 HFONT hOldFont = SelectObject (hdc, infoPtr->hFont);
584 SIZE size;
Eric Kohl12461851998-11-08 11:31:12 +0000585
586 lpBand->fDraw |= DRAW_TEXT;
Eric Kohl44443b61998-11-22 18:01:15 +0000587 GetTextExtentPoint32W (hdc, lpBand->lpText,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000588 lstrlenW (lpBand->lpText), &size);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000589 lpBand->rcCapText.bottom += (size.cy + 2);
Eric Kohl12461851998-11-08 11:31:12 +0000590
Alexandre Julliarda3960291999-02-26 11:11:13 +0000591 SelectObject (hdc, hOldFont);
592 ReleaseDC (0, hdc);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000593 }
Eric Kohl12461851998-11-08 11:31:12 +0000594
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000595 /* set initial child window rectangle if there is a child */
596 if (lpBand->fMask & RBBIM_CHILD) {
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000597 yoff = lpBand->offChild.cx;
598 xoff = lpBand->offChild.cy;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000599 SetRect (&lpBand->rcChild,
600 lpBand->rcBand.left+xoff,
601 lpBand->rcBand.top+lpBand->cxHeader+yoff,
602 lpBand->rcBand.right-xoff, lpBand->rcBand.bottom-yoff);
603 }
604 else {
605 SetRect (&lpBand->rcChild,
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000606 lpBand->rcBand.left, lpBand->rcCapText.bottom,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000607 lpBand->rcBand.right, lpBand->rcBand.top);
608 }
Eric Kohl12461851998-11-08 11:31:12 +0000609
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000610#if 1
611 /* do notify is child rectangle changed */
612 if (notify && !EqualRect (&oldChild, &lpBand->rcChild)) {
613 TRACE("Child rectangle changed for band %u\n", i);
614 TRACE(" from (%d,%d)-(%d,%d) to (%d,%d)-(%d,%d)\n",
615 oldChild.left, oldChild.top,
616 oldChild.right, oldChild.bottom,
617 lpBand->rcChild.left, lpBand->rcChild.top,
618 lpBand->rcChild.right, lpBand->rcChild.bottom);
619 rbcz.hdr.code = RBN_CHILDSIZE;
620 rbcz.uBand = i;
621 rbcz.wID = lpBand->wID;
622 rbcz.rcChild = lpBand->rcChild;
623 rbcz.rcBand = lpBand->rcBand;
624 SendMessageA (parenthwnd, WM_NOTIFY, (WPARAM) rbcz.hdr.idFrom,
625 (LPARAM)&rbcz);
626 if (!EqualRect (&lpBand->rcChild, &rbcz.rcChild)) {
627 TRACE("Child rect changed by NOTIFY for band %u\n", i);
628 TRACE(" from (%d,%d)-(%d,%d) to (%d,%d)-(%d,%d)\n",
629 lpBand->rcChild.left, lpBand->rcChild.top,
630 lpBand->rcChild.right, lpBand->rcChild.bottom,
631 rbcz.rcChild.left, rbcz.rcChild.top,
632 rbcz.rcChild.right, rbcz.rcChild.bottom);
Eric Kohl44443b61998-11-22 18:01:15 +0000633 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000634 }
635#endif
Eric Kohl44443b61998-11-22 18:01:15 +0000636
Eric Kohl12461851998-11-08 11:31:12 +0000637 }
638}
639
640
Eric Kohlb075ce51998-10-24 10:47:25 +0000641static VOID
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000642REBAR_Layout (HWND hwnd, LPRECT lpRect, BOOL notify, BOOL resetclient)
643 /* Function: This routine is resposible for laying out all */
644 /* the bands in a rebar. It assigns each band to a row and*/
645 /* determines when to start a new row. */
Eric Kohlb075ce51998-10-24 10:47:25 +0000646{
Eric Kohlcad17ff1999-03-12 17:42:50 +0000647 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
648 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
Eric Kohlb075ce51998-10-24 10:47:25 +0000649 REBAR_BAND *lpBand;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000650 RECT rcClient, rcAdj;
651 INT x, y, cx, cxsep, mcy, clientcx, clientcy, adjcx, adjcy, row, rightx, bottomy;
652 UINT i, rowstartband;
653 BOOL dobreak;
Eric Kohlb075ce51998-10-24 10:47:25 +0000654
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000655 GetClientRect (hwnd, &rcClient);
656 TRACE("Client is (%d,%d)-(%d,%d)\n",
657 rcClient.left, rcClient.top, rcClient.right, rcClient.bottom);
Eric Kohlb075ce51998-10-24 10:47:25 +0000658
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000659 if (lpRect) {
660 rcAdj = *lpRect;
661 TRACE("adjustment rect is (%d,%d)-(%d,%d)\n",
662 rcAdj.left, rcAdj.top, rcAdj.right, rcAdj.bottom);
Eric Kohl12461851998-11-08 11:31:12 +0000663 }
664 else {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000665 CopyRect (&rcAdj, &rcClient);
Eric Kohl12461851998-11-08 11:31:12 +0000666 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000667
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000668 clientcx = rcClient.right - rcClient.left;
669 clientcy = rcClient.bottom - rcClient.top;
670 adjcx = rcAdj.right - rcAdj.left;
671 adjcy = rcAdj.bottom - rcAdj.top;
672 if (resetclient) {
673 TRACE("window client rect will be set to adj rect\n");
674 clientcx = adjcx;
675 clientcy = adjcy;
676 }
677 x = 0;
678 y = 0;
679 rowstartband = 0;
680 row = 1;
681 cx = 0;
682 mcy = 0;
683
Eric Kohlb075ce51998-10-24 10:47:25 +0000684 for (i = 0; i < infoPtr->uNumBands; i++) {
685 lpBand = &infoPtr->bands[i];
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000686 lpBand->fDraw = 0;
687 lpBand->iRow = row;
Eric Kohlb075ce51998-10-24 10:47:25 +0000688
689 if ((lpBand->fStyle & RBBS_HIDDEN) ||
Eric Kohlcad17ff1999-03-12 17:42:50 +0000690 ((dwStyle & CCS_VERT) && (lpBand->fStyle & RBBS_NOVERT)))
Eric Kohlb075ce51998-10-24 10:47:25 +0000691 continue;
692
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000693 cxsep = (x==0) ? 0 : SEP_WIDTH; /* separator from previous band */
694 cx = lpBand->cxHeader + /* Header: includes gripper, text, image */
695 lpBand->hcx; /* coumpted size of child */
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000696 if (dwStyle & CCS_VERT)
697 dobreak = (y + cx + cxsep > adjcy);
698 else
699 dobreak = (x + cx + cxsep > adjcx);
700 /* This is the check for whether we need to start a new row */
Guy L. Albertelli88801952000-10-31 01:49:00 +0000701 if ( ( (lpBand->fStyle & RBBS_BREAK) && (i != 0) ) ||
Guy L. Albertelli3c7df5c2000-10-29 01:16:26 +0000702 ( ((dwStyle & CCS_VERT) ? (y != 0) : (x != 0)) && dobreak)) {
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000703 INT borders;
Eric Kohlb075ce51998-10-24 10:47:25 +0000704
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000705 TRACE("Spliting to new row %d on band %u\n", row+1, i);
706 borders = (dwStyle & RBS_BANDBORDERS) ? 2 : 0;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000707 if (dwStyle & CCS_VERT) {
708 /* first adjust all bands in previous current row to */
709 /* redistribute extra x pixels */
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000710 REBAR_AdjustBands (infoPtr, rowstartband, i,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000711 clientcy, y, mcy, dwStyle);
712 /* calculate band subrectangles and break to new row */
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000713 REBAR_CalcVertBand (hwnd, infoPtr, rowstartband, i,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000714 notify, dwStyle);
715 y = 0;
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000716 x += (mcy + borders);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000717 }
718 else {
719 /* first adjust all bands in previous current row to */
720 /* redistribute extra x pixels */
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000721 REBAR_AdjustBands (infoPtr, rowstartband, i,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000722 clientcx, x, mcy, dwStyle);
723 /* calculate band subrectangles and break to new row */
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000724 REBAR_CalcHorzBand (hwnd, infoPtr, rowstartband, i,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000725 notify, dwStyle);
726 x = 0;
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000727 y += (mcy + borders);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000728 }
729
730 /* FIXME: if not RBS_VARHEIGHT then find max */
731 mcy = 0;
732 cxsep = 0;
733 row++;
734 rowstartband = i;
735 lpBand->iRow = row;
Eric Kohl12461851998-11-08 11:31:12 +0000736 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000737
Guy L. Albertelli3c7df5c2000-10-29 01:16:26 +0000738 if (mcy < lpBand->lcy + REBARSPACE) mcy = lpBand->lcy + REBARSPACE;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000739
740 /* if boundary rect specified then limit mcy */
741 if (lpRect) {
742 if (dwStyle & CCS_VERT) {
743 if (x+mcy > adjcx) {
744 mcy = adjcx - x;
745 TRACE("row %u limiting mcy=%d, adjcx=%d, x=%d\n",
746 i, mcy, adjcx, x);
747 }
748 }
749 else {
750 if (y+mcy > adjcy) {
751 mcy = adjcy - y;
752 TRACE("row %u limiting mcy=%d, adjcy=%d, y=%d\n",
753 i, mcy, adjcy, y);
754 }
755 }
Eric Kohl12461851998-11-08 11:31:12 +0000756 }
757
Eric Kohlcad17ff1999-03-12 17:42:50 +0000758 if (dwStyle & CCS_VERT) {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000759 /* bound the bottom side if we have a bounding rectangle */
760 lpBand->fDraw |= (y==0) ? 0 : DRAW_SEP;
761 rightx = clientcx;
762 bottomy = (lpRect) ? min(clientcy, y+cxsep+cx) : y+cxsep+cx;
763 lpBand->rcBand.left = x;
Guy L. Albertelli3c7df5c2000-10-29 01:16:26 +0000764 lpBand->rcBand.right = y + min(mcy, lpBand->lcy+REBARSPACE);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000765 lpBand->rcBand.top = min(bottomy, y + cxsep);
766 lpBand->rcBand.bottom = bottomy;
767 lpBand->uMinHeight = lpBand->lcy;
768 y = bottomy;
Eric Kohl12461851998-11-08 11:31:12 +0000769 }
770 else {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000771 /* bound the right side if we have a bounding rectangle */
772 lpBand->fDraw |= (x==0) ? 0 : DRAW_SEP;
773 rightx = (lpRect) ? min(clientcx, x+cxsep+cx) : x+cxsep+cx;
774 bottomy = clientcy;
775 lpBand->rcBand.left = min(rightx, x + cxsep);
776 lpBand->rcBand.right = rightx;
777 lpBand->rcBand.top = y;
Guy L. Albertelli3c7df5c2000-10-29 01:16:26 +0000778 lpBand->rcBand.bottom = y + min(mcy, lpBand->lcy+REBARSPACE);
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000779 lpBand->uMinHeight = lpBand->lcy;
780 x = rightx;
Eric Kohl12461851998-11-08 11:31:12 +0000781 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000782 TRACE("band %u, row %d, (%d,%d)-(%d,%d)\n",
783 i, row,
784 lpBand->rcBand.left, lpBand->rcBand.top,
785 lpBand->rcBand.right, lpBand->rcBand.bottom);
786
Eric Kohlb075ce51998-10-24 10:47:25 +0000787 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000788 if (infoPtr->uNumBands) {
789 infoPtr->uNumRows = row;
790
791 if (dwStyle & CCS_VERT) {
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000792 REBAR_AdjustBands (infoPtr, rowstartband, infoPtr->uNumBands,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000793 clientcy, y, mcy, dwStyle);
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000794 REBAR_CalcVertBand (hwnd, infoPtr, rowstartband, infoPtr->uNumBands,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000795 notify, dwStyle);
796 x += mcy;
797 }
798 else {
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000799 REBAR_AdjustBands (infoPtr, rowstartband, infoPtr->uNumBands,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000800 clientcx, x, mcy, dwStyle);
Hidenori Takeshimace50aa02000-10-31 01:34:27 +0000801 REBAR_CalcHorzBand (hwnd, infoPtr, rowstartband, infoPtr->uNumBands,
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000802 notify, dwStyle);
803 y += mcy;
804 }
805 }
806
807 /* FIXME: if not RBS_VARHEIGHT then find max mcy and adj rect*/
Eric Kohlb075ce51998-10-24 10:47:25 +0000808
Eric Kohlcad17ff1999-03-12 17:42:50 +0000809 if (dwStyle & CCS_VERT) {
Eric Kohl12461851998-11-08 11:31:12 +0000810 infoPtr->calcSize.cx = x;
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000811 infoPtr->calcSize.cy = clientcy;
Eric Kohl12461851998-11-08 11:31:12 +0000812 }
813 else {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000814 infoPtr->calcSize.cx = clientcx;
Eric Kohl12461851998-11-08 11:31:12 +0000815 infoPtr->calcSize.cy = y;
816 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000817 REBAR_DumpBand (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +0000818}
819
820
821static VOID
Eric Kohlcad17ff1999-03-12 17:42:50 +0000822REBAR_ForceResize (HWND hwnd)
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000823 /* Function: This changes the size of the REBAR window to that */
824 /* calculated by REBAR_Layout. */
Eric Kohlb075ce51998-10-24 10:47:25 +0000825{
Eric Kohlcad17ff1999-03-12 17:42:50 +0000826 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000827 RECT rc;
Eric Kohlb075ce51998-10-24 10:47:25 +0000828
Gerald Pfeifer1b490b42000-09-24 03:05:11 +0000829 TRACE( " to [%ld x %ld]!\n",
Eric Kohlb075ce51998-10-24 10:47:25 +0000830 infoPtr->calcSize.cx, infoPtr->calcSize.cy);
831
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000832 infoPtr->fStatus |= AUTO_RESIZE;
Eric Kohlb075ce51998-10-24 10:47:25 +0000833
834 rc.left = 0;
835 rc.top = 0;
836 rc.right = infoPtr->calcSize.cx;
837 rc.bottom = infoPtr->calcSize.cy;
838
Eric Kohlcad17ff1999-03-12 17:42:50 +0000839 if (GetWindowLongA (hwnd, GWL_STYLE) & WS_BORDER) {
Marcus Meissner9f3eb191999-05-22 11:22:36 +0000840 InflateRect (&rc, GetSystemMetrics(SM_CXEDGE), GetSystemMetrics(SM_CYEDGE));
Eric Kohl12461851998-11-08 11:31:12 +0000841 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000842
Eric Kohlcad17ff1999-03-12 17:42:50 +0000843 SetWindowPos (hwnd, 0, 0, 0,
Eric Kohlb075ce51998-10-24 10:47:25 +0000844 rc.right - rc.left, rc.bottom - rc.top,
845 SWP_NOMOVE | SWP_NOZORDER | SWP_SHOWWINDOW);
846}
847
848
849static VOID
Eric Kohlcad17ff1999-03-12 17:42:50 +0000850REBAR_MoveChildWindows (HWND hwnd)
Eric Kohlb075ce51998-10-24 10:47:25 +0000851{
Eric Kohlcad17ff1999-03-12 17:42:50 +0000852 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +0000853 REBAR_BAND *lpBand;
Eric Kohlcad17ff1999-03-12 17:42:50 +0000854 CHAR szClassName[40];
Alexandre Julliarda3960291999-02-26 11:11:13 +0000855 UINT i;
Eric Kohlb075ce51998-10-24 10:47:25 +0000856
857 for (i = 0; i < infoPtr->uNumBands; i++) {
858 lpBand = &infoPtr->bands[i];
859
860 if (lpBand->fStyle & RBBS_HIDDEN)
861 continue;
862 if (lpBand->hwndChild) {
Alexandre Julliarda099a551999-06-12 15:45:58 +0000863 TRACE("hwndChild = %x\n", lpBand->hwndChild);
Eric Kohlb075ce51998-10-24 10:47:25 +0000864
Eric Kohlcad17ff1999-03-12 17:42:50 +0000865 GetClassNameA (lpBand->hwndChild, szClassName, 40);
866 if (!lstrcmpA (szClassName, "ComboBox")) {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000867 INT nEditHeight, yPos;
868 RECT rc;
Eric Kohl12461851998-11-08 11:31:12 +0000869
870 /* special placement code for combo box */
871
872
873 /* get size of edit line */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000874 GetWindowRect (lpBand->hwndChild, &rc);
Eric Kohl12461851998-11-08 11:31:12 +0000875 nEditHeight = rc.bottom - rc.top;
876 yPos = (lpBand->rcChild.bottom + lpBand->rcChild.top - nEditHeight)/2;
877
878 /* center combo box inside child area */
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000879 TRACE("moving child %04x to (%d,%d)-(%d,%d)\n",
880 lpBand->hwndChild,
881 lpBand->rcChild.left, yPos,
882 lpBand->rcChild.right - lpBand->rcChild.left,
883 nEditHeight);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000884 SetWindowPos (lpBand->hwndChild, HWND_TOP,
Eric Kohl12461851998-11-08 11:31:12 +0000885 lpBand->rcChild.left, /*lpBand->rcChild.top*/ yPos,
886 lpBand->rcChild.right - lpBand->rcChild.left,
887 nEditHeight,
888 SWP_SHOWWINDOW);
889 }
890#if 0
Eric Kohlcad17ff1999-03-12 17:42:50 +0000891 else if (!lstrcmpA (szClassName, WC_COMBOBOXEXA)) {
Eric Kohl88e95011999-06-26 11:49:44 +0000892 INT nEditHeight, yPos;
893 RECT rc;
894 HWND hwndEdit;
895
Eric Kohl12461851998-11-08 11:31:12 +0000896 /* special placement code for extended combo box */
897
Eric Kohl88e95011999-06-26 11:49:44 +0000898 /* get size of edit line */
899 hwndEdit = SendMessageA (lpBand->hwndChild, CBEM_GETEDITCONTROL, 0, 0);
900 GetWindowRect (hwndEdit, &rc);
901 nEditHeight = rc.bottom - rc.top;
902 yPos = (lpBand->rcChild.bottom + lpBand->rcChild.top - nEditHeight)/2;
903
904 /* center combo box inside child area */
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000905 TRACE("moving child %04x to (%d,%d)-(%d,%d)\n",
906 lpBand->hwndChild,
907 lpBand->rcChild.left, yPos,
908 lpBand->rcChild.right - lpBand->rcChild.left,
909 nEditHeight);
Eric Kohl88e95011999-06-26 11:49:44 +0000910 SetWindowPos (lpBand->hwndChild, HWND_TOP,
911 lpBand->rcChild.left, /*lpBand->rcChild.top*/ yPos,
912 lpBand->rcChild.right - lpBand->rcChild.left,
913 nEditHeight,
914 SWP_SHOWWINDOW);
Eric Kohl12461851998-11-08 11:31:12 +0000915
916 }
917#endif
918 else {
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000919 TRACE("moving child %04x to (%d,%d)-(%d,%d)\n",
920 lpBand->hwndChild,
921 lpBand->rcChild.left, lpBand->rcChild.top,
922 lpBand->rcChild.right - lpBand->rcChild.left,
923 lpBand->rcChild.bottom - lpBand->rcChild.top);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000924 SetWindowPos (lpBand->hwndChild, HWND_TOP,
Eric Kohlb075ce51998-10-24 10:47:25 +0000925 lpBand->rcChild.left, lpBand->rcChild.top,
926 lpBand->rcChild.right - lpBand->rcChild.left,
927 lpBand->rcChild.bottom - lpBand->rcChild.top,
928 SWP_SHOWWINDOW);
Eric Kohl12461851998-11-08 11:31:12 +0000929 }
Eric Kohlb075ce51998-10-24 10:47:25 +0000930 }
931 }
932}
933
934
Guy L. Albertellif82e4932000-10-12 23:09:01 +0000935static VOID
936REBAR_ValidateBand (HWND hwnd, REBAR_INFO *infoPtr, REBAR_BAND *lpBand)
937 /* Function: This routine evaluates the band specs supplied */
938 /* by the user and updates the following 5 fields in */
939 /* the internal band structure: cxHeader, lcx, lcy, hcx, hcy*/
940{
941 UINT header=0;
942 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
943
944 lpBand->lcx = 0;
945 lpBand->lcy = 0;
946 lpBand->hcx = 0;
947 lpBand->hcy = 0;
948
949 /* Header is where the image, text and gripper exist */
950 /* in the band and preceed the child window. */
951
952 /* calculate gripper rectangle */
953 if ((!(lpBand->fStyle & RBBS_NOGRIPPER)) &&
954 (!(lpBand->fStyle & RBBS_FIXEDSIZE)) &&
955 ((lpBand->fStyle & RBBS_GRIPPERALWAYS) ||
956 (infoPtr->uNumBands > 1))) {
957 if (dwStyle & CCS_VERT)
958 if (dwStyle & RBS_VERTICALGRIPPER)
959 header += (GRIPPER_HEIGHT + 3);
960 else
961 header += (GRIPPER_WIDTH + 3);
962 else
963 header += (GRIPPER_WIDTH + 1);
964 }
965
966 /* image is visible */
967 if ((lpBand->fMask & RBBIM_IMAGE) && (infoPtr->himl)) {
968 if (dwStyle & CCS_VERT) {
969 header += infoPtr->imageSize.cy;
970 lpBand->lcy = infoPtr->imageSize.cx + 2;
971 }
972 else {
973 header += infoPtr->imageSize.cx;
974 lpBand->lcy = infoPtr->imageSize.cy + 2;
975 }
976 }
977
978 /* text is visible */
979 if ((lpBand->fMask & RBBIM_TEXT) && (lpBand->lpText)) {
980 HDC hdc = GetDC (0);
981 HFONT hOldFont = SelectObject (hdc, infoPtr->hFont);
982 SIZE size;
983
984 GetTextExtentPoint32W (hdc, lpBand->lpText,
985 lstrlenW (lpBand->lpText), &size);
986 header += ((dwStyle & CCS_VERT) ? (size.cy + 2) : (size.cx + 2));
987
988 SelectObject (hdc, hOldFont);
989 ReleaseDC (0, hdc);
990 }
991
992 /* check if user overrode the header value */
993 if (!(lpBand->fMask & RBBIM_HEADERSIZE))
994 lpBand->cxHeader = header;
995
996
997 /* Now compute minimum size of child window */
Guy L. Albertelli418efdc2000-11-13 19:29:16 +0000998 lpBand->offChild.cx = 0;
999 lpBand->offChild.cy = 0;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001000 if (lpBand->fMask & RBBIM_CHILDSIZE) {
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001001 if (!(lpBand->fStyle & RBBS_FIXEDSIZE)) {
1002 lpBand->offChild.cx = 4;
1003 lpBand->offChild.cy = 2;
1004 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001005 lpBand->lcx = lpBand->cxMinChild;
1006 lpBand->lcy = lpBand->cyMinChild;
1007 lpBand->hcy = lpBand->lcy;
1008 if (lpBand->fStyle & RBBS_VARIABLEHEIGHT) {
Guy L. Albertelli3c7df5c2000-10-29 01:16:26 +00001009 if (lpBand->cyChild != 0xffffffff)
1010 lpBand->lcy = max (lpBand->cyChild, lpBand->lcy);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001011 lpBand->hcy = lpBand->cyMaxChild;
1012 }
1013 TRACE("_CHILDSIZE\n");
1014 }
1015 if (lpBand->fMask & RBBIM_SIZE) {
1016 lpBand->hcx = max (lpBand->cx, lpBand->lcx);
1017 TRACE("_SIZE\n");
1018 }
1019 else
1020 lpBand->hcx = lpBand->lcx;
1021
1022}
1023
1024static void
1025REBAR_CommonSetupBand (HWND hwnd, LPREBARBANDINFOA lprbbi, REBAR_BAND *lpBand)
1026 /* Function: This routine copies the supplied values from */
1027 /* user input (lprbbi) to the internal band structure. */
1028{
1029 lpBand->fMask |= lprbbi->fMask;
1030
1031 if (lprbbi->fMask & RBBIM_STYLE)
1032 lpBand->fStyle = lprbbi->fStyle;
1033
1034 if (lprbbi->fMask & RBBIM_COLORS) {
1035 lpBand->clrFore = lprbbi->clrFore;
1036 lpBand->clrBack = lprbbi->clrBack;
1037 }
1038
1039 if (lprbbi->fMask & RBBIM_IMAGE)
1040 lpBand->iImage = lprbbi->iImage;
1041
1042 if (lprbbi->fMask & RBBIM_CHILD) {
1043 if (lprbbi->hwndChild) {
1044 lpBand->hwndChild = lprbbi->hwndChild;
1045 lpBand->hwndPrevParent =
1046 SetParent (lpBand->hwndChild, hwnd);
1047 }
1048 else {
1049 TRACE("child: 0x%x prev parent: 0x%x\n",
1050 lpBand->hwndChild, lpBand->hwndPrevParent);
1051 lpBand->hwndChild = 0;
1052 lpBand->hwndPrevParent = 0;
1053 }
1054 }
1055
1056 if (lprbbi->fMask & RBBIM_CHILDSIZE) {
1057 lpBand->cxMinChild = lprbbi->cxMinChild;
1058 lpBand->cyMinChild = lprbbi->cyMinChild;
1059 lpBand->cyMaxChild = lprbbi->cyMaxChild;
1060 lpBand->cyChild = lprbbi->cyChild;
1061 lpBand->cyIntegral = lprbbi->cyIntegral;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001062 }
1063
1064 if (lprbbi->fMask & RBBIM_SIZE)
1065 lpBand->cx = lprbbi->cx;
1066
1067 if (lprbbi->fMask & RBBIM_BACKGROUND)
1068 lpBand->hbmBack = lprbbi->hbmBack;
1069
1070 if (lprbbi->fMask & RBBIM_ID)
1071 lpBand->wID = lprbbi->wID;
1072
1073 /* check for additional data */
1074 if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
1075 if (lprbbi->fMask & RBBIM_IDEALSIZE)
1076 lpBand->cxIdeal = lprbbi->cxIdeal;
1077
1078 if (lprbbi->fMask & RBBIM_LPARAM)
1079 lpBand->lParam = lprbbi->lParam;
1080
1081 if (lprbbi->fMask & RBBIM_HEADERSIZE)
1082 lpBand->cxHeader = lprbbi->cxHeader;
1083 }
1084}
1085
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001086static LRESULT
1087REBAR_InternalEraseBkGnd (HWND hwnd, WPARAM wParam, LPARAM lParam, RECT *clip)
1088 /* Function: This erases the background rectangle with the */
1089 /* default brush, then with any band that has a different */
1090 /* background color. */
1091{
Dmitry Timoshkov77b21852000-11-15 22:15:52 +00001092 HBRUSH hbrBackground = GetClassWord(hwnd, GCW_HBRBACKGROUND);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001093 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
1094 RECT eraserect;
1095 REBAR_BAND *lpBand;
1096 INT i;
1097
Dmitry Timoshkov77b21852000-11-15 22:15:52 +00001098 if (hbrBackground)
1099 FillRect( (HDC) wParam, clip, hbrBackground);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001100
1101 for(i=0; i<infoPtr->uNumBands; i++) {
1102 lpBand = &infoPtr->bands[i];
1103 if (lpBand->clrBack != CLR_NONE) {
1104 if (IntersectRect (&eraserect, clip, &lpBand->rcBand)) {
1105 /* draw background */
1106 HBRUSH brh = CreateSolidBrush (lpBand->clrBack);
1107 TRACE("backround color=0x%06lx, rect (%d,%d)-(%d,%d)\n",
1108 lpBand->clrBack,
1109 lpBand->rcBand.left,lpBand->rcBand.top,
1110 lpBand->rcBand.right,lpBand->rcBand.bottom);
1111 FillRect ( (HDC)wParam, &eraserect, brh);
1112 DeleteObject (brh);
1113 }
1114 }
1115 }
1116 return TRUE;
1117}
1118
Eric Kohlb075ce51998-10-24 10:47:25 +00001119static void
Eric Kohlcad17ff1999-03-12 17:42:50 +00001120REBAR_InternalHitTest (HWND hwnd, LPPOINT lpPt, UINT *pFlags, INT *pBand)
Eric Kohlb075ce51998-10-24 10:47:25 +00001121{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001122 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00001123 REBAR_BAND *lpBand;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001124 RECT rect;
1125 INT iCount;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001126
Eric Kohlcad17ff1999-03-12 17:42:50 +00001127 GetClientRect (hwnd, &rect);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001128
Eric Kohlb075ce51998-10-24 10:47:25 +00001129 *pFlags = RBHT_NOWHERE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001130 if (PtInRect (&rect, *lpPt))
Eric Kohlb075ce51998-10-24 10:47:25 +00001131 {
1132 if (infoPtr->uNumBands == 0) {
1133 *pFlags = RBHT_NOWHERE;
1134 if (pBand)
1135 *pBand = -1;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001136 TRACE("NOWHERE\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00001137 return;
1138 }
1139 else {
1140 /* somewhere inside */
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001141 infoPtr->ihitBand = -1;
Eric Kohlb075ce51998-10-24 10:47:25 +00001142 for (iCount = 0; iCount < infoPtr->uNumBands; iCount++) {
1143 lpBand = &infoPtr->bands[iCount];
Alexandre Julliarda3960291999-02-26 11:11:13 +00001144 if (PtInRect (&lpBand->rcBand, *lpPt)) {
Eric Kohlb075ce51998-10-24 10:47:25 +00001145 if (pBand)
1146 *pBand = iCount;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001147 if (PtInRect (&lpBand->rcGripper, *lpPt)) {
Eric Kohlb075ce51998-10-24 10:47:25 +00001148 *pFlags = RBHT_GRABBER;
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001149 infoPtr->ihitBand = iCount;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001150 TRACE("ON GRABBER %d\n", iCount);
Eric Kohlb075ce51998-10-24 10:47:25 +00001151 return;
1152 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001153 else if (PtInRect (&lpBand->rcCapImage, *lpPt)) {
Eric Kohlb075ce51998-10-24 10:47:25 +00001154 *pFlags = RBHT_CAPTION;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001155 TRACE("ON CAPTION %d\n", iCount);
Eric Kohlb075ce51998-10-24 10:47:25 +00001156 return;
1157 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001158 else if (PtInRect (&lpBand->rcCapText, *lpPt)) {
Eric Kohlb075ce51998-10-24 10:47:25 +00001159 *pFlags = RBHT_CAPTION;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001160 TRACE("ON CAPTION %d\n", iCount);
Eric Kohlb075ce51998-10-24 10:47:25 +00001161 return;
1162 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001163 else if (PtInRect (&lpBand->rcChild, *lpPt)) {
Eric Kohlb075ce51998-10-24 10:47:25 +00001164 *pFlags = RBHT_CLIENT;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001165 TRACE("ON CLIENT %d\n", iCount);
Eric Kohlb075ce51998-10-24 10:47:25 +00001166 return;
1167 }
1168 else {
1169 *pFlags = RBHT_NOWHERE;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001170 TRACE("NOWHERE %d\n", iCount);
Eric Kohlb075ce51998-10-24 10:47:25 +00001171 return;
1172 }
1173 }
1174 }
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001175
Eric Kohlb075ce51998-10-24 10:47:25 +00001176 *pFlags = RBHT_NOWHERE;
1177 if (pBand)
1178 *pBand = -1;
1179
Alexandre Julliarda099a551999-06-12 15:45:58 +00001180 TRACE("NOWHERE\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00001181 return;
1182 }
1183 }
1184 else {
1185 *pFlags = RBHT_NOWHERE;
1186 if (pBand)
1187 *pBand = -1;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001188 TRACE("NOWHERE\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00001189 return;
1190 }
1191
Alexandre Julliarda099a551999-06-12 15:45:58 +00001192 TRACE("flags=0x%X\n", *pFlags);
Eric Kohlb075ce51998-10-24 10:47:25 +00001193 return;
1194}
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001195
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00001196#define READJ(b,i) {b->rcChild.right += (i);b->rcBand.right += (i);}
1197#define LEADJ(b,i) {b->rcBand.left += (i); \
1198 b->rcGripper.left += (i); \
1199 b->rcGripper.right += (i); \
1200 b->rcCapImage.left += (i); \
1201 b->rcCapImage.right += (i); \
1202 b->rcCapText.left += (i); \
1203 b->rcCapText.right += (i); \
1204 b->rcChild.left += (i);}
1205
1206
1207static INT
1208REBAR_Shrink (REBAR_BAND *band, INT movement, INT i)
1209 /* Function: This attempts to shrink the given band by the */
1210 /* the amount in "movement". A shrink to the left is indi- */
1211 /* cated by "movement" being negative. "i" is merely the */
1212 /* band index for trace messages. */
1213{
1214 INT Leadjust, Readjust, avail, ret;
1215
1216 /* Note: a left drag is indicated by "movement" being negative. */
1217 /* Similarly, a right drag is indicated by "movement" */
1218 /* being positive. "movement" should never be 0, but if */
1219 /* it is then the band does not move. */
1220
1221 avail = band->rcBand.right - band->rcBand.left -
1222 band->cxHeader - band->offChild.cx;
1223
1224 /* now compute the Left End adjustment factor and Right End */
1225 /* adjustment factor. They may be different if shrinking. */
1226 if (avail <= 0) {
1227 /* if this band is not shrinkable, then just move it */
1228 Leadjust = Readjust = movement;
1229 ret = movement;
1230 }
1231 else {
1232 if (movement < 0) {
1233 /* Drag to left */
1234 if (avail <= abs(movement)) {
1235 Readjust = movement;
1236 Leadjust = movement + avail;
1237 ret = Leadjust;
1238 }
1239 else {
1240 Readjust = movement;
1241 Leadjust = 0;
1242 ret = 0;
1243 }
1244 }
1245 else {
1246 /* Drag to right */
1247 if (avail <= abs(movement)) {
1248 Leadjust = movement;
1249 Readjust = movement - avail;
1250 ret = Readjust;
1251 }
1252 else {
1253 Leadjust = movement;
1254 Readjust = 0;
1255 ret = 0;
1256 }
1257 }
1258 }
1259
1260 /* Reasonability Check */
1261 if (band->rcBand.left+Leadjust < 0) {
1262 ERR("adjustment will fail, band %d: left=%d, right=%d, move=%d, rtn=%d\n",
1263 i, Leadjust, Readjust, movement, ret);
1264 }
1265
1266 LEADJ(band, Leadjust);
1267 READJ(band, Readjust);
1268
1269 TRACE("band %d: left=%d, right=%d, move=%d, rtn=%d, rcBand=(%d,%d)-(%d,%d)\n",
1270 i, Leadjust, Readjust, movement, ret,
1271 band->rcBand.left, band->rcBand.top,
1272 band->rcBand.right, band->rcBand.bottom);
1273 return ret;
1274}
1275
1276
1277static void
1278REBAR_HandleLRDrag (HWND hwnd, REBAR_INFO *infoPtr, POINTS *ptsmove)
1279 /* Function: This will implement the functionality of a */
1280 /* Gripper drag within a row. It will not implement "out- */
1281 /* of-row" drags. (They are detected and handled in */
1282 /* REBAR_MouseMove.) */
1283 /* **** FIXME Vertical rebars not implemented. **** */
1284 /* **** FIXME Switching order of bands in a row not **** */
1285 /* **** yet implemented. **** */
1286{
1287 REBAR_BAND *hitBand, *band, *prevband, *mindBand, *maxdBand;
1288 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
1289 HDWP deferpos;
1290 NMREBARCHILDSIZE cs;
1291 NMREBAR startdrag;
1292 RECT newrect;
1293 INT imindBand = -1, imaxdBand, ihitBand, i, movement, tempx;
1294 INT RHeaderSum = 0, LHeaderSum = 0;
1295 INT compress;
1296
1297 /* *** FIXME drag does not work for vertical *** */
1298 if (dwStyle & CCS_VERT) {
1299 FIXME("Drag not yet implemented for vertical rebars\n");
1300 return;
1301 }
1302
1303 /* on first significant mouse movement, issue notify */
1304
1305 if (!(infoPtr->fStatus & BEGIN_DRAG_ISSUED)) {
1306 startdrag.dwMask = 0;
1307 startdrag.uBand = -1;
1308 REBAR_Notify(hwnd, (NMHDR *) &startdrag, RBN_BEGINDRAG);
1309 infoPtr->fStatus |= BEGIN_DRAG_ISSUED;
1310 }
1311
1312 ihitBand = infoPtr->ihitBand;
1313 hitBand = &infoPtr->bands[ihitBand];
1314 imaxdBand = ihitBand; /* to suppress warning message */
1315
1316 /* find all the bands in the row of the one whose Gripper was seized */
1317 for (i=0; i<infoPtr->uNumBands; i++) {
1318 band = &infoPtr->bands[i];
1319 if (band->iRow == hitBand->iRow) {
1320 imaxdBand = i;
1321 if (imindBand == -1) imindBand = i;
1322 /* minimum size of each band is size of header plus */
1323 /* size of minimum child plus offset of child from header plus */
1324 /* a one to separate each band. */
1325 if (i < ihitBand)
1326 LHeaderSum += (band->cxHeader + band->offChild.cx +
1327 band->lcx + 1);
1328 else
1329 RHeaderSum += (band->cxHeader + band->offChild.cx +
1330 band->lcx + 1);
1331
1332 }
1333 }
1334 if (RHeaderSum) RHeaderSum--; /* no separator afterlast band */
1335
1336 mindBand = &infoPtr->bands[imindBand];
1337 maxdBand = &infoPtr->bands[imaxdBand];
1338
1339 if (imindBand == imaxdBand) return; /* nothing to drag agains */
1340 if (imindBand == ihitBand) return; /* first band in row, cant drag */
1341
1342 /* limit movement to inside adjustable bands - Left */
1343 if (ptsmove->x < mindBand->rcBand.left)
1344 return; /* should swap bands */
1345 /* limit movement to inside adjustable bands - Right */
1346 if (ptsmove->x > maxdBand->rcBand.right)
1347 return; /* should swap bands */
1348
1349 movement = ptsmove->x - (hitBand->rcGripper.left - infoPtr->ihitoffset);
1350 infoPtr->dragNow = *ptsmove;
1351
1352 TRACE("before: movement=%d (%d,%d), imindBand=%d, ihitBand=%d, imaxdBand=%d, LSum=%d, RSum=%d\n",
1353 movement, ptsmove->x, ptsmove->y, imindBand, ihitBand,
1354 imaxdBand, LHeaderSum, RHeaderSum);
1355 REBAR_DumpBand (hwnd);
1356
1357 if (movement < 0) {
1358
1359 /* *** Drag left *** */
1360 compress = hitBand->rcBand.left-1 - mindBand->rcBand.left -
1361 LHeaderSum;
1362 if (compress < abs(movement)) {
1363 TRACE("limiting left drag, was %d changed to %d\n",
1364 movement, -compress);
1365 movement = -compress;
1366 }
1367 for (i=ihitBand; i>=imindBand; i--) {
1368 band = &infoPtr->bands[i];
1369 if (i == ihitBand) {
1370 prevband = &infoPtr->bands[i-1];
1371 if (band->rcBand.left - movement <= prevband->rcBand.right) {
1372 tempx = movement - (prevband->rcBand.right-band->rcBand.left+1);
1373 ERR("movement bad. BUG!! was %d, left=%d, right=%d, setting to %d\n",
1374 movement, band->rcBand.left, prevband->rcBand.right, tempx);
1375 movement = tempx;
1376 }
1377 LEADJ(band, movement)
1378 }
1379 else
1380 movement = REBAR_Shrink (band, movement, i);
1381 }
1382 }
1383 else {
1384
1385 /* *** Drag right *** */
1386 compress = maxdBand->rcBand.right - hitBand->rcBand.left -
1387 RHeaderSum;
1388 if (compress < abs(movement)) {
1389 TRACE("limiting right drag, was %d changed to %d\n",
1390 movement, compress);
1391 movement = compress;
1392 }
1393 for (i=ihitBand-1; i<=imaxdBand; i++) {
1394 band = &infoPtr->bands[i];
1395 if (i == ihitBand-1) {
1396 READJ(band, movement)
1397 }
1398 else
1399 movement = REBAR_Shrink (band, movement, i);
1400 }
1401 }
1402
1403 TRACE("bands after adjustment, see band # %d, %d\n",
1404 imindBand, imaxdBand);
1405 REBAR_DumpBand (hwnd);
1406
1407 SetRect (&newrect,
1408 mindBand->rcBand.left,
1409 min(mindBand->rcBand.top, maxdBand->rcBand.top),
1410 maxdBand->rcBand.right,
1411 max(mindBand->rcBand.bottom, maxdBand->rcBand.bottom));
1412
1413 if (!(deferpos = BeginDeferWindowPos (4))) {
1414 ERR("BeginDeferWindowPos returned NULL\n");
1415 }
1416
1417 for (i=imindBand; i<=imaxdBand; i++) {
1418 band = &infoPtr->bands[i];
1419 if ((band->fMask & RBBIM_CHILD) && band->hwndChild) {
1420 cs.uBand = i;
1421 cs.wID = band->wID;
1422 cs.rcChild = band->rcChild;
1423 cs.rcBand = band->rcBand;
1424 REBAR_Notify (hwnd, (NMHDR *) &cs, RBN_CHILDSIZE);
1425 deferpos = DeferWindowPos (deferpos, band->hwndChild, HWND_TOP,
1426 cs.rcChild.left, cs.rcChild.top,
1427 cs.rcChild.right - cs.rcChild.left,
1428 cs.rcChild.bottom - cs.rcChild.top,
1429 SWP_NOZORDER);
1430 if (!deferpos) {
1431 ERR("DeferWindowPos returned NULL\n");
1432 }
1433 }
1434 }
1435
1436 if (!EndDeferWindowPos (deferpos)) {
1437 ERR("EndDeferWindowPos failed\n");
1438 }
1439
1440 InvalidateRect (hwnd, &newrect, TRUE);
1441 UpdateWindow (hwnd);
1442
1443}
1444#undef READJ
1445#undef LEADJ
1446
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001447
1448
Marcus Meissner73458b01998-12-26 12:54:29 +00001449/* << REBAR_BeginDrag >> */
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001450
1451
1452static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001453REBAR_DeleteBand (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001454{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001455 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001456 UINT uBand = (UINT)wParam;
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001457
1458 if (uBand >= infoPtr->uNumBands)
1459 return FALSE;
1460
Alexandre Julliarda099a551999-06-12 15:45:58 +00001461 TRACE("deleting band %u!\n", uBand);
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001462
Eric Kohlb075ce51998-10-24 10:47:25 +00001463 if (infoPtr->uNumBands == 1) {
Alexandre Julliarda099a551999-06-12 15:45:58 +00001464 TRACE(" simple delete!\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00001465 COMCTL32_Free (infoPtr->bands);
1466 infoPtr->bands = NULL;
1467 infoPtr->uNumBands = 0;
1468 }
1469 else {
1470 REBAR_BAND *oldBands = infoPtr->bands;
Alexandre Julliarda099a551999-06-12 15:45:58 +00001471 TRACE("complex delete! [uBand=%u]\n", uBand);
Eric Kohlb075ce51998-10-24 10:47:25 +00001472
1473 infoPtr->uNumBands--;
1474 infoPtr->bands = COMCTL32_Alloc (sizeof (REBAR_BAND) * infoPtr->uNumBands);
1475 if (uBand > 0) {
1476 memcpy (&infoPtr->bands[0], &oldBands[0],
1477 uBand * sizeof(REBAR_BAND));
1478 }
1479
1480 if (uBand < infoPtr->uNumBands) {
1481 memcpy (&infoPtr->bands[uBand], &oldBands[uBand+1],
1482 (infoPtr->uNumBands - uBand) * sizeof(REBAR_BAND));
1483 }
1484
1485 COMCTL32_Free (oldBands);
1486 }
1487
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001488 REBAR_Layout (hwnd, NULL, FALSE, FALSE);
Eric Kohlcad17ff1999-03-12 17:42:50 +00001489 REBAR_ForceResize (hwnd);
1490 REBAR_MoveChildWindows (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00001491
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001492 return TRUE;
1493}
1494
1495
Marcus Meissner73458b01998-12-26 12:54:29 +00001496/* << REBAR_DragMove >> */
1497/* << REBAR_EndDrag >> */
Eric Kohlb075ce51998-10-24 10:47:25 +00001498
1499
1500static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001501REBAR_GetBandBorders (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00001502{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001503 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
James Juranc2a10631999-01-28 16:33:44 +00001504 /* LPRECT32 lpRect = (LPRECT32)lParam; */
Eric Kohl402fcbc1999-01-24 19:05:49 +00001505 REBAR_BAND *lpBand;
1506
1507 if (!lParam)
1508 return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001509 if ((UINT)wParam >= infoPtr->uNumBands)
Eric Kohl402fcbc1999-01-24 19:05:49 +00001510 return 0;
1511
Alexandre Julliarda3960291999-02-26 11:11:13 +00001512 lpBand = &infoPtr->bands[(UINT)wParam];
Eric Kohlcad17ff1999-03-12 17:42:50 +00001513 if (GetWindowLongA (hwnd, GWL_STYLE) & RBS_BANDBORDERS) {
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001514 /*lpRect.left = ??? */
1515 /*lpRect.top = ??? */
1516 /*lpRect.right = ??? */
1517 /*lpRect.bottom = ??? */
Eric Kohl402fcbc1999-01-24 19:05:49 +00001518 }
1519 else {
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001520 /*lpRect.left = ??? */
Eric Kohl402fcbc1999-01-24 19:05:49 +00001521 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001522 FIXME("stub\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00001523 return 0;
1524}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001525
1526
Patrik Stridvall896889f1999-05-08 12:50:36 +00001527inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001528REBAR_GetBandCount (HWND hwnd)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001529{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001530 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001531
Alexandre Julliarda099a551999-06-12 15:45:58 +00001532 TRACE("band count %u!\n", infoPtr->uNumBands);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001533
1534 return infoPtr->uNumBands;
1535}
1536
1537
1538static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001539REBAR_GetBandInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001540{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001541 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001542 LPREBARBANDINFOA lprbbi = (LPREBARBANDINFOA)lParam;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001543 REBAR_BAND *lpBand;
1544
1545 if (lprbbi == NULL)
1546 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001547 if (lprbbi->cbSize < REBARBANDINFO_V3_SIZEA)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001548 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001549 if ((UINT)wParam >= infoPtr->uNumBands)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001550 return FALSE;
1551
Alexandre Julliarda099a551999-06-12 15:45:58 +00001552 TRACE("index %u\n", (UINT)wParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001553
1554 /* copy band information */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001555 lpBand = &infoPtr->bands[(UINT)wParam];
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001556
1557 if (lprbbi->fMask & RBBIM_STYLE)
1558 lprbbi->fStyle = lpBand->fStyle;
1559
1560 if (lprbbi->fMask & RBBIM_COLORS) {
1561 lprbbi->clrFore = lpBand->clrFore;
1562 lprbbi->clrBack = lpBand->clrBack;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001563 if (lprbbi->clrBack == CLR_NONE)
1564 lprbbi->clrBack = GetSysColor (COLOR_BTNFACE);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001565 }
1566
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001567 if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
1568 if (lpBand->lpText && (lpBand->fMask & RBBIM_TEXT))
Alexandre Julliard24a62ab2000-11-28 22:40:56 +00001569 {
1570 if (!WideCharToMultiByte( CP_ACP, 0, lpBand->lpText, -1,
1571 lprbbi->lpText, lprbbi->cch, NULL, NULL ))
1572 lprbbi->lpText[lprbbi->cch-1] = 0;
1573 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001574 else
1575 *lprbbi->lpText = 0;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001576 }
1577
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001578 if (lprbbi->fMask & RBBIM_IMAGE) {
1579 if (lpBand->fMask & RBBIM_IMAGE)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001580 lprbbi->iImage = lpBand->iImage;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001581 else
1582 lprbbi->iImage = -1;
1583 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001584
1585 if (lprbbi->fMask & RBBIM_CHILD)
1586 lprbbi->hwndChild = lpBand->hwndChild;
1587
1588 if (lprbbi->fMask & RBBIM_CHILDSIZE) {
1589 lprbbi->cxMinChild = lpBand->cxMinChild;
1590 lprbbi->cyMinChild = lpBand->cyMinChild;
1591 lprbbi->cyMaxChild = lpBand->cyMaxChild;
1592 lprbbi->cyChild = lpBand->cyChild;
1593 lprbbi->cyIntegral = lpBand->cyIntegral;
1594 }
1595
1596 if (lprbbi->fMask & RBBIM_SIZE)
1597 lprbbi->cx = lpBand->cx;
1598
1599 if (lprbbi->fMask & RBBIM_BACKGROUND)
1600 lprbbi->hbmBack = lpBand->hbmBack;
1601
1602 if (lprbbi->fMask & RBBIM_ID)
1603 lprbbi->wID = lpBand->wID;
1604
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001605 /* check for additional data */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001606 if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001607 if (lprbbi->fMask & RBBIM_IDEALSIZE)
1608 lprbbi->cxIdeal = lpBand->cxIdeal;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001609
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001610 if (lprbbi->fMask & RBBIM_LPARAM)
1611 lprbbi->lParam = lpBand->lParam;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001612
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001613 if (lprbbi->fMask & RBBIM_HEADERSIZE)
1614 lprbbi->cxHeader = lpBand->cxHeader;
1615 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001616
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001617 REBAR_DumpBandInfo (lprbbi);
1618
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001619 return TRUE;
1620}
1621
1622
Eric Kohl44443b61998-11-22 18:01:15 +00001623static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001624REBAR_GetBandInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohl44443b61998-11-22 18:01:15 +00001625{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001626 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001627 LPREBARBANDINFOW lprbbi = (LPREBARBANDINFOW)lParam;
Eric Kohl44443b61998-11-22 18:01:15 +00001628 REBAR_BAND *lpBand;
1629
1630 if (lprbbi == NULL)
1631 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001632 if (lprbbi->cbSize < REBARBANDINFO_V3_SIZEW)
Eric Kohl44443b61998-11-22 18:01:15 +00001633 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001634 if ((UINT)wParam >= infoPtr->uNumBands)
Eric Kohl44443b61998-11-22 18:01:15 +00001635 return FALSE;
1636
Alexandre Julliarda099a551999-06-12 15:45:58 +00001637 TRACE("index %u\n", (UINT)wParam);
Eric Kohl44443b61998-11-22 18:01:15 +00001638
1639 /* copy band information */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001640 lpBand = &infoPtr->bands[(UINT)wParam];
Eric Kohl44443b61998-11-22 18:01:15 +00001641
1642 if (lprbbi->fMask & RBBIM_STYLE)
1643 lprbbi->fStyle = lpBand->fStyle;
1644
1645 if (lprbbi->fMask & RBBIM_COLORS) {
1646 lprbbi->clrFore = lpBand->clrFore;
1647 lprbbi->clrBack = lpBand->clrBack;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001648 if (lprbbi->clrBack == CLR_NONE)
1649 lprbbi->clrBack = GetSysColor (COLOR_BTNFACE);
Eric Kohl44443b61998-11-22 18:01:15 +00001650 }
1651
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001652 if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
1653 if (lpBand->lpText && (lpBand->fMask & RBBIM_TEXT))
1654 lstrcpynW (lprbbi->lpText, lpBand->lpText, lprbbi->cch);
1655 else
1656 *lprbbi->lpText = 0;
Eric Kohl44443b61998-11-22 18:01:15 +00001657 }
1658
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001659 if (lprbbi->fMask & RBBIM_IMAGE) {
1660 if (lpBand->fMask & RBBIM_IMAGE)
Eric Kohl44443b61998-11-22 18:01:15 +00001661 lprbbi->iImage = lpBand->iImage;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001662 else
1663 lprbbi->iImage = -1;
1664 }
Eric Kohl44443b61998-11-22 18:01:15 +00001665
1666 if (lprbbi->fMask & RBBIM_CHILD)
1667 lprbbi->hwndChild = lpBand->hwndChild;
1668
1669 if (lprbbi->fMask & RBBIM_CHILDSIZE) {
1670 lprbbi->cxMinChild = lpBand->cxMinChild;
1671 lprbbi->cyMinChild = lpBand->cyMinChild;
1672 lprbbi->cyMaxChild = lpBand->cyMaxChild;
1673 lprbbi->cyChild = lpBand->cyChild;
1674 lprbbi->cyIntegral = lpBand->cyIntegral;
1675 }
1676
1677 if (lprbbi->fMask & RBBIM_SIZE)
1678 lprbbi->cx = lpBand->cx;
1679
1680 if (lprbbi->fMask & RBBIM_BACKGROUND)
1681 lprbbi->hbmBack = lpBand->hbmBack;
1682
1683 if (lprbbi->fMask & RBBIM_ID)
1684 lprbbi->wID = lpBand->wID;
1685
1686 /* check for additional data */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001687 if (lprbbi->cbSize >= sizeof (REBARBANDINFOA)) {
Eric Kohl44443b61998-11-22 18:01:15 +00001688 if (lprbbi->fMask & RBBIM_IDEALSIZE)
1689 lprbbi->cxIdeal = lpBand->cxIdeal;
1690
1691 if (lprbbi->fMask & RBBIM_LPARAM)
1692 lprbbi->lParam = lpBand->lParam;
1693
1694 if (lprbbi->fMask & RBBIM_HEADERSIZE)
1695 lprbbi->cxHeader = lpBand->cxHeader;
1696 }
1697
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001698 REBAR_DumpBandInfo ((LPREBARBANDINFOA)lprbbi);
1699
Eric Kohl44443b61998-11-22 18:01:15 +00001700 return TRUE;
1701}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001702
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001703
1704static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001705REBAR_GetBarHeight (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001706{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001707 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001708 INT nHeight;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001709
Eric Kohl12461851998-11-08 11:31:12 +00001710 nHeight = infoPtr->calcSize.cy;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001711
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001712 TRACE("height = %d\n", nHeight);
Eric Kohl12461851998-11-08 11:31:12 +00001713
1714 return nHeight;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001715}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001716
1717
1718static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001719REBAR_GetBarInfo (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001720{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001721 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001722 LPREBARINFO lpInfo = (LPREBARINFO)lParam;
1723
1724 if (lpInfo == NULL)
1725 return FALSE;
1726
1727 if (lpInfo->cbSize < sizeof (REBARINFO))
1728 return FALSE;
1729
Alexandre Julliarda099a551999-06-12 15:45:58 +00001730 TRACE("getting bar info!\n");
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001731
1732 if (infoPtr->himl) {
1733 lpInfo->himl = infoPtr->himl;
1734 lpInfo->fMask |= RBIM_IMAGELIST;
1735 }
1736
1737 return TRUE;
1738}
1739
1740
Patrik Stridvall896889f1999-05-08 12:50:36 +00001741inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001742REBAR_GetBkColor (HWND hwnd)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001743{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001744 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001745 COLORREF clr = infoPtr->clrBk;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001746
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001747 if (clr == CLR_NONE)
1748 clr = GetSysColor (COLOR_BTNFACE);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001749
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001750 TRACE("background color 0x%06lx!\n", clr);
1751
1752 return clr;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001753}
1754
1755
Marcus Meissner73458b01998-12-26 12:54:29 +00001756/* << REBAR_GetColorScheme >> */
1757/* << REBAR_GetDropTarget >> */
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001758
Eric Kohlb075ce51998-10-24 10:47:25 +00001759
1760static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001761REBAR_GetPalette (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00001762{
Alexandre Julliarda099a551999-06-12 15:45:58 +00001763 FIXME("empty stub!\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00001764
1765 return 0;
1766}
1767
1768
1769static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001770REBAR_GetRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00001771{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001772 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001773 INT iBand = (INT)wParam;
1774 LPRECT lprc = (LPRECT)lParam;
Eric Kohlb075ce51998-10-24 10:47:25 +00001775 REBAR_BAND *lpBand;
1776
Alexandre Julliarda3960291999-02-26 11:11:13 +00001777 if ((iBand < 0) && ((UINT)iBand >= infoPtr->uNumBands))
Eric Kohlb075ce51998-10-24 10:47:25 +00001778 return FALSE;
1779 if (!lprc)
1780 return FALSE;
1781
Eric Kohlb075ce51998-10-24 10:47:25 +00001782 lpBand = &infoPtr->bands[iBand];
Alexandre Julliarda3960291999-02-26 11:11:13 +00001783 CopyRect (lprc, &lpBand->rcBand);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001784
1785 TRACE("band %d, (%d,%d)-(%d,%d)\n", iBand,
1786 lprc->left, lprc->top, lprc->right, lprc->bottom);
Eric Kohlb075ce51998-10-24 10:47:25 +00001787
1788 return TRUE;
1789}
1790
1791
Patrik Stridvall896889f1999-05-08 12:50:36 +00001792inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001793REBAR_GetRowCount (HWND hwnd)
Eric Kohlb075ce51998-10-24 10:47:25 +00001794{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001795 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00001796
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001797 TRACE("%u\n", infoPtr->uNumRows);
Eric Kohlb075ce51998-10-24 10:47:25 +00001798
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001799 return infoPtr->uNumRows;
Eric Kohlb075ce51998-10-24 10:47:25 +00001800}
1801
1802
1803static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001804REBAR_GetRowHeight (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00001805{
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001806 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
1807 INT iRow = (INT)wParam;
1808 int ret = 0;
1809 int i, j = 0;
1810 REBAR_BAND *lpBand;
1811 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
Eric Kohlb075ce51998-10-24 10:47:25 +00001812
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001813 for (i=0; i<infoPtr->uNumBands; i++) {
1814 lpBand = &infoPtr->bands[i];
1815 if (lpBand->iRow != iRow) continue;
1816 if (dwStyle & CCS_VERT)
1817 j = lpBand->rcBand.right - lpBand->rcBand.left;
1818 else
1819 j = lpBand->rcBand.bottom - lpBand->rcBand.top;
1820 if (j > ret) ret = j;
1821 }
Eric Kohlb075ce51998-10-24 10:47:25 +00001822
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001823 TRACE("row %d, height %d\n", iRow, ret);
1824
1825 return ret;
Eric Kohlb075ce51998-10-24 10:47:25 +00001826}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001827
1828
Patrik Stridvall896889f1999-05-08 12:50:36 +00001829inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001830REBAR_GetTextColor (HWND hwnd)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001831{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001832 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001833
Alexandre Julliarda099a551999-06-12 15:45:58 +00001834 TRACE("text color 0x%06lx!\n", infoPtr->clrText);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001835
1836 return infoPtr->clrText;
1837}
1838
1839
Patrik Stridvall896889f1999-05-08 12:50:36 +00001840inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001841REBAR_GetToolTips (HWND hwnd)
Eric Kohlb075ce51998-10-24 10:47:25 +00001842{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001843 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00001844 return infoPtr->hwndToolTip;
1845}
1846
1847
Patrik Stridvall896889f1999-05-08 12:50:36 +00001848inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001849REBAR_GetUnicodeFormat (HWND hwnd)
Eric Kohl44443b61998-11-22 18:01:15 +00001850{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001851 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohl44443b61998-11-22 18:01:15 +00001852 return infoPtr->bUnicode;
1853}
Eric Kohlb075ce51998-10-24 10:47:25 +00001854
1855
Eric Kohl70e09691999-11-23 23:38:22 +00001856inline static LRESULT
1857REBAR_GetVersion (HWND hwnd)
1858{
1859 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001860 TRACE("version %d\n", infoPtr->iVersion);
Eric Kohl70e09691999-11-23 23:38:22 +00001861 return infoPtr->iVersion;
1862}
1863
1864
Eric Kohlb075ce51998-10-24 10:47:25 +00001865static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001866REBAR_HitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00001867{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001868 /* REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd); */
Eric Kohlb075ce51998-10-24 10:47:25 +00001869 LPRBHITTESTINFO lprbht = (LPRBHITTESTINFO)lParam;
1870
1871 if (!lprbht)
1872 return -1;
1873
Eric Kohlcad17ff1999-03-12 17:42:50 +00001874 REBAR_InternalHitTest (hwnd, &lprbht->pt, &lprbht->flags, &lprbht->iBand);
Eric Kohlb075ce51998-10-24 10:47:25 +00001875
1876 return lprbht->iBand;
1877}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001878
1879
1880static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001881REBAR_IdToIndex (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001882{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001883 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001884 UINT i;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001885
1886 if (infoPtr == NULL)
1887 return -1;
1888
1889 if (infoPtr->uNumBands < 1)
1890 return -1;
1891
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001892 for (i = 0; i < infoPtr->uNumBands; i++) {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001893 if (infoPtr->bands[i].wID == (UINT)wParam) {
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001894 TRACE("id %u is band %u found!\n", (UINT)wParam, i);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001895 return i;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001896 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001897 }
1898
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001899 TRACE("id %u is not found\n", (UINT)wParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001900 return -1;
1901}
1902
1903
1904static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001905REBAR_InsertBandA (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001906{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001907 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001908 LPREBARBANDINFOA lprbbi = (LPREBARBANDINFOA)lParam;
1909 UINT uIndex = (UINT)wParam;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001910 REBAR_BAND *lpBand;
1911
1912 if (infoPtr == NULL)
1913 return FALSE;
1914 if (lprbbi == NULL)
1915 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001916 if (lprbbi->cbSize < REBARBANDINFO_V3_SIZEA)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001917 return FALSE;
1918
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001919 /* trace the index as signed to see the -1 */
1920 TRACE("insert band at %d!\n", (INT)uIndex);
1921 REBAR_DumpBandInfo (lprbbi);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001922
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001923 if (infoPtr->uNumBands == 0) {
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001924 infoPtr->bands = (REBAR_BAND *)COMCTL32_Alloc (sizeof (REBAR_BAND));
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001925 uIndex = 0;
1926 }
1927 else {
1928 REBAR_BAND *oldBands = infoPtr->bands;
1929 infoPtr->bands =
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001930 (REBAR_BAND *)COMCTL32_Alloc ((infoPtr->uNumBands+1)*sizeof(REBAR_BAND));
Alexandre Julliarda3960291999-02-26 11:11:13 +00001931 if (((INT)uIndex == -1) || (uIndex > infoPtr->uNumBands))
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001932 uIndex = infoPtr->uNumBands;
1933
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001934 /* pre insert copy */
1935 if (uIndex > 0) {
1936 memcpy (&infoPtr->bands[0], &oldBands[0],
1937 uIndex * sizeof(REBAR_BAND));
1938 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001939
1940 /* post copy */
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001941 if (uIndex < infoPtr->uNumBands - 1) {
1942 memcpy (&infoPtr->bands[uIndex+1], &oldBands[uIndex],
1943 (infoPtr->uNumBands - uIndex - 1) * sizeof(REBAR_BAND));
1944 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001945
Eric Kohl44443b61998-11-22 18:01:15 +00001946 COMCTL32_Free (oldBands);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001947 }
1948
1949 infoPtr->uNumBands++;
1950
Alexandre Julliarda099a551999-06-12 15:45:58 +00001951 TRACE("index %u!\n", uIndex);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001952
1953 /* initialize band (infoPtr->bands[uIndex])*/
1954 lpBand = &infoPtr->bands[uIndex];
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001955 lpBand->fMask = 0;
1956 lpBand->clrFore = infoPtr->clrText;
1957 lpBand->clrBack = infoPtr->clrBk;
1958 lpBand->hwndChild = 0;
1959 lpBand->hwndPrevParent = 0;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001960
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001961 REBAR_CommonSetupBand (hwnd, lprbbi, lpBand);
1962 lpBand->lpText = NULL;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001963 if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
Alexandre Julliard24a62ab2000-11-28 22:40:56 +00001964 INT len = MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, NULL, 0 );
1965 if (len > 1) {
1966 lpBand->lpText = (LPWSTR)COMCTL32_Alloc (len*sizeof(WCHAR));
1967 MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, lpBand->lpText, len );
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001968 }
1969 }
1970
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001971 REBAR_ValidateBand (hwnd, infoPtr, lpBand);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001972
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001973 REBAR_DumpBand (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001974
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001975 REBAR_Layout (hwnd, NULL, FALSE, FALSE);
Eric Kohlcad17ff1999-03-12 17:42:50 +00001976 REBAR_ForceResize (hwnd);
1977 REBAR_MoveChildWindows (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00001978
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001979 return TRUE;
1980}
1981
1982
Eric Kohl44443b61998-11-22 18:01:15 +00001983static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00001984REBAR_InsertBandW (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohl44443b61998-11-22 18:01:15 +00001985{
Eric Kohlcad17ff1999-03-12 17:42:50 +00001986 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001987 LPREBARBANDINFOW lprbbi = (LPREBARBANDINFOW)lParam;
1988 UINT uIndex = (UINT)wParam;
Eric Kohl44443b61998-11-22 18:01:15 +00001989 REBAR_BAND *lpBand;
1990
1991 if (infoPtr == NULL)
1992 return FALSE;
1993 if (lprbbi == NULL)
1994 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001995 if (lprbbi->cbSize < REBARBANDINFO_V3_SIZEW)
Eric Kohl44443b61998-11-22 18:01:15 +00001996 return FALSE;
1997
Guy L. Albertellif82e4932000-10-12 23:09:01 +00001998 /* trace the index as signed to see the -1 */
1999 TRACE("insert band at %d!\n", (INT)uIndex);
2000 REBAR_DumpBandInfo ((LPREBARBANDINFOA)lprbbi);
Eric Kohl44443b61998-11-22 18:01:15 +00002001
2002 if (infoPtr->uNumBands == 0) {
2003 infoPtr->bands = (REBAR_BAND *)COMCTL32_Alloc (sizeof (REBAR_BAND));
2004 uIndex = 0;
2005 }
2006 else {
2007 REBAR_BAND *oldBands = infoPtr->bands;
2008 infoPtr->bands =
2009 (REBAR_BAND *)COMCTL32_Alloc ((infoPtr->uNumBands+1)*sizeof(REBAR_BAND));
Alexandre Julliarda3960291999-02-26 11:11:13 +00002010 if (((INT)uIndex == -1) || (uIndex > infoPtr->uNumBands))
Eric Kohl44443b61998-11-22 18:01:15 +00002011 uIndex = infoPtr->uNumBands;
2012
2013 /* pre insert copy */
2014 if (uIndex > 0) {
2015 memcpy (&infoPtr->bands[0], &oldBands[0],
2016 uIndex * sizeof(REBAR_BAND));
2017 }
2018
2019 /* post copy */
2020 if (uIndex < infoPtr->uNumBands - 1) {
2021 memcpy (&infoPtr->bands[uIndex+1], &oldBands[uIndex],
2022 (infoPtr->uNumBands - uIndex - 1) * sizeof(REBAR_BAND));
2023 }
2024
2025 COMCTL32_Free (oldBands);
2026 }
2027
2028 infoPtr->uNumBands++;
2029
Alexandre Julliarda099a551999-06-12 15:45:58 +00002030 TRACE("index %u!\n", uIndex);
Eric Kohl44443b61998-11-22 18:01:15 +00002031
2032 /* initialize band (infoPtr->bands[uIndex])*/
2033 lpBand = &infoPtr->bands[uIndex];
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002034 lpBand->fMask = 0;
2035 lpBand->clrFore = infoPtr->clrText;
2036 lpBand->clrBack = infoPtr->clrBk;
2037 lpBand->hwndChild = 0;
2038 lpBand->hwndPrevParent = 0;
Eric Kohl44443b61998-11-22 18:01:15 +00002039
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002040 REBAR_CommonSetupBand (hwnd, (LPREBARBANDINFOA)lprbbi, lpBand);
2041 lpBand->lpText = NULL;
Eric Kohl44443b61998-11-22 18:01:15 +00002042 if ((lprbbi->fMask & RBBIM_TEXT) && (lprbbi->lpText)) {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002043 INT len = lstrlenW (lprbbi->lpText);
Eric Kohl44443b61998-11-22 18:01:15 +00002044 if (len > 0) {
2045 lpBand->lpText = (LPWSTR)COMCTL32_Alloc ((len + 1)*sizeof(WCHAR));
Alexandre Julliardc7e7df82000-08-14 14:41:19 +00002046 strcpyW (lpBand->lpText, lprbbi->lpText);
Eric Kohl44443b61998-11-22 18:01:15 +00002047 }
2048 }
2049
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002050 REBAR_ValidateBand (hwnd, infoPtr, lpBand);
Eric Kohl44443b61998-11-22 18:01:15 +00002051
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002052 REBAR_DumpBand (hwnd);
Eric Kohl44443b61998-11-22 18:01:15 +00002053
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002054 REBAR_Layout (hwnd, NULL, FALSE, FALSE);
Eric Kohlcad17ff1999-03-12 17:42:50 +00002055 REBAR_ForceResize (hwnd);
2056 REBAR_MoveChildWindows (hwnd);
Eric Kohl44443b61998-11-22 18:01:15 +00002057
2058 return TRUE;
2059}
2060
2061
Eric Kohl402fcbc1999-01-24 19:05:49 +00002062static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002063REBAR_MaximizeBand (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohl402fcbc1999-01-24 19:05:49 +00002064{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002065/* REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd); */
Eric Kohl402fcbc1999-01-24 19:05:49 +00002066
Alexandre Julliarda099a551999-06-12 15:45:58 +00002067 FIXME("(uBand = %u fIdeal = %s)\n",
Alexandre Julliarda3960291999-02-26 11:11:13 +00002068 (UINT)wParam, lParam ? "TRUE" : "FALSE");
Eric Kohl402fcbc1999-01-24 19:05:49 +00002069
2070
2071 return 0;
2072}
2073
2074
2075static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002076REBAR_MinimizeBand (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohl402fcbc1999-01-24 19:05:49 +00002077{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002078/* REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd); */
Eric Kohl402fcbc1999-01-24 19:05:49 +00002079
Alexandre Julliarda099a551999-06-12 15:45:58 +00002080 FIXME("(uBand = %u)\n", (UINT)wParam);
Eric Kohl402fcbc1999-01-24 19:05:49 +00002081
2082
2083 return 0;
2084}
2085
2086
2087static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002088REBAR_MoveBand (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohl402fcbc1999-01-24 19:05:49 +00002089{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002090/* REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd); */
Eric Kohl402fcbc1999-01-24 19:05:49 +00002091
Alexandre Julliarda099a551999-06-12 15:45:58 +00002092 FIXME("(iFrom = %u iTof = %u)\n",
Alexandre Julliarda3960291999-02-26 11:11:13 +00002093 (UINT)wParam, (UINT)lParam);
Eric Kohl402fcbc1999-01-24 19:05:49 +00002094
2095
2096 return FALSE;
2097}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002098
2099
2100static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002101REBAR_SetBandInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002102{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002103 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002104 LPREBARBANDINFOA lprbbi = (LPREBARBANDINFOA)lParam;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002105 REBAR_BAND *lpBand;
2106
2107 if (lprbbi == NULL)
2108 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002109 if (lprbbi->cbSize < REBARBANDINFO_V3_SIZEA)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002110 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002111 if ((UINT)wParam >= infoPtr->uNumBands)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002112 return FALSE;
2113
Alexandre Julliarda099a551999-06-12 15:45:58 +00002114 TRACE("index %u\n", (UINT)wParam);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002115 REBAR_DumpBandInfo (lprbbi);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002116
2117 /* set band information */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002118 lpBand = &infoPtr->bands[(UINT)wParam];
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002119
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002120 REBAR_CommonSetupBand (hwnd, lprbbi, lpBand);
Eric Kohl44443b61998-11-22 18:01:15 +00002121 if (lprbbi->fMask & RBBIM_TEXT) {
2122 if (lpBand->lpText) {
2123 COMCTL32_Free (lpBand->lpText);
2124 lpBand->lpText = NULL;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002125 }
Eric Kohl44443b61998-11-22 18:01:15 +00002126 if (lprbbi->lpText) {
Alexandre Julliard24a62ab2000-11-28 22:40:56 +00002127 INT len = MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, NULL, 0 );
2128 lpBand->lpText = (LPWSTR)COMCTL32_Alloc (len*sizeof(WCHAR));
2129 MultiByteToWideChar( CP_ACP, 0, lprbbi->lpText, -1, lpBand->lpText, len );
Eric Kohl44443b61998-11-22 18:01:15 +00002130 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002131 }
2132
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002133 REBAR_ValidateBand (hwnd, infoPtr, lpBand);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002134
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002135 REBAR_DumpBand (hwnd);
2136
2137 if (lprbbi->fMask & (RBBIM_CHILDSIZE | RBBIM_SIZE)) {
2138 REBAR_Layout (hwnd, NULL, TRUE, FALSE);
2139 REBAR_ForceResize (hwnd);
2140 REBAR_MoveChildWindows (hwnd);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002141 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002142
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002143 return TRUE;
2144}
2145
2146
Eric Kohl44443b61998-11-22 18:01:15 +00002147static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002148REBAR_SetBandInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohl44443b61998-11-22 18:01:15 +00002149{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002150 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002151 LPREBARBANDINFOW lprbbi = (LPREBARBANDINFOW)lParam;
Eric Kohl44443b61998-11-22 18:01:15 +00002152 REBAR_BAND *lpBand;
2153
2154 if (lprbbi == NULL)
2155 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002156 if (lprbbi->cbSize < REBARBANDINFO_V3_SIZEW)
Eric Kohl44443b61998-11-22 18:01:15 +00002157 return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002158 if ((UINT)wParam >= infoPtr->uNumBands)
Eric Kohl44443b61998-11-22 18:01:15 +00002159 return FALSE;
2160
Alexandre Julliarda099a551999-06-12 15:45:58 +00002161 TRACE("index %u\n", (UINT)wParam);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002162 REBAR_DumpBandInfo ((LPREBARBANDINFOA)lprbbi);
Eric Kohl44443b61998-11-22 18:01:15 +00002163
2164 /* set band information */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002165 lpBand = &infoPtr->bands[(UINT)wParam];
Eric Kohl44443b61998-11-22 18:01:15 +00002166
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002167 REBAR_CommonSetupBand (hwnd, (LPREBARBANDINFOA)lprbbi, lpBand);
Eric Kohl44443b61998-11-22 18:01:15 +00002168 if (lprbbi->fMask & RBBIM_TEXT) {
2169 if (lpBand->lpText) {
2170 COMCTL32_Free (lpBand->lpText);
2171 lpBand->lpText = NULL;
2172 }
2173 if (lprbbi->lpText) {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002174 INT len = lstrlenW (lprbbi->lpText);
Eric Kohl44443b61998-11-22 18:01:15 +00002175 lpBand->lpText = (LPWSTR)COMCTL32_Alloc ((len + 1)*sizeof(WCHAR));
Alexandre Julliardc7e7df82000-08-14 14:41:19 +00002176 strcpyW (lpBand->lpText, lprbbi->lpText);
Eric Kohl44443b61998-11-22 18:01:15 +00002177 }
2178 }
2179
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002180 REBAR_ValidateBand (hwnd, infoPtr, lpBand);
Eric Kohl44443b61998-11-22 18:01:15 +00002181
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002182 REBAR_DumpBand (hwnd);
2183
2184 if (lprbbi->fMask & (RBBIM_CHILDSIZE | RBBIM_SIZE)) {
2185 REBAR_Layout (hwnd, NULL, TRUE, FALSE);
2186 REBAR_ForceResize (hwnd);
2187 REBAR_MoveChildWindows (hwnd);
Eric Kohl44443b61998-11-22 18:01:15 +00002188 }
2189
Eric Kohl44443b61998-11-22 18:01:15 +00002190 return TRUE;
2191}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002192
2193
2194static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002195REBAR_SetBarInfo (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002196{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002197 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002198 LPREBARINFO lpInfo = (LPREBARINFO)lParam;
2199
2200 if (lpInfo == NULL)
2201 return FALSE;
2202
2203 if (lpInfo->cbSize < sizeof (REBARINFO))
2204 return FALSE;
2205
Alexandre Julliarda099a551999-06-12 15:45:58 +00002206 TRACE("setting bar info!\n");
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002207
Eric Kohlb075ce51998-10-24 10:47:25 +00002208 if (lpInfo->fMask & RBIM_IMAGELIST) {
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002209 infoPtr->himl = lpInfo->himl;
Eric Kohlb075ce51998-10-24 10:47:25 +00002210 if (infoPtr->himl) {
Alexandre Julliard072dfb52000-09-25 23:30:56 +00002211 INT cx, cy;
2212 ImageList_GetIconSize (infoPtr->himl, &cx, &cy);
2213 infoPtr->imageSize.cx = cx;
2214 infoPtr->imageSize.cy = cy;
Eric Kohlb075ce51998-10-24 10:47:25 +00002215 }
2216 else {
2217 infoPtr->imageSize.cx = 0;
2218 infoPtr->imageSize.cy = 0;
2219 }
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002220 TRACE("new image cx=%ld, cy=%ld\n", infoPtr->imageSize.cx,
2221 infoPtr->imageSize.cy);
Eric Kohlb075ce51998-10-24 10:47:25 +00002222 }
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002223
2224 return TRUE;
2225}
2226
2227
2228static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002229REBAR_SetBkColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002230{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002231 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002232 COLORREF clrTemp;
2233
2234 clrTemp = infoPtr->clrBk;
2235 infoPtr->clrBk = (COLORREF)lParam;
2236
Alexandre Julliarda099a551999-06-12 15:45:58 +00002237 TRACE("background color 0x%06lx!\n", infoPtr->clrBk);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002238
2239 return clrTemp;
2240}
2241
2242
Marcus Meissner73458b01998-12-26 12:54:29 +00002243/* << REBAR_SetColorScheme >> */
2244/* << REBAR_SetPalette >> */
Eric Kohlb075ce51998-10-24 10:47:25 +00002245
2246
2247static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002248REBAR_SetParent (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002249{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002250 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002251 HWND hwndTemp = infoPtr->hwndNotify;
Eric Kohlb075ce51998-10-24 10:47:25 +00002252
Alexandre Julliarda3960291999-02-26 11:11:13 +00002253 infoPtr->hwndNotify = (HWND)wParam;
Eric Kohlb075ce51998-10-24 10:47:25 +00002254
2255 return (LRESULT)hwndTemp;
2256}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002257
2258
2259static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002260REBAR_SetTextColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002261{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002262 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002263 COLORREF clrTemp;
2264
2265 clrTemp = infoPtr->clrText;
2266 infoPtr->clrText = (COLORREF)lParam;
2267
Alexandre Julliarda099a551999-06-12 15:45:58 +00002268 TRACE("text color 0x%06lx!\n", infoPtr->clrText);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002269
2270 return clrTemp;
2271}
2272
2273
Marcus Meissner73458b01998-12-26 12:54:29 +00002274/* << REBAR_SetTooltips >> */
Eric Kohl44443b61998-11-22 18:01:15 +00002275
2276
Patrik Stridvall896889f1999-05-08 12:50:36 +00002277inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002278REBAR_SetUnicodeFormat (HWND hwnd, WPARAM wParam)
Eric Kohl44443b61998-11-22 18:01:15 +00002279{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002280 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002281 BOOL bTemp = infoPtr->bUnicode;
2282 infoPtr->bUnicode = (BOOL)wParam;
Eric Kohl44443b61998-11-22 18:01:15 +00002283 return bTemp;
2284}
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002285
2286
2287static LRESULT
Eric Kohl70e09691999-11-23 23:38:22 +00002288REBAR_SetVersion (HWND hwnd, INT iVersion)
2289{
2290 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
2291 INT iOldVersion = infoPtr->iVersion;
2292
2293 if (iVersion > COMCTL32_VERSION)
2294 return -1;
2295
2296 infoPtr->iVersion = iVersion;
2297
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002298 TRACE("new version %d\n", iVersion);
2299
Eric Kohl70e09691999-11-23 23:38:22 +00002300 return iOldVersion;
2301}
2302
2303
2304static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002305REBAR_ShowBand (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002306{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002307 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00002308 REBAR_BAND *lpBand;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002309
Alexandre Julliarda3960291999-02-26 11:11:13 +00002310 if (((INT)wParam < 0) || ((INT)wParam > infoPtr->uNumBands))
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002311 return FALSE;
2312
Alexandre Julliarda3960291999-02-26 11:11:13 +00002313 lpBand = &infoPtr->bands[(INT)wParam];
Eric Kohlb075ce51998-10-24 10:47:25 +00002314
Alexandre Julliarda3960291999-02-26 11:11:13 +00002315 if ((BOOL)lParam) {
Alexandre Julliarda099a551999-06-12 15:45:58 +00002316 TRACE("show band %d\n", (INT)wParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002317 lpBand->fStyle = lpBand->fStyle & ~RBBS_HIDDEN;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002318 if (IsWindow (lpBand->hwndChild))
2319 ShowWindow (lpBand->hwndChild, SW_SHOW);
Eric Kohlb075ce51998-10-24 10:47:25 +00002320 }
2321 else {
Alexandre Julliarda099a551999-06-12 15:45:58 +00002322 TRACE("hide band %d\n", (INT)wParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002323 lpBand->fStyle = lpBand->fStyle | RBBS_HIDDEN;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002324 if (IsWindow (lpBand->hwndChild))
2325 ShowWindow (lpBand->hwndChild, SW_SHOW);
Eric Kohlb075ce51998-10-24 10:47:25 +00002326 }
2327
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002328 REBAR_Layout (hwnd, NULL, TRUE, FALSE);
Eric Kohlcad17ff1999-03-12 17:42:50 +00002329 REBAR_ForceResize (hwnd);
2330 REBAR_MoveChildWindows (hwnd);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002331
2332 return TRUE;
2333}
2334
2335
2336static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002337REBAR_SizeToRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002338{
Alexandre Julliarda3960291999-02-26 11:11:13 +00002339 LPRECT lpRect = (LPRECT)lParam;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002340 RECT t1;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002341
2342 if (lpRect == NULL)
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002343 return FALSE;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002344
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002345 TRACE("[%d %d %d %d]\n",
2346 lpRect->left, lpRect->top, lpRect->right, lpRect->bottom);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002347
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002348 /* what is going on???? */
2349 GetWindowRect(hwnd, &t1);
2350 TRACE("window rect [%d %d %d %d]\n",
2351 t1.left, t1.top, t1.right, t1.bottom);
2352 GetClientRect(hwnd, &t1);
2353 TRACE("client rect [%d %d %d %d]\n",
2354 t1.left, t1.top, t1.right, t1.bottom);
Eric Kohlb075ce51998-10-24 10:47:25 +00002355
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002356 REBAR_Layout (hwnd, lpRect, TRUE, FALSE);
Eric Kohlcad17ff1999-03-12 17:42:50 +00002357 REBAR_ForceResize (hwnd);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002358 REBAR_MoveChildWindows (hwnd);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002359 return TRUE;
2360}
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002361
2362
2363
2364static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002365REBAR_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002366{
2367 REBAR_INFO *infoPtr;
2368
2369 /* allocate memory for info structure */
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002370 infoPtr = (REBAR_INFO *)COMCTL32_Alloc (sizeof(REBAR_INFO));
Eric Kohlcad17ff1999-03-12 17:42:50 +00002371 SetWindowLongA (hwnd, 0, (DWORD)infoPtr);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002372
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002373 /* initialize info structure */
Eric Kohl70e09691999-11-23 23:38:22 +00002374 infoPtr->iVersion = 0;
Eric Kohlb075ce51998-10-24 10:47:25 +00002375 infoPtr->clrBk = CLR_NONE;
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002376 infoPtr->clrText = GetSysColor (COLOR_BTNTEXT);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002377 infoPtr->ihitBand = -1;
2378 infoPtr->fStatus = 0;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002379
Alexandre Julliarda3960291999-02-26 11:11:13 +00002380 infoPtr->hcurArrow = LoadCursorA (0, IDC_ARROWA);
2381 infoPtr->hcurHorz = LoadCursorA (0, IDC_SIZEWEA);
2382 infoPtr->hcurVert = LoadCursorA (0, IDC_SIZENSA);
2383 infoPtr->hcurDrag = LoadCursorA (0, IDC_SIZEA);
Eric Kohlb075ce51998-10-24 10:47:25 +00002384
Eric Kohlcad17ff1999-03-12 17:42:50 +00002385 infoPtr->bUnicode = IsWindowUnicode (hwnd);
Eric Kohl44443b61998-11-22 18:01:15 +00002386
Eric Kohlcad17ff1999-03-12 17:42:50 +00002387 if (GetWindowLongA (hwnd, GWL_STYLE) & RBS_AUTOSIZE)
Alexandre Julliarda099a551999-06-12 15:45:58 +00002388 FIXME("style RBS_AUTOSIZE set!\n");
Eric Kohlb075ce51998-10-24 10:47:25 +00002389
2390#if 0
Eric Kohlcad17ff1999-03-12 17:42:50 +00002391 SendMessageA (hwnd, WM_NOTIFYFORMAT, (WPARAM)hwnd, NF_QUERY);
Eric Kohlb075ce51998-10-24 10:47:25 +00002392#endif
2393
Alexandre Julliarda099a551999-06-12 15:45:58 +00002394 TRACE("created!\n");
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002395 return 0;
2396}
2397
2398
2399static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002400REBAR_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002401{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002402 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002403 REBAR_BAND *lpBand;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002404 INT i;
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002405
2406
2407 /* free rebar bands */
2408 if ((infoPtr->uNumBands > 0) && infoPtr->bands) {
2409 /* clean up each band */
2410 for (i = 0; i < infoPtr->uNumBands; i++) {
2411 lpBand = &infoPtr->bands[i];
2412
2413 /* delete text strings */
2414 if (lpBand->lpText) {
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00002415 COMCTL32_Free (lpBand->lpText);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002416 lpBand->lpText = NULL;
2417 }
Eric Kohl12461851998-11-08 11:31:12 +00002418 /* destroy child window */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002419 DestroyWindow (lpBand->hwndChild);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002420 }
2421
2422 /* free band array */
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00002423 COMCTL32_Free (infoPtr->bands);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002424 infoPtr->bands = NULL;
2425 }
2426
Alexandre Julliarda3960291999-02-26 11:11:13 +00002427 DeleteObject (infoPtr->hcurArrow);
2428 DeleteObject (infoPtr->hcurHorz);
2429 DeleteObject (infoPtr->hcurVert);
2430 DeleteObject (infoPtr->hcurDrag);
Eric Kohlb075ce51998-10-24 10:47:25 +00002431
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002432 /* free rebar info data */
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002433 COMCTL32_Free (infoPtr);
Gerard Patela1b2fc22000-05-10 01:34:53 +00002434 SetWindowLongA (hwnd, 0, 0);
Alexandre Julliarda099a551999-06-12 15:45:58 +00002435 TRACE("destroyed!\n");
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002436 return 0;
2437}
2438
2439
Eric Kohlb075ce51998-10-24 10:47:25 +00002440static LRESULT
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002441REBAR_EraseBkGnd (HWND hwnd, WPARAM wParam, LPARAM lParam)
2442{
2443 RECT cliprect;
2444
2445 if (GetClipBox ( (HDC)wParam, &cliprect))
2446 return REBAR_InternalEraseBkGnd (hwnd, wParam, lParam, &cliprect);
2447 return 0;
2448}
2449
2450
2451static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002452REBAR_GetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002453{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002454 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00002455
2456 return (LRESULT)infoPtr->hFont;
2457}
2458
2459
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002460static LRESULT
2461REBAR_LButtonDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
2462{
2463 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
2464 REBAR_BAND *lpBand;
2465
2466 /* If InternalHitTest did not find a hit on the Gripper, */
2467 /* then ignore the button click. */
2468 if (infoPtr->ihitBand == -1) return 0;
2469
2470 SetCapture (hwnd);
2471
2472 /* save off the LOWORD and HIWORD of lParam as initial x,y */
2473 lpBand = &infoPtr->bands[infoPtr->ihitBand];
2474 infoPtr->dragStart = MAKEPOINTS(lParam);
2475 infoPtr->dragNow = infoPtr->dragStart;
2476 infoPtr->ihitoffset = infoPtr->dragStart.x - lpBand->rcGripper.left;
2477
2478 return 0;
2479}
2480
2481
2482static LRESULT
2483REBAR_LButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
2484{
2485 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
2486 NMHDR layout;
2487 NMREBAR enddrag;
2488 RECT rect;
2489
2490 /* If InternalHitTest did not find a hit on the Gripper, */
2491 /* then ignore the button click. */
2492 if (infoPtr->ihitBand == -1) return 0;
2493
2494 infoPtr->dragStart.x = 0;
2495 infoPtr->dragStart.y = 0;
2496 infoPtr->dragNow = infoPtr->dragStart;
2497 infoPtr->ihitBand = -1;
2498
2499 ReleaseCapture ();
2500
2501 if (infoPtr->fStatus & BEGIN_DRAG_ISSUED) {
2502 REBAR_Notify(hwnd, (NMHDR *) &layout, RBN_LAYOUTCHANGED);
2503
2504 enddrag.dwMask = 0;
2505 enddrag.uBand = -1;
2506 REBAR_Notify(hwnd, (NMHDR *) &enddrag, RBN_ENDDRAG);
2507 infoPtr->fStatus &= ~BEGIN_DRAG_ISSUED;
2508 }
2509
2510 GetClientRect(hwnd, &rect);
2511 InvalidateRect(hwnd, NULL, TRUE);
2512
2513 return 0;
2514}
2515
2516
Eric Kohlb075ce51998-10-24 10:47:25 +00002517static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002518REBAR_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002519{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002520 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002521 REBAR_BAND *band1, *band2;
2522 POINTS ptsmove;
Eric Kohlb075ce51998-10-24 10:47:25 +00002523
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002524 /* Validate entry as hit on Gripper has occured */
2525 if (GetCapture() != hwnd) return 0;
2526 if (infoPtr->ihitBand == -1) return 0;
2527
2528 ptsmove = MAKEPOINTS(lParam);
2529
2530 /* if mouse did not move much, exit */
2531 if ((abs(ptsmove.x - infoPtr->dragNow.x) <= mindragx) &&
2532 (abs(ptsmove.y - infoPtr->dragNow.y) <= mindragy)) return 0;
2533
2534 band1 = &infoPtr->bands[infoPtr->ihitBand-1];
2535 band2 = &infoPtr->bands[infoPtr->ihitBand];
2536
2537 /* Test for valid drag case - must not be first band in row */
2538 if ((ptsmove.y < band2->rcBand.top) ||
2539 (ptsmove.y > band2->rcBand.bottom) ||
2540 ((infoPtr->ihitBand > 0) && (band1->iRow != band2->iRow))) {
2541 FIXME("Cannot drag to other rows yet!!\n");
2542 }
2543 else {
2544 REBAR_HandleLRDrag (hwnd, infoPtr, &ptsmove);
2545 }
Eric Kohlb075ce51998-10-24 10:47:25 +00002546 return 0;
2547}
Eric Kohlb075ce51998-10-24 10:47:25 +00002548
2549
Patrik Stridvall896889f1999-05-08 12:50:36 +00002550inline static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002551REBAR_NCCalcSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002552{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002553 if (GetWindowLongA (hwnd, GWL_STYLE) & WS_BORDER) {
Marcus Meissner9f3eb191999-05-22 11:22:36 +00002554 ((LPRECT)lParam)->left += GetSystemMetrics(SM_CXEDGE);
2555 ((LPRECT)lParam)->top += GetSystemMetrics(SM_CYEDGE);
2556 ((LPRECT)lParam)->right -= GetSystemMetrics(SM_CXEDGE);
2557 ((LPRECT)lParam)->bottom -= GetSystemMetrics(SM_CYEDGE);
Eric Kohlb075ce51998-10-24 10:47:25 +00002558 }
2559
Eric Kohl12461851998-11-08 11:31:12 +00002560 return 0;
Eric Kohlb075ce51998-10-24 10:47:25 +00002561}
2562
2563
2564static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002565REBAR_NCPaint (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002566{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002567 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
2568 RECT rcWindow;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002569 HDC hdc;
Eric Kohlb075ce51998-10-24 10:47:25 +00002570
Eric Kohlcad17ff1999-03-12 17:42:50 +00002571 if (dwStyle & WS_MINIMIZE)
2572 return 0; /* Nothing to do */
Eric Kohlb075ce51998-10-24 10:47:25 +00002573
Alexandre Julliarda3960291999-02-26 11:11:13 +00002574 DefWindowProcA (hwnd, WM_NCPAINT, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002575
Eric Kohlcad17ff1999-03-12 17:42:50 +00002576 if (!(hdc = GetDCEx( hwnd, 0, DCX_USESTYLE | DCX_WINDOW )))
Eric Kohlb075ce51998-10-24 10:47:25 +00002577 return 0;
Eric Kohlb075ce51998-10-24 10:47:25 +00002578
Eric Kohlcad17ff1999-03-12 17:42:50 +00002579 if (dwStyle & WS_BORDER) {
2580 GetWindowRect (hwnd, &rcWindow);
2581 OffsetRect (&rcWindow, -rcWindow.left, -rcWindow.top);
2582 DrawEdge (hdc, &rcWindow, EDGE_ETCHED, BF_RECT);
2583 }
Eric Kohlb075ce51998-10-24 10:47:25 +00002584
Alexandre Julliarda3960291999-02-26 11:11:13 +00002585 ReleaseDC( hwnd, hdc );
Eric Kohlb075ce51998-10-24 10:47:25 +00002586
2587 return 0;
2588}
2589
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002590
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002591static LRESULT
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002592REBAR_Paint (HWND hwnd, WPARAM wParam, LPARAM lParam)
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002593{
Alexandre Julliarda3960291999-02-26 11:11:13 +00002594 HDC hdc;
2595 PAINTSTRUCT ps;
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002596
Eric Kohlcad17ff1999-03-12 17:42:50 +00002597 hdc = wParam==0 ? BeginPaint (hwnd, &ps) : (HDC)wParam;
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002598
2599 if (ps.fErase) {
2600 /* Erase area of paint if requested */
2601 REBAR_InternalEraseBkGnd (hwnd, wParam, lParam, &ps.rcPaint);
2602 }
2603
Eric Kohlcad17ff1999-03-12 17:42:50 +00002604 REBAR_Refresh (hwnd, hdc);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002605 if (!wParam)
Eric Kohlcad17ff1999-03-12 17:42:50 +00002606 EndPaint (hwnd, &ps);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002607 return 0;
2608}
2609
2610
Eric Kohlb075ce51998-10-24 10:47:25 +00002611static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002612REBAR_SetCursor (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002613{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002614 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
2615 DWORD dwStyle = GetWindowLongA (hwnd, GWL_STYLE);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002616 POINT pt;
2617 UINT flags;
Eric Kohlb075ce51998-10-24 10:47:25 +00002618
Alexandre Julliarda099a551999-06-12 15:45:58 +00002619 TRACE("code=0x%X id=0x%X\n", LOWORD(lParam), HIWORD(lParam));
Eric Kohlb075ce51998-10-24 10:47:25 +00002620
Alexandre Julliarda3960291999-02-26 11:11:13 +00002621 GetCursorPos (&pt);
Eric Kohlcad17ff1999-03-12 17:42:50 +00002622 ScreenToClient (hwnd, &pt);
Eric Kohlb075ce51998-10-24 10:47:25 +00002623
Eric Kohlcad17ff1999-03-12 17:42:50 +00002624 REBAR_InternalHitTest (hwnd, &pt, &flags, NULL);
Eric Kohlb075ce51998-10-24 10:47:25 +00002625
2626 if (flags == RBHT_GRABBER) {
Eric Kohlcad17ff1999-03-12 17:42:50 +00002627 if ((dwStyle & CCS_VERT) &&
2628 !(dwStyle & RBS_VERTICALGRIPPER))
Alexandre Julliarda3960291999-02-26 11:11:13 +00002629 SetCursor (infoPtr->hcurVert);
Eric Kohlb075ce51998-10-24 10:47:25 +00002630 else
Alexandre Julliarda3960291999-02-26 11:11:13 +00002631 SetCursor (infoPtr->hcurHorz);
Eric Kohlb075ce51998-10-24 10:47:25 +00002632 }
2633 else if (flags != RBHT_CLIENT)
Alexandre Julliarda3960291999-02-26 11:11:13 +00002634 SetCursor (infoPtr->hcurArrow);
Eric Kohlb075ce51998-10-24 10:47:25 +00002635
2636 return 0;
2637}
2638
2639
2640static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002641REBAR_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002642{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002643 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
James Juranc2a10631999-01-28 16:33:44 +00002644
2645 /* TEXTMETRIC32A tm; */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002646 HFONT hFont /*, hOldFont */;
James Juranc2a10631999-01-28 16:33:44 +00002647 /* HDC32 hdc; */
Eric Kohlb075ce51998-10-24 10:47:25 +00002648
Alexandre Julliarda3960291999-02-26 11:11:13 +00002649 infoPtr->hFont = (HFONT)wParam;
Eric Kohlb075ce51998-10-24 10:47:25 +00002650
Alexandre Julliarda3960291999-02-26 11:11:13 +00002651 hFont = infoPtr->hFont ? infoPtr->hFont : GetStockObject (SYSTEM_FONT);
Eric Kohlb075ce51998-10-24 10:47:25 +00002652/*
2653 hdc = GetDC32 (0);
2654 hOldFont = SelectObject32 (hdc, hFont);
2655 GetTextMetrics32A (hdc, &tm);
2656 infoPtr->nHeight = tm.tmHeight + VERT_BORDER;
2657 SelectObject32 (hdc, hOldFont);
2658 ReleaseDC32 (0, hdc);
2659*/
2660 if (lParam) {
2661/*
Eric Kohlcad17ff1999-03-12 17:42:50 +00002662 REBAR_Layout (hwnd);
2663 hdc = GetDC32 (hwnd);
2664 REBAR_Refresh (hwnd, hdc);
2665 ReleaseDC32 (hwnd, hdc);
Eric Kohlb075ce51998-10-24 10:47:25 +00002666*/
2667 }
2668
2669 return 0;
2670}
2671
2672static LRESULT
Eric Kohlcad17ff1999-03-12 17:42:50 +00002673REBAR_Size (HWND hwnd, WPARAM wParam, LPARAM lParam)
Eric Kohlb075ce51998-10-24 10:47:25 +00002674{
Eric Kohlcad17ff1999-03-12 17:42:50 +00002675 REBAR_INFO *infoPtr = REBAR_GetInfoPtr (hwnd);
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002676 RECT rcClient;
Eric Kohlb075ce51998-10-24 10:47:25 +00002677
2678 /* auto resize deadlock check */
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002679 if (infoPtr->fStatus & AUTO_RESIZE) {
2680 infoPtr->fStatus &= ~AUTO_RESIZE;
Eric Kohlb075ce51998-10-24 10:47:25 +00002681 return 0;
2682 }
2683
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002684 GetClientRect (hwnd, &rcClient);
2685 if ((lParam == 0) && (rcClient.right == 0) && (rcClient.bottom == 0)) {
2686 /* native control seems to do this */
2687 GetClientRect (GetParent(hwnd), &rcClient);
2688 TRACE("sizing rebar, message and client zero, parent client (%d,%d)\n",
2689 rcClient.right, rcClient.bottom);
Eric Kohlb075ce51998-10-24 10:47:25 +00002690 }
2691 else {
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002692 TRACE("sizing rebar to (%d,%d), client (%d,%d)\n",
2693 LOWORD(lParam), HIWORD(lParam), rcClient.right, rcClient.bottom);
Eric Kohlb075ce51998-10-24 10:47:25 +00002694 }
2695
Guy L. Albertellif82e4932000-10-12 23:09:01 +00002696 REBAR_Layout (hwnd, &rcClient, FALSE, TRUE);
Eric Kohlcad17ff1999-03-12 17:42:50 +00002697 REBAR_ForceResize (hwnd);
2698 REBAR_MoveChildWindows (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00002699
2700 return 0;
2701}
2702
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002703
Patrik Stridvall26ffb3c1999-07-31 14:41:43 +00002704static LRESULT WINAPI
Alexandre Julliarda3960291999-02-26 11:11:13 +00002705REBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
Alexandre Julliard642d3131998-07-12 19:29:36 +00002706{
Gerard Patela1b2fc22000-05-10 01:34:53 +00002707 TRACE("hwnd=%x msg=%x wparam=%x lparam=%lx\n", hwnd, uMsg, wParam, lParam);
2708 if (!REBAR_GetInfoPtr (hwnd) && (uMsg != WM_CREATE))
2709 return DefWindowProcA (hwnd, uMsg, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002710 switch (uMsg)
2711 {
Marcus Meissner73458b01998-12-26 12:54:29 +00002712/* case RB_BEGINDRAG: */
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00002713
2714 case RB_DELETEBAND:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002715 return REBAR_DeleteBand (hwnd, wParam, lParam);
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00002716
Marcus Meissner73458b01998-12-26 12:54:29 +00002717/* case RB_DRAGMOVE: */
2718/* case RB_ENDDRAG: */
Eric Kohl402fcbc1999-01-24 19:05:49 +00002719
2720 case RB_GETBANDBORDERS:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002721 return REBAR_GetBandBorders (hwnd, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002722
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002723 case RB_GETBANDCOUNT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002724 return REBAR_GetBandCount (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002725
Marcus Meissner6ce752c2000-11-01 21:35:28 +00002726 case RB_GETBANDINFO: /* obsoleted after IE3, but we have to
2727 support it anyway. */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002728 case RB_GETBANDINFOA:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002729 return REBAR_GetBandInfoA (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002730
Alexandre Julliarda3960291999-02-26 11:11:13 +00002731 case RB_GETBANDINFOW:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002732 return REBAR_GetBandInfoW (hwnd, wParam, lParam);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002733
2734 case RB_GETBARHEIGHT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002735 return REBAR_GetBarHeight (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002736
2737 case RB_GETBARINFO:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002738 return REBAR_GetBarInfo (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002739
2740 case RB_GETBKCOLOR:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002741 return REBAR_GetBkColor (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002742
Marcus Meissner73458b01998-12-26 12:54:29 +00002743/* case RB_GETCOLORSCHEME: */
2744/* case RB_GETDROPTARGET: */
Eric Kohlb075ce51998-10-24 10:47:25 +00002745
2746 case RB_GETPALETTE:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002747 return REBAR_GetPalette (hwnd, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002748
2749 case RB_GETRECT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002750 return REBAR_GetRect (hwnd, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002751
2752 case RB_GETROWCOUNT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002753 return REBAR_GetRowCount (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00002754
2755 case RB_GETROWHEIGHT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002756 return REBAR_GetRowHeight (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002757
2758 case RB_GETTEXTCOLOR:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002759 return REBAR_GetTextColor (hwnd);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002760
Eric Kohlb075ce51998-10-24 10:47:25 +00002761 case RB_GETTOOLTIPS:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002762 return REBAR_GetToolTips (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00002763
Eric Kohl44443b61998-11-22 18:01:15 +00002764 case RB_GETUNICODEFORMAT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002765 return REBAR_GetUnicodeFormat (hwnd);
Eric Kohlb075ce51998-10-24 10:47:25 +00002766
Eric Kohl70e09691999-11-23 23:38:22 +00002767 case CCM_GETVERSION:
2768 return REBAR_GetVersion (hwnd);
2769
Eric Kohlb075ce51998-10-24 10:47:25 +00002770 case RB_HITTEST:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002771 return REBAR_HitTest (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002772
2773 case RB_IDTOINDEX:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002774 return REBAR_IdToIndex (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002775
Alexandre Julliarda3960291999-02-26 11:11:13 +00002776 case RB_INSERTBANDA:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002777 return REBAR_InsertBandA (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002778
Alexandre Julliarda3960291999-02-26 11:11:13 +00002779 case RB_INSERTBANDW:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002780 return REBAR_InsertBandW (hwnd, wParam, lParam);
Eric Kohl44443b61998-11-22 18:01:15 +00002781
Eric Kohl402fcbc1999-01-24 19:05:49 +00002782 case RB_MAXIMIZEBAND:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002783 return REBAR_MaximizeBand (hwnd, wParam, lParam);
Eric Kohl402fcbc1999-01-24 19:05:49 +00002784
2785 case RB_MINIMIZEBAND:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002786 return REBAR_MinimizeBand (hwnd, wParam, lParam);
Eric Kohl402fcbc1999-01-24 19:05:49 +00002787
2788 case RB_MOVEBAND:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002789 return REBAR_MoveBand (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002790
Alexandre Julliarda3960291999-02-26 11:11:13 +00002791 case RB_SETBANDINFOA:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002792 return REBAR_SetBandInfoA (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002793
Alexandre Julliarda3960291999-02-26 11:11:13 +00002794 case RB_SETBANDINFOW:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002795 return REBAR_SetBandInfoW (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002796
2797 case RB_SETBARINFO:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002798 return REBAR_SetBarInfo (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002799
2800 case RB_SETBKCOLOR:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002801 return REBAR_SetBkColor (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002802
Marcus Meissner73458b01998-12-26 12:54:29 +00002803/* case RB_SETCOLORSCHEME: */
2804/* case RB_SETPALETTE: */
Eric Kohlcad17ff1999-03-12 17:42:50 +00002805/* return REBAR_GetPalette (hwnd, wParam, lParam); */
Eric Kohlb075ce51998-10-24 10:47:25 +00002806
2807 case RB_SETPARENT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002808 return REBAR_SetParent (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002809
2810 case RB_SETTEXTCOLOR:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002811 return REBAR_SetTextColor (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002812
Marcus Meissner73458b01998-12-26 12:54:29 +00002813/* case RB_SETTOOLTIPS: */
Eric Kohl44443b61998-11-22 18:01:15 +00002814
2815 case RB_SETUNICODEFORMAT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002816 return REBAR_SetUnicodeFormat (hwnd, wParam);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002817
Eric Kohl70e09691999-11-23 23:38:22 +00002818 case CCM_SETVERSION:
2819 return REBAR_SetVersion (hwnd, (INT)wParam);
2820
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002821 case RB_SHOWBAND:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002822 return REBAR_ShowBand (hwnd, wParam, lParam);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002823
2824 case RB_SIZETORECT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002825 return REBAR_SizeToRect (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002826
2827
Eric Kohl402fcbc1999-01-24 19:05:49 +00002828 case WM_COMMAND:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002829 return SendMessageA (GetParent (hwnd), uMsg, wParam, lParam);
Eric Kohl402fcbc1999-01-24 19:05:49 +00002830
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002831 case WM_CREATE:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002832 return REBAR_Create (hwnd, wParam, lParam);
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00002833
2834 case WM_DESTROY:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002835 return REBAR_Destroy (hwnd, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002836
Eric Kohlb075ce51998-10-24 10:47:25 +00002837 case WM_GETFONT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002838 return REBAR_GetFont (hwnd, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002839
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002840 case WM_LBUTTONDOWN:
2841 return REBAR_LButtonDown (hwnd, wParam, lParam);
2842
2843 case WM_LBUTTONUP:
2844 return REBAR_LButtonUp (hwnd, wParam, lParam);
2845
2846 case WM_MOUSEMOVE:
2847 return REBAR_MouseMove (hwnd, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002848
Eric Kohlb075ce51998-10-24 10:47:25 +00002849 case WM_NCCALCSIZE:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002850 return REBAR_NCCalcSize (hwnd, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002851
2852 case WM_NCPAINT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002853 return REBAR_NCPaint (hwnd, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002854
Eric Kohl44443b61998-11-22 18:01:15 +00002855 case WM_NOTIFY:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002856 return SendMessageA (GetParent (hwnd), uMsg, wParam, lParam);
Eric Kohl44443b61998-11-22 18:01:15 +00002857
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002858 case WM_PAINT:
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002859 return REBAR_Paint (hwnd, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002860
Eric Kohlb075ce51998-10-24 10:47:25 +00002861 case WM_SETCURSOR:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002862 return REBAR_SetCursor (hwnd, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002863
2864 case WM_SETFONT:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002865 return REBAR_SetFont (hwnd, wParam, lParam);
Eric Kohlb075ce51998-10-24 10:47:25 +00002866
2867 case WM_SIZE:
Eric Kohlcad17ff1999-03-12 17:42:50 +00002868 return REBAR_Size (hwnd, wParam, lParam);
Marcus Meissner6e9c5062000-11-04 02:54:32 +00002869 case WM_DRAWITEM:
2870 return SendMessageA(GetParent(hwnd),uMsg,wParam,lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002871
Marcus Meissner73458b01998-12-26 12:54:29 +00002872/* case WM_TIMER: */
Alexandre Julliard642d3131998-07-12 19:29:36 +00002873
Marcus Meissner73458b01998-12-26 12:54:29 +00002874/* case WM_WININICHANGE: */
Alexandre Julliard642d3131998-07-12 19:29:36 +00002875
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002876 case WM_ERASEBKGND:
2877 return REBAR_EraseBkGnd (hwnd, wParam, lParam);
2878
Alexandre Julliard642d3131998-07-12 19:29:36 +00002879 default:
2880 if (uMsg >= WM_USER)
Alexandre Julliarda099a551999-06-12 15:45:58 +00002881 ERR("unknown msg %04x wp=%08x lp=%08lx\n",
Alexandre Julliard642d3131998-07-12 19:29:36 +00002882 uMsg, wParam, lParam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002883 return DefWindowProcA (hwnd, uMsg, wParam, lParam);
Alexandre Julliard642d3131998-07-12 19:29:36 +00002884 }
2885 return 0;
2886}
2887
2888
Eric Kohlb075ce51998-10-24 10:47:25 +00002889VOID
Patrik Stridvall9e61c1c1999-06-12 08:27:49 +00002890REBAR_Register (void)
Alexandre Julliard642d3131998-07-12 19:29:36 +00002891{
Alexandre Julliarda3960291999-02-26 11:11:13 +00002892 WNDCLASSA wndClass;
Alexandre Julliard642d3131998-07-12 19:29:36 +00002893
Alexandre Julliarda3960291999-02-26 11:11:13 +00002894 ZeroMemory (&wndClass, sizeof(WNDCLASSA));
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002895 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002896 wndClass.lpfnWndProc = (WNDPROC)REBAR_WindowProc;
Alexandre Julliard642d3131998-07-12 19:29:36 +00002897 wndClass.cbClsExtra = 0;
2898 wndClass.cbWndExtra = sizeof(REBAR_INFO *);
Alexandre Julliarda0d77311998-09-13 16:32:00 +00002899 wndClass.hCursor = 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002900 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
2901 wndClass.lpszClassName = REBARCLASSNAMEA;
Alexandre Julliard642d3131998-07-12 19:29:36 +00002902
Alexandre Julliarda3960291999-02-26 11:11:13 +00002903 RegisterClassA (&wndClass);
Guy L. Albertelli418efdc2000-11-13 19:29:16 +00002904
2905 mindragx = GetSystemMetrics (SM_CXDRAG);
2906 mindragy = GetSystemMetrics (SM_CYDRAG);
2907
Alexandre Julliard642d3131998-07-12 19:29:36 +00002908}
2909
Eric Kohlb075ce51998-10-24 10:47:25 +00002910
2911VOID
Patrik Stridvall9e61c1c1999-06-12 08:27:49 +00002912REBAR_Unregister (void)
Eric Kohlb075ce51998-10-24 10:47:25 +00002913{
Alexandre Julliardd711ad92000-02-13 15:10:16 +00002914 UnregisterClassA (REBARCLASSNAMEA, (HINSTANCE)NULL);
Eric Kohlb075ce51998-10-24 10:47:25 +00002915}
2916