winedump: Free function_name on all error paths.
[wine/wine-kai.git] / dlls / comctl32 / header.c
blob73b10950a26e5889c1da7c553ba4433e280b3c10
1 /*
2 * Header control
4 * Copyright 1998 Eric Kohl
5 * Copyright 2000 Eric Kohl for CodeWeavers
6 * Copyright 2003 Maxime Bellenge
7 * Copyright 2006 Mikolaj Zalewski
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * TODO:
24 * - Imagelist support (completed?)
25 * - Hottrack support (completed?)
26 * - Filters support (HDS_FILTER, HDI_FILTER, HDM_*FILTER*, HDN_*FILTER*)
27 * - New Windows Vista features
30 #include <stdarg.h>
31 #include <stdlib.h>
32 #include <string.h>
34 #include "windef.h"
35 #include "winbase.h"
36 #include "wine/unicode.h"
37 #include "wingdi.h"
38 #include "winuser.h"
39 #include "winnls.h"
40 #include "commctrl.h"
41 #include "comctl32.h"
42 #include "imagelist.h"
43 #include "tmschema.h"
44 #include "uxtheme.h"
45 #include "wine/debug.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(header);
49 typedef struct
51 INT cxy;
52 HBITMAP hbm;
53 LPWSTR pszText;
54 INT fmt;
55 LPARAM lParam;
56 INT iImage;
57 INT iOrder; /* see documentation of HD_ITEM */
59 BOOL bDown; /* is item pressed? (used for drawing) */
60 RECT rect; /* bounding rectangle of the item */
61 DWORD callbackMask; /* HDI_* flags for items that are callback */
62 } HEADER_ITEM;
65 typedef struct
67 HWND hwndNotify; /* Owner window to send notifications to */
68 INT nNotifyFormat; /* format used for WM_NOTIFY messages */
69 UINT uNumItem; /* number of items (columns) */
70 INT nHeight; /* height of the header (pixels) */
71 HFONT hFont; /* handle to the current font */
72 HCURSOR hcurArrow; /* handle to the arrow cursor */
73 HCURSOR hcurDivider; /* handle to a cursor (used over dividers) <-|-> */
74 HCURSOR hcurDivopen; /* handle to a cursor (used over dividers) <-||-> */
75 BOOL bCaptured; /* Is the mouse captured? */
76 BOOL bPressed; /* Is a header item pressed (down)? */
77 BOOL bDragging; /* Are we dragging an item? */
78 BOOL bTracking; /* Is in tracking mode? */
79 POINT ptLButtonDown; /* The point where the left button was pressed */
80 INT iMoveItem; /* index of tracked item. (Tracking mode) */
81 INT xTrackOffset; /* distance between the right side of the tracked item and the cursor */
82 INT xOldTrack; /* track offset (see above) after the last WM_MOUSEMOVE */
83 INT iHotItem; /* index of hot item (cursor is over this item) */
84 INT iHotDivider; /* index of the hot divider (used while dragging an item or by HDM_SETHOTDIVIDER) */
85 INT iMargin; /* width of the margin that surrounds a bitmap */
87 HIMAGELIST himl; /* handle to an image list (may be 0) */
88 HEADER_ITEM *items; /* pointer to array of HEADER_ITEM's */
89 INT *order; /* array of item IDs indexed by order */
90 BOOL bRectsValid; /* validity flag for bounding rectangles */
91 } HEADER_INFO;
94 #define VERT_BORDER 4
95 #define DIVIDER_WIDTH 10
96 #define HOT_DIVIDER_WIDTH 2
97 #define MAX_HEADER_TEXT_LEN 260
98 #define HDN_UNICODE_OFFSET 20
99 #define HDN_FIRST_UNICODE (HDN_FIRST-HDN_UNICODE_OFFSET)
101 #define HDI_SUPPORTED_FIELDS (HDI_WIDTH|HDI_TEXT|HDI_FORMAT|HDI_LPARAM|HDI_BITMAP|HDI_IMAGE|HDI_ORDER)
102 #define HDI_UNSUPPORTED_FIELDS (HDI_FILTER)
103 #define HDI_UNKNOWN_FIELDS (~(HDI_SUPPORTED_FIELDS|HDI_UNSUPPORTED_FIELDS|HDI_DI_SETITEM))
104 #define HDI_COMCTL32_4_0_FIELDS (HDI_WIDTH|HDI_TEXT|HDI_FORMAT|HDI_LPARAM|HDI_BITMAP)
106 #define HEADER_GetInfoPtr(hwnd) ((HEADER_INFO *)GetWindowLongPtrW(hwnd,0))
108 static BOOL HEADER_PrepareCallbackItems(HWND hwnd, INT iItem, INT reqMask);
109 static void HEADER_FreeCallbackItems(HEADER_ITEM *lpItem);
110 static LRESULT HEADER_SendNotify(HWND hwnd, UINT code, NMHDR *hdr);
111 static LRESULT HEADER_SendCtrlCustomDraw(HWND hwnd, DWORD dwDrawStage, HDC hdc, RECT *rect);
113 static const WCHAR themeClass[] = {'H','e','a','d','e','r',0};
114 static WCHAR emptyString[] = {0};
116 static void HEADER_DisposeItem(HEADER_ITEM *lpItem)
118 if (lpItem->pszText)
120 Free(lpItem->pszText);
124 static void HEADER_StoreHDItemInHeader(HEADER_ITEM *lpItem, UINT mask, HDITEMW *phdi, BOOL fUnicode)
126 if (mask & HDI_UNSUPPORTED_FIELDS)
127 FIXME("unsupported header fields %x\n", (mask & HDI_UNSUPPORTED_FIELDS));
129 if (mask & HDI_BITMAP)
130 lpItem->hbm = phdi->hbm;
132 if (mask & HDI_FORMAT)
133 lpItem->fmt = phdi->fmt;
135 if (mask & HDI_LPARAM)
136 lpItem->lParam = phdi->lParam;
138 if (mask & HDI_WIDTH)
139 lpItem->cxy = phdi->cxy;
141 if (mask & HDI_IMAGE)
143 lpItem->iImage = phdi->iImage;
144 if (phdi->iImage == I_IMAGECALLBACK)
145 lpItem->callbackMask |= HDI_IMAGE;
146 else
147 lpItem->callbackMask &= ~HDI_IMAGE;
150 if (mask & HDI_TEXT)
152 if (lpItem->pszText)
154 Free(lpItem->pszText);
155 lpItem->pszText = NULL;
158 if (phdi->pszText != LPSTR_TEXTCALLBACKW) /* covers != TEXTCALLBACKA too */
160 LPWSTR pszText = (phdi->pszText != NULL ? phdi->pszText : emptyString);
161 if (fUnicode)
162 Str_SetPtrW(&lpItem->pszText, pszText);
163 else
164 Str_SetPtrAtoW(&lpItem->pszText, (LPSTR)pszText);
165 lpItem->callbackMask &= ~HDI_TEXT;
167 else
169 lpItem->pszText = NULL;
170 lpItem->callbackMask |= HDI_TEXT;
175 inline static LRESULT
176 HEADER_IndexToOrder (HWND hwnd, INT iItem)
178 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
179 HEADER_ITEM *lpItem = &infoPtr->items[iItem];
180 return lpItem->iOrder;
184 static INT
185 HEADER_OrderToIndex(HWND hwnd, WPARAM wParam)
187 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
188 INT iorder = (INT)wParam;
190 if ((iorder <0) || iorder >= infoPtr->uNumItem)
191 return iorder;
192 return infoPtr->order[iorder];
195 static void
196 HEADER_ChangeItemOrder(HEADER_INFO *infoPtr, INT iItem, INT iNewOrder)
198 HEADER_ITEM *lpItem = &infoPtr->items[iItem];
199 INT i, nMin, nMax;
201 TRACE("%d: %d->%d\n", iItem, lpItem->iOrder, iNewOrder);
202 if (lpItem->iOrder < iNewOrder)
204 memmove(&infoPtr->order[lpItem->iOrder],
205 &infoPtr->order[lpItem->iOrder + 1],
206 (iNewOrder - lpItem->iOrder) * sizeof(INT));
208 if (iNewOrder < lpItem->iOrder)
210 memmove(&infoPtr->order[iNewOrder + 1],
211 &infoPtr->order[iNewOrder],
212 (lpItem->iOrder - iNewOrder) * sizeof(INT));
214 infoPtr->order[iNewOrder] = iItem;
215 nMin = min(lpItem->iOrder, iNewOrder);
216 nMax = max(lpItem->iOrder, iNewOrder);
217 for (i = nMin; i <= nMax; i++)
218 infoPtr->items[infoPtr->order[i]].iOrder = i;
221 /* Note: if iItem is the last item then this function returns infoPtr->uNumItem */
222 static INT
223 HEADER_NextItem(HWND hwnd, INT iItem)
225 return HEADER_OrderToIndex(hwnd, HEADER_IndexToOrder(hwnd, iItem)+1);
228 static INT
229 HEADER_PrevItem(HWND hwnd, INT iItem)
231 return HEADER_OrderToIndex(hwnd, HEADER_IndexToOrder(hwnd, iItem)-1);
234 static void
235 HEADER_SetItemBounds (HWND hwnd)
237 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
238 HEADER_ITEM *phdi;
239 RECT rect;
240 unsigned int i;
241 int x;
243 infoPtr->bRectsValid = TRUE;
245 if (infoPtr->uNumItem == 0)
246 return;
248 GetClientRect (hwnd, &rect);
250 x = rect.left;
251 for (i = 0; i < infoPtr->uNumItem; i++) {
252 phdi = &infoPtr->items[HEADER_OrderToIndex(hwnd,i)];
253 phdi->rect.top = rect.top;
254 phdi->rect.bottom = rect.bottom;
255 phdi->rect.left = x;
256 phdi->rect.right = phdi->rect.left + ((phdi->cxy>0)?phdi->cxy:0);
257 x = phdi->rect.right;
261 static LRESULT
262 HEADER_Size (HWND hwnd, WPARAM wParam)
264 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
266 infoPtr->bRectsValid = FALSE;
268 return 0;
271 static void HEADER_GetHotDividerRect(HWND hwnd, HEADER_INFO *infoPtr, RECT *r)
273 INT iDivider = infoPtr->iHotDivider;
274 if (infoPtr->uNumItem > 0)
276 HEADER_ITEM *lpItem;
278 if (iDivider < infoPtr->uNumItem)
280 lpItem = &infoPtr->items[iDivider];
281 r->left = lpItem->rect.left - HOT_DIVIDER_WIDTH/2;
282 r->right = lpItem->rect.left + HOT_DIVIDER_WIDTH/2;
284 else
286 lpItem = &infoPtr->items[HEADER_OrderToIndex(hwnd, infoPtr->uNumItem-1)];
287 r->left = lpItem->rect.right - HOT_DIVIDER_WIDTH/2;
288 r->right = lpItem->rect.right + HOT_DIVIDER_WIDTH/2;
290 r->top = lpItem->rect.top;
291 r->bottom = lpItem->rect.bottom;
293 else
295 RECT clientRect;
296 GetClientRect(hwnd, &clientRect);
297 *r = clientRect;
298 r->right = r->left + HOT_DIVIDER_WIDTH/2;
303 static INT
304 HEADER_DrawItem (HWND hwnd, HDC hdc, INT iItem, BOOL bHotTrack, LRESULT lCDFlags)
306 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
307 HEADER_ITEM *phdi = &infoPtr->items[iItem];
308 RECT r;
309 INT oldBkMode;
310 HTHEME theme = GetWindowTheme (hwnd);
311 NMCUSTOMDRAW nmcd;
313 TRACE("DrawItem(iItem %d bHotTrack %d unicode flag %d)\n", iItem, bHotTrack, (infoPtr->nNotifyFormat == NFR_UNICODE));
315 r = phdi->rect;
316 if (r.right - r.left == 0)
317 return phdi->rect.right;
319 /* Set the colors before sending NM_CUSTOMDRAW so that it can change them */
320 SetTextColor(hdc, (bHotTrack && !theme) ? COLOR_HIGHLIGHT : COLOR_BTNTEXT);
321 SetBkColor(hdc, GetSysColor(COLOR_3DFACE));
323 if (lCDFlags & CDRF_NOTIFYITEMDRAW && !(phdi->fmt & HDF_OWNERDRAW))
325 LRESULT lCDItemFlags;
327 nmcd.dwDrawStage = CDDS_PREPAINT | CDDS_ITEM;
328 nmcd.hdc = hdc;
329 nmcd.dwItemSpec = iItem;
330 nmcd.rc = r;
331 nmcd.uItemState = phdi->bDown ? CDIS_SELECTED : 0;
332 nmcd.lItemlParam = phdi->lParam;
334 lCDItemFlags = HEADER_SendNotify(hwnd, NM_CUSTOMDRAW, (NMHDR *)&nmcd);
335 if (lCDItemFlags & CDRF_SKIPDEFAULT)
336 return phdi->rect.right;
339 if (theme != NULL) {
340 int state = (phdi->bDown) ? HIS_PRESSED :
341 (bHotTrack ? HIS_HOT : HIS_NORMAL);
342 DrawThemeBackground (theme, hdc, HP_HEADERITEM, state,
343 &r, NULL);
344 GetThemeBackgroundContentRect (theme, hdc, HP_HEADERITEM, state,
345 &r, &r);
347 else {
348 HBRUSH hbr;
350 if (GetWindowLongW (hwnd, GWL_STYLE) & HDS_BUTTONS) {
351 if (phdi->bDown) {
352 DrawEdge (hdc, &r, BDR_RAISEDOUTER,
353 BF_RECT | BF_FLAT | BF_MIDDLE | BF_ADJUST);
355 else
356 DrawEdge (hdc, &r, EDGE_RAISED,
357 BF_RECT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
359 else
360 DrawEdge (hdc, &r, EDGE_ETCHED, BF_BOTTOM | BF_RIGHT | BF_ADJUST);
362 hbr = CreateSolidBrush(GetBkColor(hdc));
363 FillRect(hdc, &r, hbr);
364 DeleteObject(hbr);
366 if (phdi->bDown) {
367 r.left += 2;
368 r.top += 2;
371 if (phdi->fmt & HDF_OWNERDRAW) {
372 DRAWITEMSTRUCT dis;
374 dis.CtlType = ODT_HEADER;
375 dis.CtlID = GetWindowLongPtrW (hwnd, GWLP_ID);
376 dis.itemID = iItem;
377 dis.itemAction = ODA_DRAWENTIRE;
378 dis.itemState = phdi->bDown ? ODS_SELECTED : 0;
379 dis.hwndItem = hwnd;
380 dis.hDC = hdc;
381 dis.rcItem = phdi->rect;
382 dis.itemData = phdi->lParam;
383 oldBkMode = SetBkMode(hdc, TRANSPARENT);
384 SendMessageW (infoPtr->hwndNotify, WM_DRAWITEM,
385 (WPARAM)dis.CtlID, (LPARAM)&dis);
386 if (oldBkMode != TRANSPARENT)
387 SetBkMode(hdc, oldBkMode);
389 else {
390 UINT rw, rh, /* width and height of r */
391 *x = NULL, *w = NULL; /* x and width of the pic (bmp or img) which is part of cnt */
392 /* cnt,txt,img,bmp */
393 UINT cx, tx, ix, bx,
394 cw, tw, iw, bw;
395 BITMAP bmp;
397 HEADER_PrepareCallbackItems(hwnd, iItem, HDI_TEXT|HDI_IMAGE);
398 cw = tw = iw = bw = 0;
399 rw = r.right - r.left;
400 rh = r.bottom - r.top;
402 if (phdi->fmt & HDF_STRING) {
403 RECT textRect;
405 SetRectEmpty(&textRect);
406 DrawTextW (hdc, phdi->pszText, -1,
407 &textRect, DT_LEFT|DT_VCENTER|DT_SINGLELINE|DT_CALCRECT);
408 cw = textRect.right - textRect.left + 2 * infoPtr->iMargin;
411 if ((phdi->fmt & HDF_IMAGE) && (infoPtr->himl)) {
412 iw = infoPtr->himl->cx + 2 * infoPtr->iMargin;
413 x = &ix;
414 w = &iw;
417 if ((phdi->fmt & HDF_BITMAP) && (phdi->hbm)) {
418 GetObjectW (phdi->hbm, sizeof(BITMAP), (LPVOID)&bmp);
419 bw = bmp.bmWidth + 2 * infoPtr->iMargin;
420 if (!iw) {
421 x = &bx;
422 w = &bw;
426 if (bw || iw)
427 cw += *w;
429 /* align cx using the unclipped cw */
430 if ((phdi->fmt & HDF_JUSTIFYMASK) == HDF_LEFT)
431 cx = r.left;
432 else if ((phdi->fmt & HDF_JUSTIFYMASK) == HDF_CENTER)
433 cx = r.left + rw / 2 - cw / 2;
434 else /* HDF_RIGHT */
435 cx = r.right - cw;
437 /* clip cx & cw */
438 if (cx < r.left)
439 cx = r.left;
440 if (cx + cw > r.right)
441 cw = r.right - cx;
443 tx = cx + infoPtr->iMargin;
444 /* since cw might have changed we have to recalculate tw */
445 tw = cw - infoPtr->iMargin * 2;
447 if (iw || bw) {
448 tw -= *w;
449 if (phdi->fmt & HDF_BITMAP_ON_RIGHT) {
450 /* put pic behind text */
451 *x = cx + tw + infoPtr->iMargin * 3;
452 } else {
453 *x = cx + infoPtr->iMargin;
454 /* move text behind pic */
455 tx += *w;
459 if (iw && bw) {
460 /* since we're done with the layout we can
461 now calculate the position of bmp which
462 has no influence on alignment and layout
463 because of img */
464 if ((phdi->fmt & HDF_JUSTIFYMASK) == HDF_RIGHT)
465 bx = cx - bw + infoPtr->iMargin;
466 else
467 bx = cx + cw + infoPtr->iMargin;
470 if (iw || bw) {
471 HDC hClipDC = GetDC(hwnd);
472 HRGN hClipRgn = CreateRectRgn(r.left, r.top, r.right, r.bottom);
473 SelectClipRgn(hClipDC, hClipRgn);
475 if (bw) {
476 HDC hdcBitmap = CreateCompatibleDC (hClipDC);
477 SelectObject (hdcBitmap, phdi->hbm);
478 BitBlt (hClipDC, bx, r.top + ((INT)rh - bmp.bmHeight) / 2,
479 bmp.bmWidth, bmp.bmHeight, hdcBitmap, 0, 0, SRCCOPY);
480 DeleteDC (hdcBitmap);
483 if (iw) {
484 ImageList_DrawEx (infoPtr->himl, phdi->iImage, hClipDC,
485 ix, r.top + ((INT)rh - infoPtr->himl->cy) / 2,
486 infoPtr->himl->cx, infoPtr->himl->cy, CLR_DEFAULT, CLR_DEFAULT, 0);
489 DeleteObject(hClipRgn);
490 ReleaseDC(hwnd, hClipDC);
493 if (((phdi->fmt & HDF_STRING)
494 || (!(phdi->fmt & (HDF_OWNERDRAW|HDF_STRING|HDF_BITMAP|
495 HDF_BITMAP_ON_RIGHT|HDF_IMAGE)))) /* no explicit format specified? */
496 && (phdi->pszText)) {
497 oldBkMode = SetBkMode(hdc, TRANSPARENT);
498 r.left = tx;
499 r.right = tx + tw;
500 DrawTextW (hdc, phdi->pszText, -1,
501 &r, DT_LEFT|DT_END_ELLIPSIS|DT_VCENTER|DT_SINGLELINE);
502 if (oldBkMode != TRANSPARENT)
503 SetBkMode(hdc, oldBkMode);
505 HEADER_FreeCallbackItems(phdi);
506 }/*Ownerdrawn*/
508 return phdi->rect.right;
511 static void
512 HEADER_DrawHotDivider(HWND hwnd, HDC hdc)
514 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
515 HBRUSH brush;
516 RECT r;
518 HEADER_GetHotDividerRect(hwnd, infoPtr, &r);
519 brush = CreateSolidBrush(GetSysColor(COLOR_HIGHLIGHT));
520 FillRect(hdc, &r, brush);
521 DeleteObject(brush);
524 static void
525 HEADER_Refresh (HWND hwnd, HDC hdc)
527 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
528 HFONT hFont, hOldFont;
529 RECT rect, rcRest;
530 HBRUSH hbrBk;
531 UINT i;
532 INT x;
533 LRESULT lCDFlags;
534 HTHEME theme = GetWindowTheme (hwnd);
536 if (!infoPtr->bRectsValid)
537 HEADER_SetItemBounds(hwnd);
539 /* get rect for the bar, adjusted for the border */
540 GetClientRect (hwnd, &rect);
541 lCDFlags = HEADER_SendCtrlCustomDraw(hwnd, CDDS_PREPAINT, hdc, &rect);
543 if (infoPtr->bDragging)
544 ImageList_DragShowNolock(FALSE);
546 hFont = infoPtr->hFont ? infoPtr->hFont : GetStockObject (SYSTEM_FONT);
547 hOldFont = SelectObject (hdc, hFont);
549 /* draw Background */
550 if (infoPtr->uNumItem == 0 && theme == NULL) {
551 hbrBk = GetSysColorBrush(COLOR_3DFACE);
552 FillRect(hdc, &rect, hbrBk);
555 x = rect.left;
556 for (i = 0; x <= rect.right && i < infoPtr->uNumItem; i++) {
557 int idx = HEADER_OrderToIndex(hwnd,i);
558 if (RectVisible(hdc, &infoPtr->items[idx].rect))
559 HEADER_DrawItem(hwnd, hdc, idx, infoPtr->iHotItem == idx, lCDFlags);
560 x = infoPtr->items[idx].rect.right;
563 rcRest = rect;
564 rcRest.left = x;
565 if ((x <= rect.right) && RectVisible(hdc, &rcRest) && (infoPtr->uNumItem > 0)) {
566 if (theme != NULL) {
567 DrawThemeBackground(theme, hdc, HP_HEADERITEM, HIS_NORMAL, &rcRest, NULL);
569 else {
570 if (GetWindowLongW (hwnd, GWL_STYLE) & HDS_BUTTONS)
571 DrawEdge (hdc, &rcRest, EDGE_RAISED, BF_TOP|BF_LEFT|BF_BOTTOM|BF_SOFT|BF_MIDDLE);
572 else
573 DrawEdge (hdc, &rcRest, EDGE_ETCHED, BF_BOTTOM|BF_MIDDLE);
577 if (infoPtr->iHotDivider != -1)
578 HEADER_DrawHotDivider(hwnd, hdc);
580 if (infoPtr->bDragging)
581 ImageList_DragShowNolock(TRUE);
582 SelectObject (hdc, hOldFont);
584 if (lCDFlags & CDRF_NOTIFYPOSTPAINT)
585 HEADER_SendCtrlCustomDraw(hwnd, CDDS_POSTPAINT, hdc, &rect);
589 static void
590 HEADER_RefreshItem (HWND hwnd, HDC hdc, INT iItem)
592 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
594 if (!infoPtr->bRectsValid)
595 HEADER_SetItemBounds(hwnd);
597 InvalidateRect(hwnd, &infoPtr->items[iItem].rect, FALSE);
601 static void
602 HEADER_InternalHitTest (HWND hwnd, LPPOINT lpPt, UINT *pFlags, INT *pItem)
604 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
605 RECT rect, rcTest;
606 UINT iCount;
607 INT width;
608 BOOL bNoWidth;
610 GetClientRect (hwnd, &rect);
612 *pFlags = 0;
613 bNoWidth = FALSE;
614 if (PtInRect (&rect, *lpPt))
616 if (infoPtr->uNumItem == 0) {
617 *pFlags |= HHT_NOWHERE;
618 *pItem = 1;
619 TRACE("NOWHERE\n");
620 return;
622 else {
623 /* somewhere inside */
624 for (iCount = 0; iCount < infoPtr->uNumItem; iCount++) {
625 rect = infoPtr->items[iCount].rect;
626 width = rect.right - rect.left;
627 if (width == 0) {
628 bNoWidth = TRUE;
629 continue;
631 if (PtInRect (&rect, *lpPt)) {
632 if (width <= 2 * DIVIDER_WIDTH) {
633 *pFlags |= HHT_ONHEADER;
634 *pItem = iCount;
635 TRACE("ON HEADER %d\n", iCount);
636 return;
638 if (HEADER_IndexToOrder(hwnd, iCount) > 0) {
639 rcTest = rect;
640 rcTest.right = rcTest.left + DIVIDER_WIDTH;
641 if (PtInRect (&rcTest, *lpPt)) {
642 if (bNoWidth) {
643 *pFlags |= HHT_ONDIVOPEN;
644 *pItem = HEADER_PrevItem(hwnd, iCount);
645 TRACE("ON DIVOPEN %d\n", *pItem);
646 return;
648 else {
649 *pFlags |= HHT_ONDIVIDER;
650 *pItem = HEADER_PrevItem(hwnd, iCount);
651 TRACE("ON DIVIDER %d\n", *pItem);
652 return;
656 rcTest = rect;
657 rcTest.left = rcTest.right - DIVIDER_WIDTH;
658 if (PtInRect (&rcTest, *lpPt)) {
659 *pFlags |= HHT_ONDIVIDER;
660 *pItem = iCount;
661 TRACE("ON DIVIDER %d\n", *pItem);
662 return;
665 *pFlags |= HHT_ONHEADER;
666 *pItem = iCount;
667 TRACE("ON HEADER %d\n", iCount);
668 return;
672 /* check for last divider part (on nowhere) */
673 rect = infoPtr->items[infoPtr->uNumItem-1].rect;
674 rect.left = rect.right;
675 rect.right += DIVIDER_WIDTH;
676 if (PtInRect (&rect, *lpPt)) {
677 if (bNoWidth) {
678 *pFlags |= HHT_ONDIVOPEN;
679 *pItem = infoPtr->uNumItem - 1;
680 TRACE("ON DIVOPEN %d\n", *pItem);
681 return;
683 else {
684 *pFlags |= HHT_ONDIVIDER;
685 *pItem = infoPtr->uNumItem-1;
686 TRACE("ON DIVIDER %d\n", *pItem);
687 return;
691 *pFlags |= HHT_NOWHERE;
692 *pItem = 1;
693 TRACE("NOWHERE\n");
694 return;
697 else {
698 if (lpPt->x < rect.left) {
699 TRACE("TO LEFT\n");
700 *pFlags |= HHT_TOLEFT;
702 else if (lpPt->x > rect.right) {
703 TRACE("TO RIGHT\n");
704 *pFlags |= HHT_TORIGHT;
707 if (lpPt->y < rect.top) {
708 TRACE("ABOVE\n");
709 *pFlags |= HHT_ABOVE;
711 else if (lpPt->y > rect.bottom) {
712 TRACE("BELOW\n");
713 *pFlags |= HHT_BELOW;
717 *pItem = 1;
718 TRACE("flags=0x%X\n", *pFlags);
719 return;
723 static void
724 HEADER_DrawTrackLine (HWND hwnd, HDC hdc, INT x)
726 RECT rect;
727 HPEN hOldPen;
728 INT oldRop;
730 GetClientRect (hwnd, &rect);
732 hOldPen = SelectObject (hdc, GetStockObject (BLACK_PEN));
733 oldRop = SetROP2 (hdc, R2_XORPEN);
734 MoveToEx (hdc, x, rect.top, NULL);
735 LineTo (hdc, x, rect.bottom);
736 SetROP2 (hdc, oldRop);
737 SelectObject (hdc, hOldPen);
740 /***
741 * DESCRIPTION:
742 * Convert a HDITEM into the correct format (ANSI/Unicode) to send it in a notify
744 * PARAMETER(S):
745 * [I] infoPtr : the header that wants to send the notify
746 * [O] dest : The buffer to store the HDITEM for notify. It may be set to a HDITEMA of HDITEMW
747 * [I] src : The source HDITEM. It may be a HDITEMA or HDITEMW
748 * [I] fSourceUnicode : is src a HDITEMW or HDITEMA
749 * [O] ppvScratch : a pointer to a scratch buffer that needs to be freed after
750 * the HDITEM is no longer in use or NULL if none was needed
752 * NOTE: We depend on HDITEMA and HDITEMW having the same structure
754 static void HEADER_CopyHDItemForNotify(HEADER_INFO *infoPtr, HDITEMW *dest,
755 HDITEMW *src, BOOL fSourceUnicode, LPVOID *ppvScratch)
757 *ppvScratch = NULL;
758 *dest = *src;
760 if (src->mask & HDI_TEXT && src->pszText != LPSTR_TEXTCALLBACKW) /* covers TEXTCALLBACKA as well */
762 if (fSourceUnicode && infoPtr->nNotifyFormat != NFR_UNICODE)
764 dest->pszText = NULL;
765 Str_SetPtrWtoA((LPSTR *)&dest->pszText, src->pszText);
766 *ppvScratch = dest->pszText;
769 if (!fSourceUnicode && infoPtr->nNotifyFormat == NFR_UNICODE)
771 dest->pszText = NULL;
772 Str_SetPtrAtoW(&dest->pszText, (LPSTR)src->pszText);
773 *ppvScratch = dest->pszText;
778 static UINT HEADER_NotifyCodeWtoA(UINT code)
780 /* we use the fact that all the unicode messages are in HDN_FIRST_UNICODE..HDN_LAST*/
781 if (code >= HDN_LAST && code <= HDN_FIRST_UNICODE)
782 return code + HDN_UNICODE_OFFSET;
783 else
784 return code;
787 static LRESULT
788 HEADER_SendNotify(HWND hwnd, UINT code, NMHDR *nmhdr)
790 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
792 nmhdr->hwndFrom = hwnd;
793 nmhdr->idFrom = GetWindowLongPtrW (hwnd, GWLP_ID);
794 nmhdr->code = code;
796 return SendMessageW(infoPtr->hwndNotify, WM_NOTIFY,
797 (WPARAM)nmhdr->idFrom, (LPARAM)nmhdr);
800 static BOOL
801 HEADER_SendSimpleNotify (HWND hwnd, UINT code)
803 NMHDR nmhdr;
804 return (BOOL)HEADER_SendNotify(hwnd, code, &nmhdr);
807 static LRESULT
808 HEADER_SendCtrlCustomDraw(HWND hwnd, DWORD dwDrawStage, HDC hdc, RECT *rect)
810 NMCUSTOMDRAW nm;
811 nm.dwDrawStage = dwDrawStage;
812 nm.hdc = hdc;
813 nm.rc = *rect;
814 nm.dwItemSpec = 0;
815 nm.uItemState = 0;
816 nm.lItemlParam = 0;
818 return HEADER_SendNotify(hwnd, NM_CUSTOMDRAW, (NMHDR *)&nm);
821 static BOOL
822 HEADER_SendNotifyWithHDItemT(HWND hwnd, UINT code, INT iItem, HDITEMW *lpItem)
824 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
825 NMHEADERW nmhdr;
827 if (infoPtr->nNotifyFormat != NFR_UNICODE)
828 code = HEADER_NotifyCodeWtoA(code);
829 nmhdr.iItem = iItem;
830 nmhdr.iButton = 0;
831 nmhdr.pitem = lpItem;
833 return (BOOL)HEADER_SendNotify(hwnd, code, (NMHDR *)&nmhdr);
836 static BOOL
837 HEADER_SendNotifyWithIntFieldT(HWND hwnd, UINT code, INT iItem, INT mask, INT iValue)
839 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
840 HDITEMW nmitem;
842 /* copying only the iValue should be ok but to make the code more robust we copy everything */
843 nmitem.cxy = infoPtr->items[iItem].cxy;
844 nmitem.hbm = infoPtr->items[iItem].hbm;
845 nmitem.pszText = NULL;
846 nmitem.cchTextMax = 0;
847 nmitem.fmt = infoPtr->items[iItem].fmt;
848 nmitem.lParam = infoPtr->items[iItem].lParam;
849 nmitem.iOrder = infoPtr->items[iItem].iOrder;
850 nmitem.iImage = infoPtr->items[iItem].iImage;
852 nmitem.mask = mask;
853 switch (mask)
855 case HDI_WIDTH:
856 nmitem.cxy = iValue;
857 break;
858 case HDI_ORDER:
859 nmitem.iOrder = iValue;
860 break;
861 default:
862 ERR("invalid mask value 0x%x\n", iValue);
865 return HEADER_SendNotifyWithHDItemT(hwnd, code, iItem, &nmitem);
869 * Prepare callback items
870 * depends on NMHDDISPINFOW having same structure as NMHDDISPINFOA
871 * (so we handle the two cases only doing a specific cast for pszText).
872 * Checks if any of the required field are callback. If there are sends a
873 * NMHDISPINFO notify to retrieve these items. The items are stored in the
874 * HEADER_ITEM pszText and iImage fields. They should be freed with
875 * HEADER_FreeCallbackItems.
877 * @param hwnd : hwnd header container handler
878 * @param iItem : the header item id
879 * @param reqMask : required fields. If any of them is callback this function will fetch it
881 * @return TRUE on success, else FALSE
883 static BOOL
884 HEADER_PrepareCallbackItems(HWND hwnd, INT iItem, INT reqMask)
886 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
887 HEADER_ITEM *lpItem = &infoPtr->items[iItem];
888 DWORD mask = reqMask & lpItem->callbackMask;
889 NMHDDISPINFOW dispInfo;
890 void *pvBuffer = NULL;
892 if (mask == 0)
893 return TRUE;
894 if (mask&HDI_TEXT && lpItem->pszText != NULL)
896 ERR("(): function called without a call to FreeCallbackItems\n");
897 Free(lpItem->pszText);
898 lpItem->pszText = NULL;
901 memset(&dispInfo, 0, sizeof(NMHDDISPINFOW));
902 dispInfo.hdr.hwndFrom = hwnd;
903 dispInfo.hdr.idFrom = GetWindowLongPtrW (hwnd, GWLP_ID);
904 if (infoPtr->nNotifyFormat == NFR_UNICODE)
906 dispInfo.hdr.code = HDN_GETDISPINFOW;
907 if (mask & HDI_TEXT)
908 pvBuffer = Alloc(MAX_HEADER_TEXT_LEN * sizeof(WCHAR));
910 else
912 dispInfo.hdr.code = HDN_GETDISPINFOA;
913 if (mask & HDI_TEXT)
914 pvBuffer = Alloc(MAX_HEADER_TEXT_LEN * sizeof(CHAR));
916 dispInfo.pszText = (LPWSTR)pvBuffer;
917 dispInfo.cchTextMax = (pvBuffer!=NULL?MAX_HEADER_TEXT_LEN:0);
918 dispInfo.iItem = iItem;
919 dispInfo.mask = mask;
920 dispInfo.lParam = lpItem->lParam;
922 TRACE("Sending HDN_GETDISPINFO%c\n", infoPtr->nNotifyFormat == NFR_UNICODE?'W':'A');
923 SendMessageW(infoPtr->hwndNotify, WM_NOTIFY,
924 (WPARAM) dispInfo.hdr.idFrom,
925 (LPARAM) &dispInfo);
927 TRACE("SendMessage returns(mask:0x%x,str:%s,lParam:%p)\n",
928 dispInfo.mask,
929 (infoPtr->nNotifyFormat == NFR_UNICODE ? debugstr_w(dispInfo.pszText) : (LPSTR) dispInfo.pszText),
930 (void*) dispInfo.lParam);
932 if (mask & HDI_IMAGE)
933 lpItem->iImage = dispInfo.iImage;
934 if (mask & HDI_TEXT)
936 if (infoPtr->nNotifyFormat == NFR_UNICODE)
938 lpItem->pszText = (LPWSTR)pvBuffer;
940 /* the user might have used his own buffer */
941 if (dispInfo.pszText != lpItem->pszText)
942 Str_GetPtrW(dispInfo.pszText, lpItem->pszText, MAX_HEADER_TEXT_LEN);
944 else
946 Str_SetPtrAtoW(&lpItem->pszText, (LPSTR)dispInfo.pszText);
947 Free(pvBuffer);
951 if (dispInfo.mask & HDI_DI_SETITEM)
953 /* make the items permanent */
954 lpItem->callbackMask &= ~dispInfo.mask;
957 return TRUE;
960 /***
961 * DESCRIPTION:
962 * Free the items that might be allocated with HEADER_PrepareCallbackItems
964 * PARAMETER(S):
965 * [I] lpItem : the item to free the data
968 static void
969 HEADER_FreeCallbackItems(HEADER_ITEM *lpItem)
971 if (lpItem->callbackMask&HDI_TEXT && lpItem->pszText != NULL)
973 Free(lpItem->pszText);
974 lpItem->pszText = NULL;
977 if (lpItem->callbackMask&HDI_IMAGE)
978 lpItem->iImage = I_IMAGECALLBACK;
981 static LRESULT
982 HEADER_CreateDragImage (HWND hwnd, WPARAM wParam)
984 HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
985 HEADER_ITEM *lpItem;
986 HIMAGELIST himl;
987 HBITMAP hMemory, hOldBitmap;
988 LRESULT lCDFlags;
989 RECT rc;
990 HDC hMemoryDC;
991 HDC hDeviceDC;
992 int height, width;
994 if (wParam < 0 || wParam >= infoPtr->uNumItem)
995 return FALSE;
997 if (!infoPtr->bRectsValid)
998 HEADER_SetItemBounds(hwnd);
1000 lpItem = &infoPtr->items[wParam];
1001 width = lpItem->rect.right - lpItem->rect.left;
1002 height = lpItem->rect.bottom - lpItem->rect.top;
1004 hDeviceDC = GetDC(NULL);
1005 hMemoryDC = CreateCompatibleDC(hDeviceDC);
1006 hMemory = CreateCompatibleBitmap(hDeviceDC, width, height);
1007 ReleaseDC(NULL, hDeviceDC);
1008 hOldBitmap = SelectObject(hMemoryDC, hMemory);
1009 SetViewportOrgEx(hMemoryDC, -lpItem->rect.left, -lpItem->rect.top, NULL);
1011 GetClientRect(hwnd, &rc);
1012 lCDFlags = HEADER_SendCtrlCustomDraw(hwnd, CDDS_PREPAINT, hMemoryDC, &rc);
1013 HEADER_DrawItem(hwnd, hMemoryDC, wParam, FALSE, lCDFlags);
1014 if (lCDFlags & CDRF_NOTIFYPOSTPAINT)
1015 HEADER_SendCtrlCustomDraw(hwnd, CDDS_POSTPAINT, hMemoryDC, &rc);
1017 hMemory = SelectObject(hMemoryDC, hOldBitmap);
1018 DeleteDC(hMemoryDC);
1020 if (hMemory == NULL) /* if anything failed */
1021 return FALSE;
1023 himl = ImageList_Create(width, height, ILC_COLORDDB, 1, 1);
1024 ImageList_Add(himl, hMemory, NULL);
1025 DeleteObject(hMemory);
1026 return (LRESULT)himl;
1029 static LRESULT
1030 HEADER_SetHotDivider(HWND hwnd, WPARAM wParam, LPARAM lParam)
1032 HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
1033 INT iDivider;
1034 RECT r;
1036 if (wParam)
1038 POINT pt;
1039 UINT flags;
1040 pt.x = (INT)(SHORT)LOWORD(lParam);
1041 pt.y = 0;
1042 HEADER_InternalHitTest (hwnd, &pt, &flags, &iDivider);
1044 if (flags & HHT_TOLEFT)
1045 iDivider = 0;
1046 else if (flags & HHT_NOWHERE || flags & HHT_TORIGHT)
1047 iDivider = infoPtr->uNumItem;
1048 else
1050 HEADER_ITEM *lpItem = &infoPtr->items[iDivider];
1051 if (pt.x > (lpItem->rect.left+lpItem->rect.right)/2)
1052 iDivider = HEADER_NextItem(hwnd, iDivider);
1055 else
1056 iDivider = (INT)lParam;
1058 /* Note; wParam==FALSE, lParam==-1 is valid and is used to clear the hot divider */
1059 if (iDivider<-1 || iDivider>(int)infoPtr->uNumItem)
1060 return iDivider;
1062 if (iDivider != infoPtr->iHotDivider)
1064 if (infoPtr->iHotDivider != -1)
1066 HEADER_GetHotDividerRect(hwnd, infoPtr, &r);
1067 InvalidateRect(hwnd, &r, FALSE);
1069 infoPtr->iHotDivider = iDivider;
1070 if (iDivider != -1)
1072 HEADER_GetHotDividerRect(hwnd, infoPtr, &r);
1073 InvalidateRect(hwnd, &r, FALSE);
1076 return iDivider;
1079 static LRESULT
1080 HEADER_DeleteItem (HWND hwnd, WPARAM wParam)
1082 HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
1083 INT iItem = (INT)wParam;
1084 INT iOrder;
1085 INT i;
1087 TRACE("[iItem=%d]\n", iItem);
1089 if ((iItem < 0) || (iItem >= (INT)infoPtr->uNumItem))
1090 return FALSE;
1092 for (i = 0; i < infoPtr->uNumItem; i++)
1093 TRACE("%d: order=%d, iOrder=%d, ->iOrder=%d\n", i, infoPtr->order[i], infoPtr->items[i].iOrder, infoPtr->items[infoPtr->order[i]].iOrder);
1095 iOrder = infoPtr->items[iItem].iOrder;
1096 HEADER_DisposeItem(&infoPtr->items[iItem]);
1098 infoPtr->uNumItem--;
1099 memmove(&infoPtr->items[iItem], &infoPtr->items[iItem + 1],
1100 (infoPtr->uNumItem - iItem) * sizeof(HEADER_ITEM));
1101 memmove(&infoPtr->order[iOrder], &infoPtr->order[iOrder + 1],
1102 (infoPtr->uNumItem - iOrder) * sizeof(INT));
1103 infoPtr->items = ReAlloc(infoPtr->items, sizeof(HEADER_ITEM) * infoPtr->uNumItem);
1104 infoPtr->order = ReAlloc(infoPtr->order, sizeof(INT) * infoPtr->uNumItem);
1106 /* Correct the orders */
1107 for (i = 0; i < infoPtr->uNumItem; i++)
1109 if (infoPtr->order[i] > iItem)
1110 infoPtr->order[i]--;
1111 if (i >= iOrder)
1112 infoPtr->items[infoPtr->order[i]].iOrder = i;
1114 for (i = 0; i < infoPtr->uNumItem; i++)
1115 TRACE("%d: order=%d, iOrder=%d, ->iOrder=%d\n", i, infoPtr->order[i], infoPtr->items[i].iOrder, infoPtr->items[infoPtr->order[i]].iOrder);
1117 HEADER_SetItemBounds (hwnd);
1118 InvalidateRect(hwnd, NULL, FALSE);
1120 return TRUE;
1124 static LRESULT
1125 HEADER_GetImageList (HWND hwnd)
1127 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1129 return (LRESULT)infoPtr->himl;
1133 static LRESULT
1134 HEADER_GetItemT (HWND hwnd, INT nItem, LPHDITEMW phdi, BOOL bUnicode)
1136 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1137 HEADER_ITEM *lpItem;
1138 UINT mask;
1140 if (!phdi)
1141 return FALSE;
1143 TRACE("[nItem=%d]\n", nItem);
1145 mask = phdi->mask;
1146 if (mask == 0)
1147 return TRUE;
1149 if ((nItem < 0) || (nItem >= (INT)infoPtr->uNumItem))
1150 return FALSE;
1152 if (mask & HDI_UNKNOWN_FIELDS)
1154 TRACE("mask %x contains unknown fields. Using only comctl32 4.0 fields\n", mask);
1155 mask &= HDI_COMCTL32_4_0_FIELDS;
1158 lpItem = &infoPtr->items[nItem];
1159 HEADER_PrepareCallbackItems(hwnd, nItem, mask);
1161 if (mask & HDI_BITMAP)
1162 phdi->hbm = lpItem->hbm;
1164 if (mask & HDI_FORMAT)
1165 phdi->fmt = lpItem->fmt;
1167 if (mask & HDI_WIDTH)
1168 phdi->cxy = lpItem->cxy;
1170 if (mask & HDI_LPARAM)
1171 phdi->lParam = lpItem->lParam;
1173 if (mask & HDI_IMAGE)
1174 phdi->iImage = lpItem->iImage;
1176 if (mask & HDI_ORDER)
1177 phdi->iOrder = lpItem->iOrder;
1179 if (mask & HDI_TEXT)
1181 if (bUnicode)
1182 Str_GetPtrW (lpItem->pszText, phdi->pszText, phdi->cchTextMax);
1183 else
1184 Str_GetPtrWtoA (lpItem->pszText, (LPSTR)phdi->pszText, phdi->cchTextMax);
1187 HEADER_FreeCallbackItems(lpItem);
1188 return TRUE;
1192 inline static LRESULT
1193 HEADER_GetItemCount (HWND hwnd)
1195 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1196 return infoPtr->uNumItem;
1200 static LRESULT
1201 HEADER_GetItemRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
1203 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1204 INT iItem = (INT)wParam;
1205 LPRECT lpRect = (LPRECT)lParam;
1207 if ((iItem < 0) || (iItem >= (INT)infoPtr->uNumItem))
1208 return FALSE;
1210 lpRect->left = infoPtr->items[iItem].rect.left;
1211 lpRect->right = infoPtr->items[iItem].rect.right;
1212 lpRect->top = infoPtr->items[iItem].rect.top;
1213 lpRect->bottom = infoPtr->items[iItem].rect.bottom;
1215 return TRUE;
1219 static LRESULT
1220 HEADER_GetOrderArray(HWND hwnd, WPARAM wParam, LPARAM lParam)
1222 LPINT order = (LPINT) lParam;
1223 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1225 if ((unsigned int)wParam <infoPtr->uNumItem)
1226 return FALSE;
1228 memcpy(order, infoPtr->order, infoPtr->uNumItem * sizeof(INT));
1229 return TRUE;
1232 static LRESULT
1233 HEADER_SetOrderArray(HWND hwnd, WPARAM wParam, LPARAM lParam)
1235 int i;
1236 LPINT order = (LPINT) lParam;
1237 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1238 HEADER_ITEM *lpItem;
1240 if ((unsigned int)wParam <infoPtr->uNumItem)
1241 return FALSE;
1242 memcpy(infoPtr->order, order, infoPtr->uNumItem * sizeof(INT));
1243 for (i=0; i<(int)wParam; i++)
1245 lpItem = &infoPtr->items[*order++];
1246 lpItem->iOrder=i;
1248 infoPtr->bRectsValid=0;
1249 InvalidateRect(hwnd, NULL, FALSE);
1250 return TRUE;
1253 inline static LRESULT
1254 HEADER_GetUnicodeFormat (HWND hwnd)
1256 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1257 return (infoPtr->nNotifyFormat == NFR_UNICODE);
1261 static LRESULT
1262 HEADER_HitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
1264 LPHDHITTESTINFO phti = (LPHDHITTESTINFO)lParam;
1266 HEADER_InternalHitTest (hwnd, &phti->pt, &phti->flags, &phti->iItem);
1268 if (phti->flags == HHT_NOWHERE)
1269 return -1;
1270 else
1271 return phti->iItem;
1275 static LRESULT
1276 HEADER_InsertItemT (HWND hwnd, INT nItem, LPHDITEMW phdi, BOOL bUnicode)
1278 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1279 HEADER_ITEM *lpItem;
1280 INT iOrder;
1281 UINT i;
1282 UINT copyMask;
1284 if ((phdi == NULL) || (nItem < 0) || (phdi->mask == 0))
1285 return -1;
1287 if (nItem > infoPtr->uNumItem)
1288 nItem = infoPtr->uNumItem;
1290 iOrder = (phdi->mask & HDI_ORDER) ? phdi->iOrder : nItem;
1291 if (iOrder < 0)
1292 iOrder = 0;
1293 else if (infoPtr->uNumItem < iOrder)
1294 iOrder = infoPtr->uNumItem;
1296 infoPtr->uNumItem++;
1297 infoPtr->items = ReAlloc(infoPtr->items, sizeof(HEADER_ITEM) * infoPtr->uNumItem);
1298 infoPtr->order = ReAlloc(infoPtr->order, sizeof(INT) * infoPtr->uNumItem);
1300 /* make space for the new item */
1301 memmove(&infoPtr->items[nItem + 1], &infoPtr->items[nItem],
1302 (infoPtr->uNumItem - nItem - 1) * sizeof(HEADER_ITEM));
1303 memmove(&infoPtr->order[iOrder + 1], &infoPtr->order[iOrder],
1304 (infoPtr->uNumItem - iOrder - 1) * sizeof(INT));
1306 /* update the order array */
1307 infoPtr->order[iOrder] = nItem;
1308 for (i = 0; i < infoPtr->uNumItem; i++)
1310 if (i != iOrder && infoPtr->order[i] >= nItem)
1311 infoPtr->order[i]++;
1312 infoPtr->items[infoPtr->order[i]].iOrder = i;
1315 lpItem = &infoPtr->items[nItem];
1316 ZeroMemory(lpItem, sizeof(HEADER_ITEM));
1317 /* cxy, fmt and lParam are copied even if not in the HDITEM mask */
1318 copyMask = phdi->mask | HDI_WIDTH | HDI_FORMAT | HDI_LPARAM;
1319 HEADER_StoreHDItemInHeader(lpItem, copyMask, phdi, bUnicode);
1320 lpItem->iOrder = iOrder;
1322 /* set automatically some format bits */
1323 if (phdi->mask & HDI_TEXT)
1324 lpItem->fmt |= HDF_STRING;
1325 else
1326 lpItem->fmt &= ~HDF_STRING;
1328 if (lpItem->hbm != NULL)
1329 lpItem->fmt |= HDF_BITMAP;
1330 else
1331 lpItem->fmt &= ~HDF_BITMAP;
1333 if (phdi->mask & HDI_IMAGE)
1334 lpItem->fmt |= HDF_IMAGE;
1336 HEADER_SetItemBounds (hwnd);
1337 InvalidateRect(hwnd, NULL, FALSE);
1339 return nItem;
1343 static LRESULT
1344 HEADER_Layout (HWND hwnd, WPARAM wParam, LPARAM lParam)
1346 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1347 LPHDLAYOUT lpLayout = (LPHDLAYOUT)lParam;
1349 lpLayout->pwpos->hwnd = hwnd;
1350 lpLayout->pwpos->hwndInsertAfter = 0;
1351 lpLayout->pwpos->x = lpLayout->prc->left;
1352 lpLayout->pwpos->y = lpLayout->prc->top;
1353 lpLayout->pwpos->cx = lpLayout->prc->right - lpLayout->prc->left;
1354 if (GetWindowLongW (hwnd, GWL_STYLE) & HDS_HIDDEN)
1355 lpLayout->pwpos->cy = 0;
1356 else {
1357 lpLayout->pwpos->cy = infoPtr->nHeight;
1358 lpLayout->prc->top += infoPtr->nHeight;
1360 lpLayout->pwpos->flags = SWP_NOZORDER;
1362 TRACE("Layout x=%d y=%d cx=%d cy=%d\n",
1363 lpLayout->pwpos->x, lpLayout->pwpos->y,
1364 lpLayout->pwpos->cx, lpLayout->pwpos->cy);
1366 infoPtr->bRectsValid = FALSE;
1368 return TRUE;
1372 static LRESULT
1373 HEADER_SetImageList (HWND hwnd, HIMAGELIST himl)
1375 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1376 HIMAGELIST himlOld;
1378 TRACE("(himl %p)\n", himl);
1379 himlOld = infoPtr->himl;
1380 infoPtr->himl = himl;
1382 /* FIXME: Refresh needed??? */
1384 return (LRESULT)himlOld;
1388 static LRESULT
1389 HEADER_GetBitmapMargin(HWND hwnd)
1391 HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
1393 return infoPtr->iMargin;
1396 static LRESULT
1397 HEADER_SetBitmapMargin(HWND hwnd, WPARAM wParam)
1399 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1400 INT oldMargin = infoPtr->iMargin;
1402 infoPtr->iMargin = (INT)wParam;
1404 return oldMargin;
1407 static LRESULT
1408 HEADER_SetItemT (HWND hwnd, INT nItem, LPHDITEMW phdi, BOOL bUnicode)
1410 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1411 HEADER_ITEM *lpItem;
1412 HDITEMW hdNotify;
1413 void *pvScratch;
1415 if (phdi == NULL)
1416 return FALSE;
1417 if ((nItem < 0) || (nItem >= (INT)infoPtr->uNumItem))
1418 return FALSE;
1420 TRACE("[nItem=%d]\n", nItem);
1422 HEADER_CopyHDItemForNotify(infoPtr, &hdNotify, phdi, bUnicode, &pvScratch);
1423 if (HEADER_SendNotifyWithHDItemT(hwnd, HDN_ITEMCHANGINGW, nItem, &hdNotify))
1425 if (pvScratch) Free(pvScratch);
1426 return FALSE;
1429 lpItem = &infoPtr->items[nItem];
1430 HEADER_StoreHDItemInHeader(lpItem, phdi->mask, phdi, bUnicode);
1432 if (phdi->mask & HDI_ORDER)
1433 if (phdi->iOrder >= 0 && phdi->iOrder < infoPtr->uNumItem)
1434 HEADER_ChangeItemOrder(infoPtr, nItem, phdi->iOrder);
1436 HEADER_SendNotifyWithHDItemT(hwnd, HDN_ITEMCHANGEDW, nItem, &hdNotify);
1438 HEADER_SetItemBounds (hwnd);
1440 InvalidateRect(hwnd, NULL, FALSE);
1442 if (pvScratch != NULL)
1443 Free(pvScratch);
1444 return TRUE;
1447 inline static LRESULT
1448 HEADER_SetUnicodeFormat (HWND hwnd, WPARAM wParam)
1450 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1451 BOOL bTemp = (infoPtr->nNotifyFormat == NFR_UNICODE);
1453 infoPtr->nNotifyFormat = ((BOOL)wParam ? NFR_UNICODE : NFR_ANSI);
1455 return bTemp;
1459 static LRESULT
1460 HEADER_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
1462 HEADER_INFO *infoPtr;
1463 TEXTMETRICW tm;
1464 HFONT hOldFont;
1465 HDC hdc;
1467 infoPtr = (HEADER_INFO *)Alloc (sizeof(HEADER_INFO));
1468 SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
1470 infoPtr->hwndNotify = ((LPCREATESTRUCTA)lParam)->hwndParent;
1471 infoPtr->uNumItem = 0;
1472 infoPtr->hFont = 0;
1473 infoPtr->items = 0;
1474 infoPtr->order = 0;
1475 infoPtr->bRectsValid = FALSE;
1476 infoPtr->hcurArrow = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1477 infoPtr->hcurDivider = LoadCursorW (COMCTL32_hModule, MAKEINTRESOURCEW(IDC_DIVIDER));
1478 infoPtr->hcurDivopen = LoadCursorW (COMCTL32_hModule, MAKEINTRESOURCEW(IDC_DIVIDEROPEN));
1479 infoPtr->bPressed = FALSE;
1480 infoPtr->bTracking = FALSE;
1481 infoPtr->iMoveItem = 0;
1482 infoPtr->himl = 0;
1483 infoPtr->iHotItem = -1;
1484 infoPtr->iHotDivider = -1;
1485 infoPtr->iMargin = 3*GetSystemMetrics(SM_CXEDGE);
1486 infoPtr->nNotifyFormat =
1487 SendMessageW (infoPtr->hwndNotify, WM_NOTIFYFORMAT, (WPARAM)hwnd, NF_QUERY);
1489 hdc = GetDC (0);
1490 hOldFont = SelectObject (hdc, GetStockObject (SYSTEM_FONT));
1491 GetTextMetricsW (hdc, &tm);
1492 infoPtr->nHeight = tm.tmHeight + VERT_BORDER;
1493 SelectObject (hdc, hOldFont);
1494 ReleaseDC (0, hdc);
1496 OpenThemeData(hwnd, themeClass);
1498 return 0;
1502 static LRESULT
1503 HEADER_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
1505 HTHEME theme = GetWindowTheme(hwnd);
1506 CloseThemeData(theme);
1507 return 0;
1510 static LRESULT
1511 HEADER_NCDestroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
1513 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1514 HEADER_ITEM *lpItem;
1515 INT nItem;
1517 if (infoPtr->items) {
1518 lpItem = infoPtr->items;
1519 for (nItem = 0; nItem < infoPtr->uNumItem; nItem++, lpItem++) {
1520 HEADER_DisposeItem(lpItem);
1522 Free (infoPtr->items);
1525 if (infoPtr->order)
1526 Free(infoPtr->order);
1528 if (infoPtr->himl)
1529 ImageList_Destroy (infoPtr->himl);
1531 SetWindowLongPtrW (hwnd, 0, 0);
1532 Free (infoPtr);
1534 return 0;
1538 static inline LRESULT
1539 HEADER_GetFont (HWND hwnd)
1541 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1543 return (LRESULT)infoPtr->hFont;
1547 static BOOL
1548 HEADER_IsDragDistance(HEADER_INFO *infoPtr, POINT *pt)
1550 /* Windows allows for a mouse movement before starting the drag. We use the
1551 * SM_CXDOUBLECLICK/SM_CYDOUBLECLICK as that distance.
1553 return (abs(infoPtr->ptLButtonDown.x - pt->x)>GetSystemMetrics(SM_CXDOUBLECLK) ||
1554 abs(infoPtr->ptLButtonDown.y - pt->y)>GetSystemMetrics(SM_CYDOUBLECLK));
1557 static LRESULT
1558 HEADER_LButtonDblClk (HWND hwnd, WPARAM wParam, LPARAM lParam)
1560 POINT pt;
1561 UINT flags;
1562 INT nItem;
1564 pt.x = (short)LOWORD(lParam);
1565 pt.y = (short)HIWORD(lParam);
1566 HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1568 if ((GetWindowLongW (hwnd, GWL_STYLE) & HDS_BUTTONS) && (flags == HHT_ONHEADER))
1569 HEADER_SendNotifyWithHDItemT(hwnd, HDN_ITEMDBLCLICKW, nItem, NULL);
1570 else if ((flags == HHT_ONDIVIDER) || (flags == HHT_ONDIVOPEN))
1571 HEADER_SendNotifyWithHDItemT(hwnd, HDN_DIVIDERDBLCLICKW, nItem, NULL);
1573 return 0;
1577 static LRESULT
1578 HEADER_LButtonDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
1580 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1581 DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1582 POINT pt;
1583 UINT flags;
1584 INT nItem;
1585 HDC hdc;
1587 pt.x = (short)LOWORD(lParam);
1588 pt.y = (short)HIWORD(lParam);
1589 HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1591 if ((dwStyle & HDS_BUTTONS) && (flags == HHT_ONHEADER)) {
1592 SetCapture (hwnd);
1593 infoPtr->bCaptured = TRUE;
1594 infoPtr->bPressed = TRUE;
1595 infoPtr->bDragging = FALSE;
1596 infoPtr->iMoveItem = nItem;
1597 infoPtr->ptLButtonDown = pt;
1599 infoPtr->items[nItem].bDown = TRUE;
1601 /* Send WM_CUSTOMDRAW */
1602 hdc = GetDC (hwnd);
1603 HEADER_RefreshItem (hwnd, hdc, nItem);
1604 ReleaseDC (hwnd, hdc);
1606 TRACE("Pressed item %d!\n", nItem);
1608 else if ((flags == HHT_ONDIVIDER) || (flags == HHT_ONDIVOPEN)) {
1609 INT iCurrWidth = infoPtr->items[nItem].cxy;
1610 if (!HEADER_SendNotifyWithIntFieldT(hwnd, HDN_BEGINTRACKW, nItem, HDI_WIDTH, iCurrWidth))
1612 SetCapture (hwnd);
1613 infoPtr->bCaptured = TRUE;
1614 infoPtr->bTracking = TRUE;
1615 infoPtr->iMoveItem = nItem;
1616 infoPtr->xTrackOffset = infoPtr->items[nItem].rect.right - pt.x;
1618 if (!(dwStyle & HDS_FULLDRAG)) {
1619 infoPtr->xOldTrack = infoPtr->items[nItem].rect.right;
1620 hdc = GetDC (hwnd);
1621 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1622 ReleaseDC (hwnd, hdc);
1625 TRACE("Begin tracking item %d!\n", nItem);
1629 return 0;
1633 static LRESULT
1634 HEADER_LButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
1636 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1637 DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1638 POINT pt;
1639 UINT flags;
1640 INT nItem;
1641 HDC hdc;
1643 pt.x = (INT)(SHORT)LOWORD(lParam);
1644 pt.y = (INT)(SHORT)HIWORD(lParam);
1645 HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1647 if (infoPtr->bPressed) {
1648 if (infoPtr->bDragging)
1650 HEADER_ITEM *lpItem = &infoPtr->items[infoPtr->iMoveItem];
1651 INT iNewOrder;
1653 ImageList_DragShowNolock(FALSE);
1654 ImageList_EndDrag();
1655 lpItem->bDown=FALSE;
1657 if (infoPtr->iHotDivider == -1)
1658 iNewOrder = -1;
1659 else if (infoPtr->iHotDivider == infoPtr->uNumItem)
1660 iNewOrder = infoPtr->uNumItem-1;
1661 else
1663 iNewOrder = HEADER_IndexToOrder(hwnd, infoPtr->iHotDivider);
1664 if (iNewOrder > lpItem->iOrder)
1665 iNewOrder--;
1668 if (iNewOrder != -1 &&
1669 !HEADER_SendNotifyWithIntFieldT(hwnd, HDN_ENDDRAG, infoPtr->iMoveItem, HDI_ORDER, iNewOrder))
1671 HEADER_ChangeItemOrder(infoPtr, infoPtr->iMoveItem, iNewOrder);
1672 infoPtr->bRectsValid = FALSE;
1673 InvalidateRect(hwnd, NULL, FALSE);
1675 else
1676 InvalidateRect(hwnd, &infoPtr->items[infoPtr->iMoveItem].rect, FALSE);
1678 HEADER_SetHotDivider(hwnd, FALSE, -1);
1680 else if (!(dwStyle&HDS_DRAGDROP) || !HEADER_IsDragDistance(infoPtr, &pt))
1682 infoPtr->items[infoPtr->iMoveItem].bDown = FALSE;
1683 hdc = GetDC (hwnd);
1684 HEADER_RefreshItem (hwnd, hdc, infoPtr->iMoveItem);
1685 ReleaseDC (hwnd, hdc);
1687 HEADER_SendNotifyWithHDItemT(hwnd, HDN_ITEMCLICKW, infoPtr->iMoveItem, NULL);
1690 TRACE("Released item %d!\n", infoPtr->iMoveItem);
1691 infoPtr->bPressed = FALSE;
1693 else if (infoPtr->bTracking) {
1694 INT iNewWidth = pt.x - infoPtr->items[infoPtr->iMoveItem].rect.left + infoPtr->xTrackOffset;
1695 if (iNewWidth < 0)
1696 iNewWidth = 0;
1697 TRACE("End tracking item %d!\n", infoPtr->iMoveItem);
1698 infoPtr->bTracking = FALSE;
1700 HEADER_SendNotifyWithIntFieldT(hwnd, HDN_ENDTRACKW, infoPtr->iMoveItem, HDI_WIDTH, iNewWidth);
1702 if (!(dwStyle & HDS_FULLDRAG)) {
1703 hdc = GetDC (hwnd);
1704 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1705 ReleaseDC (hwnd, hdc);
1708 if (!HEADER_SendNotifyWithIntFieldT(hwnd, HDN_ITEMCHANGINGW, infoPtr->iMoveItem, HDI_WIDTH, iNewWidth))
1710 infoPtr->items[infoPtr->iMoveItem].cxy = iNewWidth;
1711 HEADER_SendNotifyWithIntFieldT(hwnd, HDN_ITEMCHANGEDW, infoPtr->iMoveItem, HDI_WIDTH, iNewWidth);
1714 HEADER_SetItemBounds (hwnd);
1715 InvalidateRect(hwnd, NULL, TRUE);
1718 if (infoPtr->bCaptured) {
1719 infoPtr->bCaptured = FALSE;
1720 ReleaseCapture ();
1721 HEADER_SendSimpleNotify (hwnd, NM_RELEASEDCAPTURE);
1724 return 0;
1728 static LRESULT
1729 HEADER_NotifyFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
1731 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1733 switch (lParam)
1735 case NF_QUERY:
1736 return infoPtr->nNotifyFormat;
1738 case NF_REQUERY:
1739 infoPtr->nNotifyFormat =
1740 SendMessageW ((HWND)wParam, WM_NOTIFYFORMAT,
1741 (WPARAM)hwnd, (LPARAM)NF_QUERY);
1742 return infoPtr->nNotifyFormat;
1745 return 0;
1748 static LRESULT
1749 HEADER_MouseLeave (HWND hwnd, WPARAM wParam, LPARAM lParam)
1751 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1752 /* Reset hot-tracked item when mouse leaves control. */
1753 INT oldHotItem = infoPtr->iHotItem;
1754 HDC hdc = GetDC (hwnd);
1756 infoPtr->iHotItem = -1;
1757 if (oldHotItem != -1) HEADER_RefreshItem (hwnd, hdc, oldHotItem);
1758 ReleaseDC (hwnd, hdc);
1760 return 0;
1764 static LRESULT
1765 HEADER_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
1767 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1768 DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1769 POINT pt;
1770 UINT flags;
1771 INT nItem, nWidth;
1772 HDC hdc;
1773 /* With theming, hottracking is always enabled */
1774 BOOL hotTrackEnabled =
1775 ((dwStyle & HDS_BUTTONS) && (dwStyle & HDS_HOTTRACK))
1776 || (GetWindowTheme (hwnd) != NULL);
1777 INT oldHotItem = infoPtr->iHotItem;
1779 pt.x = (INT)(SHORT)LOWORD(lParam);
1780 pt.y = (INT)(SHORT)HIWORD(lParam);
1781 HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1783 if (hotTrackEnabled) {
1784 if (flags & (HHT_ONHEADER | HHT_ONDIVIDER | HHT_ONDIVOPEN))
1785 infoPtr->iHotItem = nItem;
1786 else
1787 infoPtr->iHotItem = -1;
1790 if (infoPtr->bCaptured) {
1791 /* check if we should drag the header */
1792 if (infoPtr->bPressed && !infoPtr->bDragging && dwStyle&HDS_DRAGDROP
1793 && HEADER_IsDragDistance(infoPtr, &pt))
1795 if (!HEADER_SendNotifyWithHDItemT(hwnd, HDN_BEGINDRAG, infoPtr->iMoveItem, NULL))
1797 HIMAGELIST hDragItem = (HIMAGELIST)HEADER_CreateDragImage(hwnd, infoPtr->iMoveItem);
1798 if (hDragItem != NULL)
1800 HEADER_ITEM *lpItem = &infoPtr->items[infoPtr->iMoveItem];
1801 TRACE("Starting item drag\n");
1802 ImageList_BeginDrag(hDragItem, 0, pt.x - lpItem->rect.left, 0);
1803 ImageList_DragShowNolock(TRUE);
1804 ImageList_Destroy(hDragItem);
1805 infoPtr->bDragging = TRUE;
1810 if (infoPtr->bDragging)
1812 POINT drag;
1813 drag.x = pt.x;
1814 drag.y = 0;
1815 ClientToScreen(hwnd, &drag);
1816 ImageList_DragMove(drag.x, drag.y);
1817 HEADER_SetHotDivider(hwnd, TRUE, lParam);
1820 if (infoPtr->bPressed && !infoPtr->bDragging) {
1821 BOOL oldState = infoPtr->items[infoPtr->iMoveItem].bDown;
1822 if ((nItem == infoPtr->iMoveItem) && (flags == HHT_ONHEADER))
1823 infoPtr->items[infoPtr->iMoveItem].bDown = TRUE;
1824 else
1825 infoPtr->items[infoPtr->iMoveItem].bDown = FALSE;
1826 if (oldState != infoPtr->items[infoPtr->iMoveItem].bDown) {
1827 hdc = GetDC (hwnd);
1828 HEADER_RefreshItem (hwnd, hdc, infoPtr->iMoveItem);
1829 ReleaseDC (hwnd, hdc);
1832 TRACE("Moving pressed item %d!\n", infoPtr->iMoveItem);
1834 else if (infoPtr->bTracking) {
1835 if (dwStyle & HDS_FULLDRAG) {
1836 HEADER_ITEM *lpItem = &infoPtr->items[infoPtr->iMoveItem];
1837 nWidth = pt.x - lpItem->rect.left + infoPtr->xTrackOffset;
1838 if (!HEADER_SendNotifyWithIntFieldT(hwnd, HDN_ITEMCHANGINGW, infoPtr->iMoveItem, HDI_WIDTH, nWidth))
1840 INT nOldWidth = lpItem->rect.right - lpItem->rect.left;
1841 RECT rcClient;
1842 RECT rcScroll;
1844 if (nWidth < 0) nWidth = 0;
1845 infoPtr->items[infoPtr->iMoveItem].cxy = nWidth;
1846 HEADER_SetItemBounds(hwnd);
1848 GetClientRect(hwnd, &rcClient);
1849 rcScroll = rcClient;
1850 rcScroll.left = lpItem->rect.left + nOldWidth;
1851 ScrollWindowEx(hwnd, nWidth - nOldWidth, 0, &rcScroll, &rcClient, NULL, NULL, 0);
1852 InvalidateRect(hwnd, &lpItem->rect, FALSE);
1853 UpdateWindow(hwnd);
1855 HEADER_SendNotifyWithIntFieldT(hwnd, HDN_ITEMCHANGEDW, infoPtr->iMoveItem, HDI_WIDTH, nWidth);
1858 else {
1859 INT iTrackWidth;
1860 hdc = GetDC (hwnd);
1861 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1862 infoPtr->xOldTrack = pt.x + infoPtr->xTrackOffset;
1863 if (infoPtr->xOldTrack < infoPtr->items[infoPtr->iMoveItem].rect.left)
1864 infoPtr->xOldTrack = infoPtr->items[infoPtr->iMoveItem].rect.left;
1865 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1866 ReleaseDC (hwnd, hdc);
1867 iTrackWidth = infoPtr->xOldTrack - infoPtr->items[infoPtr->iMoveItem].rect.left;
1868 /* FIXME: should stop tracking if HDN_TRACK returns TRUE */
1869 HEADER_SendNotifyWithIntFieldT(hwnd, HDN_TRACKW, infoPtr->iMoveItem, HDI_WIDTH, iTrackWidth);
1872 TRACE("Tracking item %d!\n", infoPtr->iMoveItem);
1876 if (hotTrackEnabled) {
1877 TRACKMOUSEEVENT tme;
1878 if (oldHotItem != infoPtr->iHotItem && !infoPtr->bDragging) {
1879 hdc = GetDC (hwnd);
1880 if (oldHotItem != -1) HEADER_RefreshItem (hwnd, hdc, oldHotItem);
1881 if (infoPtr->iHotItem != -1) HEADER_RefreshItem (hwnd, hdc, infoPtr->iHotItem);
1882 ReleaseDC (hwnd, hdc);
1884 tme.cbSize = sizeof( tme );
1885 tme.dwFlags = TME_LEAVE;
1886 tme.hwndTrack = hwnd;
1887 TrackMouseEvent( &tme );
1890 return 0;
1894 static LRESULT
1895 HEADER_Paint (HWND hwnd, WPARAM wParam)
1897 HDC hdc;
1898 PAINTSTRUCT ps;
1900 hdc = wParam==0 ? BeginPaint (hwnd, &ps) : (HDC)wParam;
1901 HEADER_Refresh (hwnd, hdc);
1902 if(!wParam)
1903 EndPaint (hwnd, &ps);
1904 return 0;
1908 static LRESULT
1909 HEADER_RButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
1911 BOOL bRet;
1912 POINT pt;
1914 pt.x = (short)LOWORD(lParam);
1915 pt.y = (short)HIWORD(lParam);
1917 /* Send a Notify message */
1918 bRet = HEADER_SendSimpleNotify (hwnd, NM_RCLICK);
1920 /* Change to screen coordinate for WM_CONTEXTMENU */
1921 ClientToScreen(hwnd, &pt);
1923 /* Send a WM_CONTEXTMENU message in response to the RBUTTONUP */
1924 SendMessageW( hwnd, WM_CONTEXTMENU, (WPARAM) hwnd, MAKELPARAM(pt.x, pt.y));
1926 return bRet;
1930 static LRESULT
1931 HEADER_SetCursor (HWND hwnd, WPARAM wParam, LPARAM lParam)
1933 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1934 POINT pt;
1935 UINT flags;
1936 INT nItem;
1938 TRACE("code=0x%X id=0x%X\n", LOWORD(lParam), HIWORD(lParam));
1940 GetCursorPos (&pt);
1941 ScreenToClient (hwnd, &pt);
1943 HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1945 if (flags == HHT_ONDIVIDER)
1946 SetCursor (infoPtr->hcurDivider);
1947 else if (flags == HHT_ONDIVOPEN)
1948 SetCursor (infoPtr->hcurDivopen);
1949 else
1950 SetCursor (infoPtr->hcurArrow);
1952 return 0;
1956 static LRESULT
1957 HEADER_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
1959 HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1960 TEXTMETRICW tm;
1961 HFONT hFont, hOldFont;
1962 HDC hdc;
1964 infoPtr->hFont = (HFONT)wParam;
1966 hFont = infoPtr->hFont ? infoPtr->hFont : GetStockObject (SYSTEM_FONT);
1968 hdc = GetDC (0);
1969 hOldFont = SelectObject (hdc, hFont);
1970 GetTextMetricsW (hdc, &tm);
1971 infoPtr->nHeight = tm.tmHeight + VERT_BORDER;
1972 SelectObject (hdc, hOldFont);
1973 ReleaseDC (0, hdc);
1975 infoPtr->bRectsValid = FALSE;
1977 if (lParam) {
1978 InvalidateRect(hwnd, NULL, FALSE);
1981 return 0;
1984 static LRESULT HEADER_SetRedraw(HWND hwnd, WPARAM wParam, LPARAM lParam)
1986 /* ignoring the InvalidateRect calls is handled by user32. But some apps expect
1987 * that we invalidate the header and this has to be done manually */
1988 LRESULT ret;
1990 ret = DefWindowProcW(hwnd, WM_SETREDRAW, wParam, lParam);
1991 if (wParam)
1992 InvalidateRect(hwnd, NULL, TRUE);
1993 return ret;
1996 /* Update the theme handle after a theme change */
1997 static LRESULT HEADER_ThemeChanged(HWND hwnd)
1999 HTHEME theme = GetWindowTheme(hwnd);
2000 CloseThemeData(theme);
2001 OpenThemeData(hwnd, themeClass);
2002 InvalidateRect(hwnd, NULL, FALSE);
2003 return 0;
2007 static LRESULT WINAPI
2008 HEADER_WindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2010 TRACE("hwnd=%p msg=%x wparam=%x lParam=%lx\n", hwnd, msg, wParam, lParam);
2011 if (!HEADER_GetInfoPtr (hwnd) && (msg != WM_CREATE))
2012 return DefWindowProcW (hwnd, msg, wParam, lParam);
2013 switch (msg) {
2014 /* case HDM_CLEARFILTER: */
2016 case HDM_CREATEDRAGIMAGE:
2017 return HEADER_CreateDragImage (hwnd, wParam);
2019 case HDM_DELETEITEM:
2020 return HEADER_DeleteItem (hwnd, wParam);
2022 /* case HDM_EDITFILTER: */
2024 case HDM_GETBITMAPMARGIN:
2025 return HEADER_GetBitmapMargin(hwnd);
2027 case HDM_GETIMAGELIST:
2028 return HEADER_GetImageList (hwnd);
2030 case HDM_GETITEMA:
2031 case HDM_GETITEMW:
2032 return HEADER_GetItemT (hwnd, (INT)wParam, (LPHDITEMW)lParam, msg == HDM_GETITEMW);
2034 case HDM_GETITEMCOUNT:
2035 return HEADER_GetItemCount (hwnd);
2037 case HDM_GETITEMRECT:
2038 return HEADER_GetItemRect (hwnd, wParam, lParam);
2040 case HDM_GETORDERARRAY:
2041 return HEADER_GetOrderArray(hwnd, wParam, lParam);
2043 case HDM_GETUNICODEFORMAT:
2044 return HEADER_GetUnicodeFormat (hwnd);
2046 case HDM_HITTEST:
2047 return HEADER_HitTest (hwnd, wParam, lParam);
2049 case HDM_INSERTITEMA:
2050 case HDM_INSERTITEMW:
2051 return HEADER_InsertItemT (hwnd, (INT)wParam, (LPHDITEMW)lParam, msg == HDM_INSERTITEMW);
2053 case HDM_LAYOUT:
2054 return HEADER_Layout (hwnd, wParam, lParam);
2056 case HDM_ORDERTOINDEX:
2057 return HEADER_OrderToIndex(hwnd, wParam);
2059 case HDM_SETBITMAPMARGIN:
2060 return HEADER_SetBitmapMargin(hwnd, wParam);
2062 /* case HDM_SETFILTERCHANGETIMEOUT: */
2064 case HDM_SETHOTDIVIDER:
2065 return HEADER_SetHotDivider(hwnd, wParam, lParam);
2067 case HDM_SETIMAGELIST:
2068 return HEADER_SetImageList (hwnd, (HIMAGELIST)lParam);
2070 case HDM_SETITEMA:
2071 case HDM_SETITEMW:
2072 return HEADER_SetItemT (hwnd, (INT)wParam, (LPHDITEMW)lParam, msg == HDM_SETITEMW);
2074 case HDM_SETORDERARRAY:
2075 return HEADER_SetOrderArray(hwnd, wParam, lParam);
2077 case HDM_SETUNICODEFORMAT:
2078 return HEADER_SetUnicodeFormat (hwnd, wParam);
2080 case WM_CREATE:
2081 return HEADER_Create (hwnd, wParam, lParam);
2083 case WM_DESTROY:
2084 return HEADER_Destroy (hwnd, wParam, lParam);
2086 case WM_NCDESTROY:
2087 return HEADER_NCDestroy (hwnd, wParam, lParam);
2089 case WM_ERASEBKGND:
2090 return 1;
2092 case WM_GETDLGCODE:
2093 return DLGC_WANTTAB | DLGC_WANTARROWS;
2095 case WM_GETFONT:
2096 return HEADER_GetFont (hwnd);
2098 case WM_LBUTTONDBLCLK:
2099 return HEADER_LButtonDblClk (hwnd, wParam, lParam);
2101 case WM_LBUTTONDOWN:
2102 return HEADER_LButtonDown (hwnd, wParam, lParam);
2104 case WM_LBUTTONUP:
2105 return HEADER_LButtonUp (hwnd, wParam, lParam);
2107 case WM_MOUSELEAVE:
2108 return HEADER_MouseLeave (hwnd, wParam, lParam);
2110 case WM_MOUSEMOVE:
2111 return HEADER_MouseMove (hwnd, wParam, lParam);
2113 case WM_NOTIFYFORMAT:
2114 return HEADER_NotifyFormat (hwnd, wParam, lParam);
2116 case WM_SIZE:
2117 return HEADER_Size (hwnd, wParam);
2119 case WM_THEMECHANGED:
2120 return HEADER_ThemeChanged (hwnd);
2122 case WM_PRINTCLIENT:
2123 case WM_PAINT:
2124 return HEADER_Paint (hwnd, wParam);
2126 case WM_RBUTTONUP:
2127 return HEADER_RButtonUp (hwnd, wParam, lParam);
2129 case WM_SETCURSOR:
2130 return HEADER_SetCursor (hwnd, wParam, lParam);
2132 case WM_SETFONT:
2133 return HEADER_SetFont (hwnd, wParam, lParam);
2135 case WM_SETREDRAW:
2136 return HEADER_SetRedraw(hwnd, wParam, lParam);
2138 default:
2139 if ((msg >= WM_USER) && (msg < WM_APP))
2140 ERR("unknown msg %04x wp=%04x lp=%08lx\n",
2141 msg, wParam, lParam );
2142 return DefWindowProcW(hwnd, msg, wParam, lParam);
2147 VOID
2148 HEADER_Register (void)
2150 WNDCLASSW wndClass;
2152 ZeroMemory (&wndClass, sizeof(WNDCLASSW));
2153 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
2154 wndClass.lpfnWndProc = HEADER_WindowProc;
2155 wndClass.cbClsExtra = 0;
2156 wndClass.cbWndExtra = sizeof(HEADER_INFO *);
2157 wndClass.hCursor = LoadCursorW (0, (LPWSTR)IDC_ARROW);
2158 wndClass.lpszClassName = WC_HEADERW;
2160 RegisterClassW (&wndClass);
2164 VOID
2165 HEADER_Unregister (void)
2167 UnregisterClassW (WC_HEADERW, NULL);