comctl32: Send Unicode notifications if required in header control.
[wine] / dlls / comctl32 / header.c
1 /*
2  *  Header control
3  *
4  *  Copyright 1998 Eric Kohl
5  *  Copyright 2000 Eric Kohl for CodeWeavers
6  *  Copyright 2003 Maxime Bellenge
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  *  TODO:
23  *   - Imagelist support (partially).
24  *   - Callback items (under construction).
25  *   - Hottrack support (partially).
26  *   - Custom draw support (including Notifications).
27  *   - Drag and Drop support (including Notifications).
28  *   - New messages.
29  *   - Use notification format
30  *   - Correct the order maintenance code to preserve valid order
31  *
32  */
33
34 #include <stdarg.h>
35 #include <string.h>
36
37 #include "windef.h"
38 #include "winbase.h"
39 #include "wine/unicode.h"
40 #include "wingdi.h"
41 #include "winuser.h"
42 #include "winnls.h"
43 #include "commctrl.h"
44 #include "comctl32.h"
45 #include "imagelist.h"
46 #include "tmschema.h"
47 #include "uxtheme.h"
48 #include "wine/debug.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(header);
51
52 typedef struct
53 {
54     INT     cxy;
55     HBITMAP hbm;
56     LPWSTR    pszText;
57     INT     fmt;
58     LPARAM    lParam;
59     INT     iImage;
60     INT     iOrder;             /* see documentation of HD_ITEM */
61
62     BOOL    bDown;              /* is item pressed? (used for drawing) */
63     RECT    rect;               /* bounding rectangle of the item */
64 } HEADER_ITEM;
65
66
67 typedef struct
68 {
69     HWND      hwndNotify;       /* Owner window to send notifications to */
70     INT       nNotifyFormat;    /* format used for WM_NOTIFY messages */
71     UINT      uNumItem;         /* number of items (columns) */
72     INT       nHeight;          /* height of the header (pixels) */
73     HFONT     hFont;            /* handle to the current font */
74     HCURSOR   hcurArrow;        /* handle to the arrow cursor */
75     HCURSOR   hcurDivider;      /* handle to a cursor (used over dividers) <-|-> */
76     HCURSOR   hcurDivopen;      /* handle to a cursor (used over dividers) <-||-> */
77     BOOL      bCaptured;        /* Is the mouse captured? */
78     BOOL      bPressed;         /* Is a header item pressed (down)? */
79     BOOL      bTracking;        /* Is in tracking mode? */
80     BOOL      bUnicode;         /* Unicode flag */
81     INT       iMoveItem;        /* index of tracked item. (Tracking mode) */
82     INT       xTrackOffset;     /* distance between the right side of the tracked item and the cursor */
83     INT       xOldTrack;        /* track offset (see above) after the last WM_MOUSEMOVE */
84     INT       nOldWidth;        /* width of a sizing item after the last WM_MOUSEMOVE */
85     INT       iHotItem;         /* index of hot item (cursor is over this item) */
86     INT       iMargin;          /* width of the margin that surrounds a bitmap */
87
88     HIMAGELIST  himl;           /* handle to an image list (may be 0) */
89     HEADER_ITEM *items;         /* pointer to array of HEADER_ITEM's */
90     INT         *order;         /* array of item IDs indexed by order */
91     BOOL        bRectsValid;    /* validity flag for bounding rectangles */
92 } HEADER_INFO;
93
94
95 #define VERT_BORDER     3
96 #define DIVIDER_WIDTH  10
97 #define HDN_UNICODE_OFFSET 20
98 #define HDN_FIRST_UNICODE (HDN_FIRST-HDN_UNICODE_OFFSET)
99
100 #define HEADER_GetInfoPtr(hwnd) ((HEADER_INFO *)GetWindowLongPtrW(hwnd,0))
101
102 static const WCHAR themeClass[] = {'H','e','a','d','e','r',0};
103
104
105 inline static LRESULT
106 HEADER_IndexToOrder (HWND hwnd, INT iItem)
107 {
108     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
109     HEADER_ITEM *lpItem = &infoPtr->items[iItem];
110     return lpItem->iOrder;
111 }
112
113
114 static INT
115 HEADER_OrderToIndex(HWND hwnd, WPARAM wParam)
116 {
117     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
118     INT iorder = (INT)wParam;
119
120     if ((iorder <0) || iorder >= infoPtr->uNumItem)
121       return iorder;
122     return infoPtr->order[iorder];
123 }
124
125 static void
126 HEADER_SetItemBounds (HWND hwnd)
127 {
128     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
129     HEADER_ITEM *phdi;
130     RECT rect;
131     unsigned int i;
132     int x;
133
134     infoPtr->bRectsValid = TRUE;
135
136     if (infoPtr->uNumItem == 0)
137         return;
138
139     GetClientRect (hwnd, &rect);
140
141     x = rect.left;
142     for (i = 0; i < infoPtr->uNumItem; i++) {
143         phdi = &infoPtr->items[HEADER_OrderToIndex(hwnd,i)];
144         phdi->rect.top = rect.top;
145         phdi->rect.bottom = rect.bottom;
146         phdi->rect.left = x;
147         phdi->rect.right = phdi->rect.left + ((phdi->cxy>0)?phdi->cxy:0);
148         x = phdi->rect.right;
149     }
150 }
151
152 static LRESULT
153 HEADER_Size (HWND hwnd, WPARAM wParam)
154 {
155     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
156
157     infoPtr->bRectsValid = FALSE;
158
159     return 0;
160 }
161
162
163 static INT
164 HEADER_DrawItem (HWND hwnd, HDC hdc, INT iItem, BOOL bHotTrack)
165 {
166     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
167     HEADER_ITEM *phdi = &infoPtr->items[iItem];
168     RECT r;
169     INT  oldBkMode, cxEdge = GetSystemMetrics(SM_CXEDGE);
170     HTHEME theme = GetWindowTheme (hwnd);
171     NMCUSTOMDRAW nmcd;
172
173     TRACE("DrawItem(iItem %d bHotTrack %d unicode flag %d)\n", iItem, bHotTrack, infoPtr->bUnicode);
174
175     if (!infoPtr->bRectsValid)
176         HEADER_SetItemBounds(hwnd);
177
178     r = phdi->rect;
179     if (r.right - r.left == 0)
180         return phdi->rect.right;
181
182     if (theme != NULL) {
183         int state = (phdi->bDown) ? HIS_PRESSED :
184             (bHotTrack ? HIS_HOT : HIS_NORMAL);
185         DrawThemeBackground (theme, hdc, HP_HEADERITEM, state,
186             &r, NULL);
187         GetThemeBackgroundContentRect (theme, hdc, HP_HEADERITEM, state,
188             &r, &r);
189     }
190     else {
191         if (GetWindowLongW (hwnd, GWL_STYLE) & HDS_BUTTONS) {
192             if (phdi->bDown) {
193                 DrawEdge (hdc, &r, BDR_RAISEDOUTER,
194                             BF_RECT | BF_FLAT | BF_MIDDLE | BF_ADJUST);
195             }
196             else
197                 DrawEdge (hdc, &r, EDGE_RAISED,
198                             BF_RECT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
199         }
200         else
201             DrawEdge (hdc, &r, EDGE_ETCHED, BF_BOTTOM | BF_RIGHT | BF_ADJUST);
202     }
203     if (phdi->bDown) {
204         r.left += 2;
205         r.top  += 2;
206     }
207
208     r.left  -= cxEdge;
209     r.right += cxEdge;
210
211     /* Set the colors before sending NM_CUSTOMDRAW so that it can change them */
212     SetTextColor (hdc, (bHotTrack && !theme) ? COLOR_HIGHLIGHT : COLOR_BTNTEXT);
213     SetBkColor(hdc, GetSysColor(COLOR_3DFACE));
214
215     nmcd.hdr.hwndFrom = hwnd;
216     nmcd.hdr.idFrom   = GetWindowLongPtrW (hwnd, GWLP_ID);
217     nmcd.hdr.code     = NM_CUSTOMDRAW;
218     nmcd.dwDrawStage  = CDDS_PREPAINT | CDDS_ITEM | CDDS_ITEMPOSTERASE;
219     nmcd.hdc          = hdc;
220     nmcd.dwItemSpec   = iItem;
221     nmcd.rc           = r;
222     nmcd.uItemState   = phdi->bDown ? CDIS_SELECTED : 0;
223     nmcd.lItemlParam  = phdi->lParam;
224
225     SendMessageW (infoPtr->hwndNotify, WM_NOTIFY, nmcd.hdr.idFrom, (LPARAM)&nmcd);
226
227     if (phdi->fmt & HDF_OWNERDRAW) {
228         DRAWITEMSTRUCT dis;
229
230         dis.CtlType    = ODT_HEADER;
231         dis.CtlID      = GetWindowLongPtrW (hwnd, GWLP_ID);
232         dis.itemID     = iItem;
233         dis.itemAction = ODA_DRAWENTIRE;
234         dis.itemState  = phdi->bDown ? ODS_SELECTED : 0;
235         dis.hwndItem   = hwnd;
236         dis.hDC        = hdc;
237         dis.rcItem     = r;
238         dis.itemData   = phdi->lParam;
239         oldBkMode = SetBkMode(hdc, TRANSPARENT);
240         SendMessageW (infoPtr->hwndNotify, WM_DRAWITEM,
241                         (WPARAM)dis.CtlID, (LPARAM)&dis);
242         if (oldBkMode != TRANSPARENT)
243             SetBkMode(hdc, oldBkMode);
244     }
245     else {
246         UINT rw, rh, /* width and height of r */
247              *x = NULL, *w = NULL; /* x and width of the pic (bmp or img) which is part of cnt */
248           /* cnt,txt,img,bmp */
249         UINT cx, tx, ix, bx,
250              cw, tw, iw, bw;
251         BITMAP bmp;
252
253         cw = tw = iw = bw = 0;
254         rw = r.right - r.left;
255         rh = r.bottom - r.top;
256
257         if (theme == NULL) {
258             HBRUSH hbr = CreateSolidBrush(GetBkColor(hdc));
259             RECT rcBackground = r;
260
261             rcBackground.right -= cxEdge;
262             FillRect(hdc, &rcBackground, hbr);
263             DeleteObject(hbr);
264         }
265         if (phdi->fmt & HDF_STRING) {
266             RECT textRect;
267
268             DrawTextW (hdc, phdi->pszText, -1,
269                        &textRect, DT_LEFT|DT_VCENTER|DT_SINGLELINE|DT_CALCRECT);
270             cw = textRect.right - textRect.left + 2 * infoPtr->iMargin;
271         }
272
273         if ((phdi->fmt & HDF_IMAGE) && (infoPtr->himl)) {
274             iw = infoPtr->himl->cx + 2 * infoPtr->iMargin;
275             x = &ix;
276             w = &iw;
277         }
278
279         if ((phdi->fmt & HDF_BITMAP) && (phdi->hbm)) {
280             GetObjectW (phdi->hbm, sizeof(BITMAP), (LPVOID)&bmp);
281             bw = bmp.bmWidth + 2 * infoPtr->iMargin;
282             if (!iw) {
283                 x = &bx;
284                 w = &bw;
285             }
286         }
287
288         if (bw || iw)
289             cw += *w; 
290
291         /* align cx using the unclipped cw */
292         if ((phdi->fmt & HDF_JUSTIFYMASK) == HDF_LEFT)
293             cx = r.left;
294         else if ((phdi->fmt & HDF_JUSTIFYMASK) == HDF_CENTER)
295             cx = r.left + rw / 2 - cw / 2;
296         else /* HDF_RIGHT */
297             cx = r.right - cw;
298         
299         /* clip cx & cw */
300         if (cx < r.left)
301             cx = r.left;
302         if (cx + cw > r.right)
303             cw = r.right - cx;
304         
305         tx = cx + infoPtr->iMargin;
306         /* since cw might have changed we have to recalculate tw */
307         tw = cw - infoPtr->iMargin * 2;
308                         
309         if (iw || bw) {
310             tw -= *w;
311             if (phdi->fmt & HDF_BITMAP_ON_RIGHT) {
312                 /* put pic behind text */
313                 *x = cx + tw + infoPtr->iMargin * 3;
314             } else {
315                 *x = cx + infoPtr->iMargin;
316                 /* move text behind pic */
317                 tx += *w;
318             }
319         }
320
321         if (iw && bw) {
322             /* since we're done with the layout we can
323                now calculate the position of bmp which
324                has no influence on alignment and layout
325                because of img */
326             if ((phdi->fmt & HDF_JUSTIFYMASK) == HDF_RIGHT)
327                 bx = cx - bw + infoPtr->iMargin;
328             else
329                 bx = cx + cw + infoPtr->iMargin;
330         }
331
332         if (iw || bw) {
333             HDC hClipDC = GetDC(hwnd);
334             HRGN hClipRgn = CreateRectRgn(r.left, r.top, r.right, r.bottom);
335             SelectClipRgn(hClipDC, hClipRgn);
336             
337             if (bw) {
338                 HDC hdcBitmap = CreateCompatibleDC (hClipDC);
339                 SelectObject (hdcBitmap, phdi->hbm);
340                 BitBlt (hClipDC, bx, r.top + ((INT)rh - bmp.bmHeight) / 2, 
341                         bmp.bmWidth, bmp.bmHeight, hdcBitmap, 0, 0, SRCCOPY);
342                 DeleteDC (hdcBitmap);
343             }
344
345             if (iw) {
346                 ImageList_DrawEx (infoPtr->himl, phdi->iImage, hClipDC, 
347                                   ix, r.top + ((INT)rh - infoPtr->himl->cy) / 2,
348                                   infoPtr->himl->cx, infoPtr->himl->cy, CLR_DEFAULT, CLR_DEFAULT, 0);
349             }
350
351             DeleteObject(hClipRgn);
352             ReleaseDC(hwnd, hClipDC);
353         }
354         
355         if (((phdi->fmt & HDF_STRING)
356                 || (!(phdi->fmt & (HDF_OWNERDRAW|HDF_STRING|HDF_BITMAP|
357                                    HDF_BITMAP_ON_RIGHT|HDF_IMAGE)))) /* no explicit format specified? */
358             && (phdi->pszText)) {
359             oldBkMode = SetBkMode(hdc, TRANSPARENT);
360             r.left  = tx;
361             r.right = tx + tw;
362             DrawTextW (hdc, phdi->pszText, -1,
363                        &r, DT_LEFT|DT_END_ELLIPSIS|DT_VCENTER|DT_SINGLELINE);
364             if (oldBkMode != TRANSPARENT)
365                 SetBkMode(hdc, oldBkMode);
366         }
367     }/*Ownerdrawn*/
368
369     return phdi->rect.right;
370 }
371
372
373 static void
374 HEADER_Refresh (HWND hwnd, HDC hdc)
375 {
376     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
377     HFONT hFont, hOldFont;
378     RECT rect;
379     HBRUSH hbrBk;
380     UINT i;
381     INT x;
382     HTHEME theme = GetWindowTheme (hwnd);
383
384     /* get rect for the bar, adjusted for the border */
385     GetClientRect (hwnd, &rect);
386
387     hFont = infoPtr->hFont ? infoPtr->hFont : GetStockObject (SYSTEM_FONT);
388     hOldFont = SelectObject (hdc, hFont);
389
390     /* draw Background */
391     if (theme == NULL) {
392         hbrBk = GetSysColorBrush(COLOR_3DFACE);
393         FillRect(hdc, &rect, hbrBk);
394     }
395
396     x = rect.left;
397     for (i = 0; x <= rect.right && i < infoPtr->uNumItem; i++) {
398         x = HEADER_DrawItem (hwnd, hdc, HEADER_OrderToIndex(hwnd,i), 
399             infoPtr->iHotItem == i);
400     }
401
402     if ((x <= rect.right) && (infoPtr->uNumItem > 0)) {
403         rect.left = x;
404         if (theme != NULL) {
405             DrawThemeBackground (theme, hdc, HP_HEADERITEM, HIS_NORMAL, &rect,
406                 NULL);
407         }
408         else {
409             if (GetWindowLongW (hwnd, GWL_STYLE) & HDS_BUTTONS)
410                 DrawEdge (hdc, &rect, EDGE_RAISED, BF_TOP|BF_LEFT|BF_BOTTOM|BF_SOFT);
411             else
412                 DrawEdge (hdc, &rect, EDGE_ETCHED, BF_BOTTOM);
413         }
414     }
415
416     SelectObject (hdc, hOldFont);
417 }
418
419
420 static void
421 HEADER_RefreshItem (HWND hwnd, HDC hdc, INT iItem)
422 {
423     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
424     HFONT hFont, hOldFont;
425
426     hFont = infoPtr->hFont ? infoPtr->hFont : GetStockObject (SYSTEM_FONT);
427     hOldFont = SelectObject (hdc, hFont);
428     HEADER_DrawItem (hwnd, hdc, iItem, infoPtr->iHotItem == iItem);
429     SelectObject (hdc, hOldFont);
430 }
431
432
433 static void
434 HEADER_InternalHitTest (HWND hwnd, LPPOINT lpPt, UINT *pFlags, INT *pItem)
435 {
436     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
437     RECT rect, rcTest;
438     UINT iCount;
439     INT width;
440     BOOL bNoWidth;
441
442     GetClientRect (hwnd, &rect);
443
444     *pFlags = 0;
445     bNoWidth = FALSE;
446     if (PtInRect (&rect, *lpPt))
447     {
448         if (infoPtr->uNumItem == 0) {
449             *pFlags |= HHT_NOWHERE;
450             *pItem = 1;
451             TRACE("NOWHERE\n");
452             return;
453         }
454         else {
455             /* somewhere inside */
456             for (iCount = 0; iCount < infoPtr->uNumItem; iCount++) {
457                 rect = infoPtr->items[iCount].rect;
458                 width = rect.right - rect.left;
459                 if (width == 0) {
460                     bNoWidth = TRUE;
461                     continue;
462                 }
463                 if (PtInRect (&rect, *lpPt)) {
464                     if (width <= 2 * DIVIDER_WIDTH) {
465                         *pFlags |= HHT_ONHEADER;
466                         *pItem = iCount;
467                         TRACE("ON HEADER %d\n", iCount);
468                         return;
469                     }
470                     if (iCount > 0) {
471                         rcTest = rect;
472                         rcTest.right = rcTest.left + DIVIDER_WIDTH;
473                         if (PtInRect (&rcTest, *lpPt)) {
474                             if (bNoWidth) {
475                                 *pFlags |= HHT_ONDIVOPEN;
476                                 *pItem = iCount - 1;
477                                 TRACE("ON DIVOPEN %d\n", *pItem);
478                                 return;
479                             }
480                             else {
481                                 *pFlags |= HHT_ONDIVIDER;
482                                 *pItem = iCount - 1;
483                                 TRACE("ON DIVIDER %d\n", *pItem);
484                                 return;
485                             }
486                         }
487                     }
488                     rcTest = rect;
489                     rcTest.left = rcTest.right - DIVIDER_WIDTH;
490                     if (PtInRect (&rcTest, *lpPt)) {
491                         *pFlags |= HHT_ONDIVIDER;
492                         *pItem = iCount;
493                         TRACE("ON DIVIDER %d\n", *pItem);
494                         return;
495                     }
496
497                     *pFlags |= HHT_ONHEADER;
498                     *pItem = iCount;
499                     TRACE("ON HEADER %d\n", iCount);
500                     return;
501                 }
502             }
503
504             /* check for last divider part (on nowhere) */
505             rect = infoPtr->items[infoPtr->uNumItem-1].rect;
506             rect.left = rect.right;
507             rect.right += DIVIDER_WIDTH;
508             if (PtInRect (&rect, *lpPt)) {
509                 if (bNoWidth) {
510                     *pFlags |= HHT_ONDIVOPEN;
511                     *pItem = infoPtr->uNumItem - 1;
512                     TRACE("ON DIVOPEN %d\n", *pItem);
513                     return;
514                 }
515                 else {
516                     *pFlags |= HHT_ONDIVIDER;
517                     *pItem = infoPtr->uNumItem-1;
518                     TRACE("ON DIVIDER %d\n", *pItem);
519                     return;
520                 }
521             }
522
523             *pFlags |= HHT_NOWHERE;
524             *pItem = 1;
525             TRACE("NOWHERE\n");
526             return;
527         }
528     }
529     else {
530         if (lpPt->x < rect.left) {
531            TRACE("TO LEFT\n");
532            *pFlags |= HHT_TOLEFT;
533         }
534         else if (lpPt->x > rect.right) {
535             TRACE("TO RIGHT\n");
536             *pFlags |= HHT_TORIGHT;
537         }
538
539         if (lpPt->y < rect.top) {
540             TRACE("ABOVE\n");
541             *pFlags |= HHT_ABOVE;
542         }
543         else if (lpPt->y > rect.bottom) {
544             TRACE("BELOW\n");
545             *pFlags |= HHT_BELOW;
546         }
547     }
548
549     *pItem = 1;
550     TRACE("flags=0x%X\n", *pFlags);
551     return;
552 }
553
554
555 static void
556 HEADER_DrawTrackLine (HWND hwnd, HDC hdc, INT x)
557 {
558     RECT rect;
559     HPEN hOldPen;
560     INT  oldRop;
561
562     GetClientRect (hwnd, &rect);
563
564     hOldPen = SelectObject (hdc, GetStockObject (BLACK_PEN));
565     oldRop = SetROP2 (hdc, R2_XORPEN);
566     MoveToEx (hdc, x, rect.top, NULL);
567     LineTo (hdc, x, rect.bottom);
568     SetROP2 (hdc, oldRop);
569     SelectObject (hdc, hOldPen);
570 }
571
572 static UINT HEADER_NotifyCodeWtoA(UINT code)
573 {
574     /* we use the fact that all the unicode messages are in HDN_FIRST_UNICODE..HDN_LAST*/
575     if (code >= HDN_LAST && code <= HDN_FIRST_UNICODE)
576         return code + HDN_UNICODE_OFFSET;
577     else
578         return code;
579 }
580
581 static BOOL
582 HEADER_SendSimpleNotify (HWND hwnd, UINT code)
583 {
584     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
585     NMHDR nmhdr;
586
587     nmhdr.hwndFrom = hwnd;
588     nmhdr.idFrom   = GetWindowLongPtrW (hwnd, GWLP_ID);
589     nmhdr.code     = code;
590
591     return (BOOL)SendMessageW (infoPtr->hwndNotify, WM_NOTIFY,
592                                    (WPARAM)nmhdr.idFrom, (LPARAM)&nmhdr);
593 }
594
595 static BOOL
596 HEADER_SendHeaderNotifyT (HWND hwnd, UINT code, INT iItem, INT mask)
597 {
598     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
599     NMHEADERA nmhdr;
600     HDITEMA nmitem;
601
602     nmhdr.hdr.hwndFrom = hwnd;
603     nmhdr.hdr.idFrom   = GetWindowLongPtrW (hwnd, GWLP_ID);
604     nmhdr.hdr.code = (infoPtr->nNotifyFormat == NFR_UNICODE ? code : HEADER_NotifyCodeWtoA(code));
605     nmhdr.iItem = iItem;
606     nmhdr.iButton = 0;
607     nmhdr.pitem = &nmitem;
608     nmitem.mask = mask;
609     nmitem.cxy = infoPtr->items[iItem].cxy;
610     nmitem.hbm = infoPtr->items[iItem].hbm;
611     nmitem.pszText = NULL;
612     nmitem.cchTextMax = 0;
613 /*    nmitem.pszText = infoPtr->items[iItem].pszText; */
614 /*    nmitem.cchTextMax = infoPtr->items[iItem].cchTextMax; */
615     nmitem.fmt = infoPtr->items[iItem].fmt;
616     nmitem.lParam = infoPtr->items[iItem].lParam;
617     nmitem.iOrder = infoPtr->items[iItem].iOrder;
618     nmitem.iImage = infoPtr->items[iItem].iImage;
619
620     return (BOOL)SendMessageW (infoPtr->hwndNotify, WM_NOTIFY,
621                                (WPARAM)nmhdr.hdr.idFrom, (LPARAM)&nmhdr);
622 }
623
624 /**
625  * Send Disp Info notification. 
626  *   depends on NMHDDISPINFOW having same structure as NMHDDISPINFOA 
627  *   (so we handle the two cases only doing a specific cast for pszText).
628  *
629  * @param hwnd : hwnd header container handler
630  * @param mask : notification mask (usually HDI_TEXT or HDI_IMAGE)
631  * @param pDispInfo : NMHDDISPINFO structure (can be unicode or ansi)
632  * @param isW : TRUE if dispinfo is Unicode
633  */
634 static BOOL
635 HEADER_SendHeaderDispInfoNotify(HWND hwnd, INT iItem, INT mask, LPHDITEMW phdi, HEADER_ITEM* lpItem, BOOL isW)
636 {
637     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
638     BOOL ret;
639     BOOL convertToAnsi = FALSE;
640     BOOL convertToUnicode = FALSE;
641     BOOL isUnicodeNotify = FALSE;
642     NMHDDISPINFOW dispInfo;
643
644     if (mask & HDI_TEXT)
645     {
646         convertToAnsi = (isW && infoPtr->nNotifyFormat == NFR_ANSI);
647         convertToUnicode = (!isW && infoPtr->nNotifyFormat == NFR_UNICODE);
648     }
649     isUnicodeNotify = (isW && !convertToAnsi);
650     
651     memset(&dispInfo, 0, sizeof(NMHDDISPINFOW));
652     dispInfo.hdr.hwndFrom = hwnd;
653     dispInfo.hdr.idFrom   = GetWindowLongPtrW (hwnd, GWLP_ID);
654     if (isUnicodeNotify || convertToUnicode) 
655     {
656         dispInfo.hdr.code = HDN_GETDISPINFOW;
657     }
658     else
659     {
660         dispInfo.hdr.code = HDN_GETDISPINFOA;
661     }
662     dispInfo.iItem        = iItem;
663     dispInfo.mask         = mask;
664     /*
665     dispInfo.pszText      = Alloc(sizeof(WCHAR) * 260);
666     dispInfo.cchTextMax   = 260;
667     */
668     ret = (BOOL) SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, 
669                               (WPARAM) dispInfo.hdr.idFrom, 
670                               (LPARAM) &dispInfo);
671
672     TRACE("SendMessage returns(mask:0x%x,str:%s,lParam:%p)\n", 
673           dispInfo.mask,
674           (isUnicodeNotify ? debugstr_w(dispInfo.pszText) : (LPSTR) dispInfo.pszText),
675           (void*) dispInfo.lParam);
676           
677     if (dispInfo.mask & HDI_DI_SETITEM) 
678     {
679         if (dispInfo.mask & HDI_IMAGE) 
680         {
681             lpItem->iImage = dispInfo.iImage;
682         }
683         if (dispInfo.mask & HDI_TEXT) 
684         {
685             if (isUnicodeNotify || convertToUnicode)
686                 Str_SetPtrW(&lpItem->pszText, (LPCWSTR)dispInfo.pszText);
687             else /*if (convertToAnsi || !isW)*/
688                 Str_SetPtrAtoW(&lpItem->pszText, (LPCSTR)dispInfo.pszText);
689         }
690         
691         FIXME("NMHDDISPINFO returns with flags HDI_DI_SETITEM\n");
692     }
693     
694     if (NULL != phdi)
695     {
696         if ((phdi->mask & mask) & HDI_IMAGE) 
697         {
698             phdi->iImage = dispInfo.iImage;
699         }
700         if ((phdi->mask & mask) & HDI_TEXT) 
701         {
702             if (isUnicodeNotify)
703                 Str_GetPtrW ((LPCWSTR)dispInfo.pszText, phdi->pszText, phdi->cchTextMax);
704             else if (convertToUnicode)
705                 Str_GetPtrWtoA ((LPCWSTR)dispInfo.pszText, (LPSTR)phdi->pszText, phdi->cchTextMax);
706             else /*if (!isW) */
707                 Str_GetPtrA ((LPCSTR)dispInfo.pszText, (LPSTR)phdi->pszText, phdi->cchTextMax);
708         }
709     }
710     return ret;
711 }
712
713
714 static BOOL
715 HEADER_SendClickNotify (HWND hwnd, UINT code, INT iItem)
716 {
717     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
718     NMHEADERA nmhdr;
719
720     nmhdr.hdr.hwndFrom = hwnd;
721     nmhdr.hdr.idFrom   = GetWindowLongPtrW (hwnd, GWLP_ID);
722     nmhdr.hdr.code = code;
723     nmhdr.iItem = iItem;
724     nmhdr.iButton = 0;
725     nmhdr.pitem = NULL;
726
727     return (BOOL)SendMessageA (infoPtr->hwndNotify, WM_NOTIFY,
728                                (WPARAM)nmhdr.hdr.idFrom, (LPARAM)&nmhdr);
729 }
730
731
732 static LRESULT
733 HEADER_CreateDragImage (HWND hwnd, WPARAM wParam)
734 {
735     FIXME("empty stub!\n");
736     return 0;
737 }
738
739
740 static LRESULT
741 HEADER_DeleteItem (HWND hwnd, WPARAM wParam)
742 {
743     HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
744     INT iItem = (INT)wParam;
745
746     TRACE("[iItem=%d]\n", iItem);
747
748     if ((iItem < 0) || (iItem >= (INT)infoPtr->uNumItem))
749         return FALSE;
750
751     if (infoPtr->uNumItem == 1) {
752         TRACE("Simple delete!\n");
753         if (infoPtr->items[0].pszText)
754             Free (infoPtr->items[0].pszText);
755         Free (infoPtr->items);
756         Free(infoPtr->order);
757         infoPtr->items = 0;
758         infoPtr->order = 0;
759         infoPtr->uNumItem = 0;
760     }
761     else {
762         HEADER_ITEM *oldItems = infoPtr->items;
763         INT i;
764         INT iOrder;
765         TRACE("Complex delete! [iItem=%d]\n", iItem);
766
767         for (i = 0; i < infoPtr->uNumItem; i++)
768            TRACE("%d: order=%d, iOrder=%d, ->iOrder=%d\n", i, infoPtr->order[i], infoPtr->items[i].iOrder, infoPtr->items[infoPtr->order[i]].iOrder);
769         if (infoPtr->items[iItem].pszText)
770             Free (infoPtr->items[iItem].pszText);
771         iOrder = infoPtr->items[iItem].iOrder;
772
773         infoPtr->uNumItem--;
774         infoPtr->items = Alloc (sizeof (HEADER_ITEM) * infoPtr->uNumItem);
775         /* pre delete copy */
776         if (iItem > 0) {
777             memcpy (&infoPtr->items[0], &oldItems[0],
778                     iItem * sizeof(HEADER_ITEM));
779         }
780
781         /* post delete copy */
782         if (iItem < infoPtr->uNumItem) {
783             memcpy (&infoPtr->items[iItem], &oldItems[iItem+1],
784                     (infoPtr->uNumItem - iItem) * sizeof(HEADER_ITEM));
785         }
786
787         /* Correct the orders */
788         if (iOrder < infoPtr->uNumItem)
789         {
790             memmove(&infoPtr->order[iOrder], &infoPtr->order[iOrder + 1],
791                    (infoPtr->uNumItem - iOrder) * sizeof(INT));
792             for (i = 0; i < infoPtr->uNumItem; i++)
793             {
794                 if (infoPtr->order[i] > iItem)
795                     infoPtr->order[i]--;
796                 if (i >= iOrder)
797                     infoPtr->items[infoPtr->order[i]].iOrder = infoPtr->order[i];
798             }
799         }
800
801         for (i = 0; i < infoPtr->uNumItem; i++)
802            TRACE("%d: order=%d, iOrder=%d, ->iOrder=%d\n", i, infoPtr->order[i], infoPtr->items[i].iOrder, infoPtr->items[infoPtr->order[i]].iOrder);
803         Free (oldItems);
804     }
805
806     HEADER_SetItemBounds (hwnd);
807
808     InvalidateRect(hwnd, NULL, FALSE);
809
810     return TRUE;
811 }
812
813
814 static LRESULT
815 HEADER_GetImageList (HWND hwnd)
816 {
817     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
818
819     return (LRESULT)infoPtr->himl;
820 }
821
822
823 static LRESULT
824 HEADER_GetItemT (HWND hwnd, INT nItem, LPHDITEMW phdi, BOOL bUnicode)
825 {
826     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
827     HEADER_ITEM *lpItem;
828
829     if (!phdi)
830         return FALSE;
831
832     TRACE("[nItem=%d]\n", nItem);
833
834     if (phdi->mask == 0)
835         return TRUE;
836     if ((nItem < 0) || (nItem >= (INT)infoPtr->uNumItem))
837         return FALSE;
838
839     lpItem = &infoPtr->items[nItem];
840
841     if (phdi->mask & HDI_BITMAP)
842         phdi->hbm = (lpItem != NULL) ? lpItem->hbm : 0;
843
844     if (phdi->mask & HDI_FORMAT)
845         phdi->fmt = (lpItem != NULL) ? lpItem->fmt : 0;
846
847     if (phdi->mask & HDI_WIDTH)
848         phdi->cxy = (lpItem != NULL) ? lpItem->cxy : 0;
849
850     if (phdi->mask & HDI_LPARAM)
851         phdi->lParam = (lpItem != NULL) ? lpItem->lParam : 0;
852
853     if (phdi->mask & HDI_IMAGE) 
854     {
855         phdi->iImage = (lpItem != NULL) ? lpItem->iImage : 0;
856         if (lpItem->iImage == I_IMAGECALLBACK) 
857         {
858             HEADER_SendHeaderDispInfoNotify(hwnd, nItem, HDI_IMAGE, phdi, lpItem, bUnicode);
859         }
860     }
861
862     if (phdi->mask & HDI_ORDER)
863         phdi->iOrder = (lpItem != NULL) ? lpItem->iOrder : 0;
864
865     if (phdi->mask & HDI_TEXT)
866     {
867         if (lpItem == NULL) *phdi->pszText = 0;  /* null pointer check */
868         else if (lpItem->pszText == LPSTR_TEXTCALLBACKW) /* covers == TEXTCALLBACKA too */
869         {
870             HEADER_SendHeaderDispInfoNotify(hwnd, nItem, HDI_TEXT, phdi, lpItem, bUnicode);
871         }
872         else
873         {
874             if (bUnicode)
875                 Str_GetPtrW (lpItem->pszText, phdi->pszText, phdi->cchTextMax);
876             else
877                 Str_GetPtrWtoA (lpItem->pszText, (LPSTR)phdi->pszText, phdi->cchTextMax);
878         }
879     }
880
881     return TRUE;
882 }
883
884
885 inline static LRESULT
886 HEADER_GetItemCount (HWND hwnd)
887 {
888     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
889     return infoPtr->uNumItem;
890 }
891
892
893 static LRESULT
894 HEADER_GetItemRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
895 {
896     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
897     INT iItem = (INT)wParam;
898     LPRECT lpRect = (LPRECT)lParam;
899
900     if ((iItem < 0) || (iItem >= (INT)infoPtr->uNumItem))
901         return FALSE;
902
903     lpRect->left   = infoPtr->items[iItem].rect.left;
904     lpRect->right  = infoPtr->items[iItem].rect.right;
905     lpRect->top    = infoPtr->items[iItem].rect.top;
906     lpRect->bottom = infoPtr->items[iItem].rect.bottom;
907
908     return TRUE;
909 }
910
911
912 static LRESULT
913 HEADER_GetOrderArray(HWND hwnd, WPARAM wParam, LPARAM lParam)
914 {
915     LPINT order = (LPINT) lParam;
916     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
917
918     if ((unsigned int)wParam <infoPtr->uNumItem)
919       return FALSE;
920
921     memcpy(order, infoPtr->order, infoPtr->uNumItem * sizeof(INT));
922     return TRUE;
923 }
924
925 static LRESULT
926 HEADER_SetOrderArray(HWND hwnd, WPARAM wParam, LPARAM lParam)
927 {
928     int i;
929     LPINT order = (LPINT) lParam;
930     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
931     HEADER_ITEM *lpItem;
932
933     if ((unsigned int)wParam <infoPtr->uNumItem)
934       return FALSE;
935     memcpy(infoPtr->order, order, infoPtr->uNumItem * sizeof(INT));
936     for (i=0; i<(int)wParam; i++)
937       {
938         lpItem = &infoPtr->items[*order++];
939         lpItem->iOrder=i;
940       }
941     infoPtr->bRectsValid=0;
942     InvalidateRect(hwnd, NULL, FALSE);
943     return TRUE;
944 }
945
946 inline static LRESULT
947 HEADER_GetUnicodeFormat (HWND hwnd)
948 {
949     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
950     return infoPtr->bUnicode;
951 }
952
953
954 static LRESULT
955 HEADER_HitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
956 {
957     LPHDHITTESTINFO phti = (LPHDHITTESTINFO)lParam;
958
959     HEADER_InternalHitTest (hwnd, &phti->pt, &phti->flags, &phti->iItem);
960
961     if (phti->flags == HHT_NOWHERE)
962         return -1;
963     else
964         return phti->iItem;
965 }
966
967
968 static LRESULT
969 HEADER_InsertItemT (HWND hwnd, INT nItem, LPHDITEMW phdi, BOOL bUnicode)
970 {
971     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
972     HEADER_ITEM *lpItem;
973     INT       iOrder;
974     UINT      i;
975
976     if ((phdi == NULL) || (nItem < 0))
977         return -1;
978
979     if (nItem > infoPtr->uNumItem)
980         nItem = infoPtr->uNumItem;
981
982     iOrder = (phdi->mask & HDI_ORDER) ? phdi->iOrder : nItem;
983     if (iOrder < 0)
984         iOrder = 0;
985     else if (infoPtr->uNumItem < iOrder)
986         iOrder = infoPtr->uNumItem;
987
988     if (infoPtr->uNumItem == 0) {
989         infoPtr->items = Alloc (sizeof (HEADER_ITEM));
990         infoPtr->order = Alloc(sizeof(INT));
991         infoPtr->uNumItem++;
992     }
993     else {
994         HEADER_ITEM *oldItems = infoPtr->items;
995         INT *oldOrder = infoPtr->order;
996
997         infoPtr->uNumItem++;
998         infoPtr->items = Alloc (sizeof (HEADER_ITEM) * infoPtr->uNumItem);
999         if (nItem == 0) {
1000             memcpy (&infoPtr->items[1], &oldItems[0],
1001                     (infoPtr->uNumItem-1) * sizeof(HEADER_ITEM));
1002         }
1003         else
1004         {
1005               /* pre insert copy */
1006             if (nItem > 0) {
1007                  memcpy (&infoPtr->items[0], &oldItems[0],
1008                          nItem * sizeof(HEADER_ITEM));
1009             }
1010
1011             /* post insert copy */
1012             if (nItem < infoPtr->uNumItem - 1) {
1013                 memcpy (&infoPtr->items[nItem+1], &oldItems[nItem],
1014                         (infoPtr->uNumItem - nItem - 1) * sizeof(HEADER_ITEM));
1015             }
1016         }
1017
1018         infoPtr->order = Alloc(sizeof(INT) * infoPtr->uNumItem);
1019         memcpy(infoPtr->order, oldOrder, iOrder * sizeof(INT));
1020         infoPtr->order[iOrder] = nItem;
1021         memcpy(&infoPtr->order[iOrder + 1], &oldOrder[iOrder],
1022                (infoPtr->uNumItem - iOrder - 1) * sizeof(INT));
1023
1024         Free (oldItems);
1025         Free(oldOrder);
1026     }
1027
1028     for (i = 0; i < infoPtr->uNumItem; i++)
1029     {
1030         if (i != iOrder && infoPtr->order[i] >= nItem)
1031             infoPtr->order[i]++;
1032         infoPtr->items[infoPtr->order[i]].iOrder = infoPtr->order[i];
1033     }
1034
1035     lpItem = &infoPtr->items[nItem];
1036     lpItem->bDown = FALSE;
1037
1038     if (phdi->mask & HDI_WIDTH)
1039         lpItem->cxy = phdi->cxy;
1040
1041     if (phdi->mask & HDI_FORMAT)
1042         lpItem->fmt = phdi->fmt;
1043
1044     if (lpItem->fmt == 0)
1045         lpItem->fmt = HDF_LEFT;
1046
1047     if (phdi->mask & HDI_BITMAP)
1048         lpItem->hbm = phdi->hbm;
1049
1050     if (phdi->mask & HDI_LPARAM)
1051         lpItem->lParam = phdi->lParam;
1052
1053     if (phdi->mask & HDI_IMAGE) 
1054     {
1055         if (phdi->iImage != I_IMAGECALLBACK) 
1056         {
1057             lpItem->iImage = phdi->iImage;
1058         } 
1059         else 
1060         {
1061             lpItem->iImage = phdi->iImage;
1062             HEADER_SendHeaderDispInfoNotify(hwnd, nItem, HDI_IMAGE, NULL, lpItem, bUnicode);
1063         }
1064     }
1065
1066     if (phdi->mask & HDI_TEXT)
1067     {
1068         if (!phdi->pszText) phdi->pszText = '\0'; /* null pointer check */
1069         if (phdi->pszText != LPSTR_TEXTCALLBACKW) /* covers != TEXTCALLBACKA too */
1070         {
1071             if (bUnicode)
1072                 Str_SetPtrW(&lpItem->pszText, phdi->pszText);
1073             else
1074                 Str_SetPtrAtoW(&lpItem->pszText, (LPSTR)phdi->pszText);
1075         }
1076         else 
1077         {
1078             lpItem->pszText = phdi->pszText;
1079             HEADER_SendHeaderDispInfoNotify(hwnd, nItem, HDI_TEXT, NULL, lpItem, bUnicode);
1080         }
1081         lpItem->fmt |= HDF_STRING;
1082     }
1083
1084     lpItem->iOrder = iOrder;
1085
1086     HEADER_SetItemBounds (hwnd);
1087
1088     InvalidateRect(hwnd, NULL, FALSE);
1089
1090     return nItem;
1091 }
1092
1093
1094 static LRESULT
1095 HEADER_Layout (HWND hwnd, WPARAM wParam, LPARAM lParam)
1096 {
1097     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1098     LPHDLAYOUT lpLayout = (LPHDLAYOUT)lParam;
1099
1100     lpLayout->pwpos->hwnd = hwnd;
1101     lpLayout->pwpos->hwndInsertAfter = 0;
1102     lpLayout->pwpos->x = lpLayout->prc->left;
1103     lpLayout->pwpos->y = lpLayout->prc->top;
1104     lpLayout->pwpos->cx = lpLayout->prc->right - lpLayout->prc->left;
1105     if (GetWindowLongW (hwnd, GWL_STYLE) & HDS_HIDDEN)
1106         lpLayout->pwpos->cy = 0;
1107     else {
1108         lpLayout->pwpos->cy = infoPtr->nHeight;
1109         lpLayout->prc->top += infoPtr->nHeight;
1110     }
1111     lpLayout->pwpos->flags = SWP_NOZORDER;
1112
1113     TRACE("Layout x=%d y=%d cx=%d cy=%d\n",
1114            lpLayout->pwpos->x, lpLayout->pwpos->y,
1115            lpLayout->pwpos->cx, lpLayout->pwpos->cy);
1116
1117     infoPtr->bRectsValid = FALSE;
1118
1119     return TRUE;
1120 }
1121
1122
1123 static LRESULT
1124 HEADER_SetImageList (HWND hwnd, HIMAGELIST himl)
1125 {
1126     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1127     HIMAGELIST himlOld;
1128
1129     TRACE("(himl %p)\n", himl);
1130     himlOld = infoPtr->himl;
1131     infoPtr->himl = himl;
1132
1133     /* FIXME: Refresh needed??? */
1134
1135     return (LRESULT)himlOld;
1136 }
1137
1138
1139 static LRESULT
1140 HEADER_GetBitmapMargin(HWND hwnd)
1141 {
1142     HEADER_INFO *infoPtr = HEADER_GetInfoPtr(hwnd);
1143     
1144     return infoPtr->iMargin;
1145 }
1146
1147 static LRESULT
1148 HEADER_SetBitmapMargin(HWND hwnd, WPARAM wParam)
1149 {
1150     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1151     INT oldMargin = infoPtr->iMargin;
1152
1153     infoPtr->iMargin = (INT)wParam;
1154
1155     return oldMargin;
1156 }
1157
1158 static LRESULT
1159 HEADER_SetItemT (HWND hwnd, INT nItem, LPHDITEMW phdi, BOOL bUnicode)
1160 {
1161     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1162     HEADER_ITEM *lpItem;
1163
1164     if (phdi == NULL)
1165         return FALSE;
1166     if ((nItem < 0) || (nItem >= (INT)infoPtr->uNumItem))
1167         return FALSE;
1168
1169     TRACE("[nItem=%d]\n", nItem);
1170
1171     if (HEADER_SendHeaderNotifyT (hwnd, HDN_ITEMCHANGINGW, nItem, phdi->mask))
1172         return FALSE;
1173
1174     lpItem = &infoPtr->items[nItem];
1175     if (phdi->mask & HDI_BITMAP)
1176         lpItem->hbm = phdi->hbm;
1177
1178     if (phdi->mask & HDI_FORMAT)
1179         lpItem->fmt = phdi->fmt;
1180
1181     if (phdi->mask & HDI_LPARAM)
1182         lpItem->lParam = phdi->lParam;
1183
1184     if (phdi->mask & HDI_WIDTH)
1185         lpItem->cxy = phdi->cxy;
1186
1187     if (phdi->mask & HDI_IMAGE) 
1188     {
1189         if (phdi->iImage != I_IMAGECALLBACK) 
1190         {
1191             lpItem->iImage = phdi->iImage;
1192         } 
1193         else 
1194         {
1195             lpItem->iImage = phdi->iImage;
1196             HEADER_SendHeaderDispInfoNotify(hwnd, nItem, HDI_IMAGE, NULL, lpItem, bUnicode);
1197         }
1198     }
1199
1200     if (phdi->mask & HDI_TEXT)
1201     {
1202         if (phdi->pszText != LPSTR_TEXTCALLBACKW) /* covers != TEXTCALLBACKA too */
1203         {
1204             if (lpItem->pszText)
1205             {
1206                 Free(lpItem->pszText);
1207                 lpItem->pszText = NULL;
1208             }
1209             if (phdi->pszText)
1210             {
1211                 if (bUnicode)
1212                     Str_SetPtrW(&lpItem->pszText, phdi->pszText);
1213                 else
1214                     Str_SetPtrAtoW(&lpItem->pszText, (LPSTR)phdi->pszText);
1215             }
1216         }
1217         else 
1218         {
1219             lpItem->pszText = phdi->pszText;
1220             HEADER_SendHeaderDispInfoNotify(hwnd, nItem, HDI_TEXT, NULL, lpItem, bUnicode);
1221         }  
1222     }
1223
1224     if (phdi->mask & HDI_ORDER)
1225       {
1226         INT i, nMin, nMax;
1227         
1228         if (lpItem->iOrder < phdi->iOrder)
1229         {
1230             memmove(&infoPtr->order[lpItem->iOrder],
1231                    &infoPtr->order[lpItem->iOrder + 1],
1232                    (phdi->iOrder - lpItem->iOrder) * sizeof(INT));
1233         }
1234         if (phdi->iOrder < lpItem->iOrder)
1235         {
1236             memmove(&infoPtr->order[phdi->iOrder + 1],
1237                     &infoPtr->order[phdi->iOrder],
1238                     (lpItem->iOrder - phdi->iOrder) * sizeof(INT));
1239         }
1240         infoPtr->order[phdi->iOrder] = nItem;
1241         nMin = min(lpItem->iOrder, phdi->iOrder);
1242         nMax = max(lpItem->iOrder, phdi->iOrder);
1243         for (i = nMin; i <= nMax; i++)
1244         {
1245             infoPtr->items[infoPtr->order[i]].iOrder = infoPtr->order[i];
1246         }
1247       }
1248
1249     HEADER_SendHeaderNotifyT (hwnd, HDN_ITEMCHANGEDW, nItem, phdi->mask);
1250
1251     HEADER_SetItemBounds (hwnd);
1252
1253     InvalidateRect(hwnd, NULL, FALSE);
1254
1255     return TRUE;
1256 }
1257
1258 inline static LRESULT
1259 HEADER_SetUnicodeFormat (HWND hwnd, WPARAM wParam)
1260 {
1261     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1262     BOOL bTemp = infoPtr->bUnicode;
1263
1264     infoPtr->bUnicode = (BOOL)wParam;
1265
1266     return bTemp;
1267 }
1268
1269
1270 static LRESULT
1271 HEADER_Create (HWND hwnd, WPARAM wParam, LPARAM lParam)
1272 {
1273     HEADER_INFO *infoPtr;
1274     TEXTMETRICW tm;
1275     HFONT hOldFont;
1276     HDC   hdc;
1277
1278     infoPtr = (HEADER_INFO *)Alloc (sizeof(HEADER_INFO));
1279     SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
1280
1281     infoPtr->hwndNotify = ((LPCREATESTRUCTA)lParam)->hwndParent;
1282     infoPtr->uNumItem = 0;
1283     infoPtr->hFont = 0;
1284     infoPtr->items = 0;
1285     infoPtr->order = 0;
1286     infoPtr->bRectsValid = FALSE;
1287     infoPtr->hcurArrow = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1288     infoPtr->hcurDivider = LoadCursorW (COMCTL32_hModule, MAKEINTRESOURCEW(IDC_DIVIDER));
1289     infoPtr->hcurDivopen = LoadCursorW (COMCTL32_hModule, MAKEINTRESOURCEW(IDC_DIVIDEROPEN));
1290     infoPtr->bPressed  = FALSE;
1291     infoPtr->bTracking = FALSE;
1292     infoPtr->iMoveItem = 0;
1293     infoPtr->himl = 0;
1294     infoPtr->iHotItem = -1;
1295     infoPtr->bUnicode = IsWindowUnicode (hwnd);
1296     infoPtr->iMargin = 3*GetSystemMetrics(SM_CXEDGE);
1297     infoPtr->nNotifyFormat =
1298         SendMessageW (infoPtr->hwndNotify, WM_NOTIFYFORMAT, (WPARAM)hwnd, NF_QUERY);
1299
1300     hdc = GetDC (0);
1301     hOldFont = SelectObject (hdc, GetStockObject (SYSTEM_FONT));
1302     GetTextMetricsW (hdc, &tm);
1303     infoPtr->nHeight = tm.tmHeight + VERT_BORDER;
1304     SelectObject (hdc, hOldFont);
1305     ReleaseDC (0, hdc);
1306
1307     OpenThemeData(hwnd, themeClass);
1308
1309     return 0;
1310 }
1311
1312
1313 static LRESULT
1314 HEADER_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
1315 {
1316     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1317     HEADER_ITEM *lpItem;
1318     INT nItem;
1319     HTHEME theme;
1320
1321     if (infoPtr->items) {
1322         lpItem = infoPtr->items;
1323         for (nItem = 0; nItem < infoPtr->uNumItem; nItem++, lpItem++) {
1324             if ((lpItem->pszText) && (lpItem->pszText != LPSTR_TEXTCALLBACKW))
1325                 Free (lpItem->pszText);
1326         }
1327         Free (infoPtr->items);
1328     }
1329
1330     if (infoPtr->order)
1331         Free(infoPtr->order);
1332
1333     if (infoPtr->himl)
1334         ImageList_Destroy (infoPtr->himl);
1335
1336     SetWindowLongPtrW (hwnd, 0, 0);
1337     Free (infoPtr);
1338
1339     theme = GetWindowTheme(hwnd);
1340     CloseThemeData(theme);
1341     return 0;
1342 }
1343
1344
1345 static inline LRESULT
1346 HEADER_GetFont (HWND hwnd)
1347 {
1348     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1349
1350     return (LRESULT)infoPtr->hFont;
1351 }
1352
1353
1354 static LRESULT
1355 HEADER_LButtonDblClk (HWND hwnd, WPARAM wParam, LPARAM lParam)
1356 {
1357     POINT pt;
1358     UINT  flags;
1359     INT   nItem;
1360
1361     pt.x = (INT)LOWORD(lParam);
1362     pt.y = (INT)HIWORD(lParam);
1363     HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1364
1365     if ((GetWindowLongW (hwnd, GWL_STYLE) & HDS_BUTTONS) && (flags == HHT_ONHEADER))
1366         HEADER_SendHeaderNotifyT (hwnd, HDN_ITEMDBLCLICKW, nItem,0);
1367     else if ((flags == HHT_ONDIVIDER) || (flags == HHT_ONDIVOPEN))
1368         HEADER_SendHeaderNotifyT (hwnd, HDN_DIVIDERDBLCLICKW, nItem,0);
1369
1370     return 0;
1371 }
1372
1373
1374 static LRESULT
1375 HEADER_LButtonDown (HWND hwnd, WPARAM wParam, LPARAM lParam)
1376 {
1377     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1378     DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1379     POINT pt;
1380     UINT  flags;
1381     INT   nItem;
1382     HDC   hdc;
1383
1384     pt.x = (INT)LOWORD(lParam);
1385     pt.y = (INT)HIWORD(lParam);
1386     HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1387
1388     if ((dwStyle & HDS_BUTTONS) && (flags == HHT_ONHEADER)) {
1389         SetCapture (hwnd);
1390         infoPtr->bCaptured = TRUE;
1391         infoPtr->bPressed  = TRUE;
1392         infoPtr->iMoveItem = nItem;
1393
1394         infoPtr->items[nItem].bDown = TRUE;
1395
1396         /* Send WM_CUSTOMDRAW */
1397         hdc = GetDC (hwnd);
1398         HEADER_RefreshItem (hwnd, hdc, nItem);
1399         ReleaseDC (hwnd, hdc);
1400
1401         TRACE("Pressed item %d!\n", nItem);
1402     }
1403     else if ((flags == HHT_ONDIVIDER) || (flags == HHT_ONDIVOPEN)) {
1404         if (!(HEADER_SendHeaderNotifyT (hwnd, HDN_BEGINTRACKW, nItem,0))) {
1405             SetCapture (hwnd);
1406             infoPtr->bCaptured = TRUE;
1407             infoPtr->bTracking = TRUE;
1408             infoPtr->iMoveItem = nItem;
1409             infoPtr->nOldWidth = infoPtr->items[nItem].cxy;
1410             infoPtr->xTrackOffset = infoPtr->items[nItem].rect.right - pt.x;
1411
1412             if (!(dwStyle & HDS_FULLDRAG)) {
1413                 infoPtr->xOldTrack = infoPtr->items[nItem].rect.right;
1414                 hdc = GetDC (hwnd);
1415                 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1416                 ReleaseDC (hwnd, hdc);
1417             }
1418
1419             TRACE("Begin tracking item %d!\n", nItem);
1420         }
1421     }
1422
1423     return 0;
1424 }
1425
1426
1427 static LRESULT
1428 HEADER_LButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
1429 {
1430     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1431     DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1432     POINT pt;
1433     UINT  flags;
1434     INT   nItem, nWidth;
1435     HDC   hdc;
1436
1437     pt.x = (INT)(SHORT)LOWORD(lParam);
1438     pt.y = (INT)(SHORT)HIWORD(lParam);
1439     HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1440
1441     if (infoPtr->bPressed) {
1442         if ((nItem == infoPtr->iMoveItem) && (flags == HHT_ONHEADER)) {
1443             infoPtr->items[infoPtr->iMoveItem].bDown = FALSE;
1444             hdc = GetDC (hwnd);
1445             HEADER_RefreshItem (hwnd, hdc, infoPtr->iMoveItem);
1446             ReleaseDC (hwnd, hdc);
1447
1448             HEADER_SendClickNotify (hwnd, HDN_ITEMCLICKA, infoPtr->iMoveItem);
1449         }
1450         else if (flags == HHT_ONHEADER)
1451           {
1452             HEADER_ITEM *lpItem;
1453             INT newindex = HEADER_IndexToOrder(hwnd,nItem);
1454             INT oldindex = HEADER_IndexToOrder(hwnd,infoPtr->iMoveItem);
1455
1456             TRACE("Exchanging [index:order] [%d:%d] [%d:%d]\n",
1457                   infoPtr->iMoveItem,oldindex,nItem,newindex);
1458             lpItem= &infoPtr->items[nItem];
1459             lpItem->iOrder=oldindex;
1460
1461             lpItem= &infoPtr->items[infoPtr->iMoveItem];
1462             lpItem->iOrder = newindex;
1463
1464             infoPtr->order[oldindex] = nItem;
1465             infoPtr->order[newindex] = infoPtr->iMoveItem;
1466
1467             infoPtr->bRectsValid = FALSE;
1468             InvalidateRect(hwnd, NULL, FALSE);
1469             /* FIXME: Should some WM_NOTIFY be sent */
1470           }
1471
1472         TRACE("Released item %d!\n", infoPtr->iMoveItem);
1473         infoPtr->bPressed = FALSE;
1474     }
1475     else if (infoPtr->bTracking) {
1476         TRACE("End tracking item %d!\n", infoPtr->iMoveItem);
1477         infoPtr->bTracking = FALSE;
1478
1479         HEADER_SendHeaderNotifyT (hwnd, HDN_ENDTRACKW, infoPtr->iMoveItem,HDI_WIDTH);
1480
1481         if (!(dwStyle & HDS_FULLDRAG)) {
1482             hdc = GetDC (hwnd);
1483             HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1484             ReleaseDC (hwnd, hdc);
1485         }
1486           
1487         if (HEADER_SendHeaderNotifyT(hwnd, HDN_ITEMCHANGINGW, infoPtr->iMoveItem, HDI_WIDTH))
1488         {
1489             infoPtr->items[infoPtr->iMoveItem].cxy = infoPtr->nOldWidth;
1490         }
1491         else {
1492             nWidth = pt.x - infoPtr->items[infoPtr->iMoveItem].rect.left + infoPtr->xTrackOffset;
1493             if (nWidth < 0)
1494                 nWidth = 0;
1495             infoPtr->items[infoPtr->iMoveItem].cxy = nWidth;
1496         }
1497
1498         HEADER_SetItemBounds (hwnd);
1499         InvalidateRect(hwnd, NULL, TRUE);
1500         HEADER_SendHeaderNotifyT(hwnd, HDN_ITEMCHANGEDW, infoPtr->iMoveItem, HDI_WIDTH);
1501     }
1502
1503     if (infoPtr->bCaptured) {
1504         infoPtr->bCaptured = FALSE;
1505         ReleaseCapture ();
1506         HEADER_SendSimpleNotify (hwnd, NM_RELEASEDCAPTURE);
1507     }
1508
1509     return 0;
1510 }
1511
1512
1513 static LRESULT
1514 HEADER_NotifyFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
1515 {
1516     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1517
1518     switch (lParam)
1519     {
1520         case NF_QUERY:
1521             return infoPtr->nNotifyFormat;
1522
1523         case NF_REQUERY:
1524             infoPtr->nNotifyFormat =
1525                 SendMessageW ((HWND)wParam, WM_NOTIFYFORMAT,
1526                               (WPARAM)hwnd, (LPARAM)NF_QUERY);
1527             return infoPtr->nNotifyFormat;
1528     }
1529
1530     return 0;
1531 }
1532
1533
1534 static LRESULT
1535 HEADER_MouseLeave (HWND hwnd, WPARAM wParam, LPARAM lParam)
1536 {
1537     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1538     /* Reset hot-tracked item when mouse leaves control. */
1539     INT oldHotItem = infoPtr->iHotItem;
1540     HDC hdc = GetDC (hwnd);
1541
1542     infoPtr->iHotItem = -1;
1543     if (oldHotItem != -1) HEADER_RefreshItem (hwnd, hdc, oldHotItem);
1544     ReleaseDC (hwnd, hdc);
1545
1546     return 0;
1547 }
1548
1549
1550 static LRESULT
1551 HEADER_MouseMove (HWND hwnd, WPARAM wParam, LPARAM lParam)
1552 {
1553     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1554     DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1555     POINT pt;
1556     UINT  flags;
1557     INT   nItem, nWidth;
1558     HDC   hdc;
1559     /* With theming, hottracking is always enabled */
1560     BOOL  hotTrackEnabled =
1561         ((dwStyle & HDS_BUTTONS) && (dwStyle & HDS_HOTTRACK))
1562         || (GetWindowTheme (hwnd) != NULL);
1563     INT oldHotItem = infoPtr->iHotItem;
1564
1565     pt.x = (INT)(SHORT)LOWORD(lParam);
1566     pt.y = (INT)(SHORT)HIWORD(lParam);
1567     HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1568
1569     if (hotTrackEnabled) {
1570         if (flags & (HHT_ONHEADER | HHT_ONDIVIDER | HHT_ONDIVOPEN))
1571             infoPtr->iHotItem = nItem;
1572         else
1573             infoPtr->iHotItem = -1;
1574     }
1575
1576     if (infoPtr->bCaptured) {
1577         if (infoPtr->bPressed) {
1578             BOOL oldState = infoPtr->items[infoPtr->iMoveItem].bDown;
1579             if ((nItem == infoPtr->iMoveItem) && (flags == HHT_ONHEADER))
1580                 infoPtr->items[infoPtr->iMoveItem].bDown = TRUE;
1581             else
1582                 infoPtr->items[infoPtr->iMoveItem].bDown = FALSE;
1583             if (oldState != infoPtr->items[infoPtr->iMoveItem].bDown) {
1584                 hdc = GetDC (hwnd);
1585                 HEADER_RefreshItem (hwnd, hdc, infoPtr->iMoveItem);
1586                 ReleaseDC (hwnd, hdc);
1587             }
1588
1589             TRACE("Moving pressed item %d!\n", infoPtr->iMoveItem);
1590         }
1591         else if (infoPtr->bTracking) {
1592             if (dwStyle & HDS_FULLDRAG) {
1593                 if (!HEADER_SendHeaderNotifyT (hwnd, HDN_ITEMCHANGINGW, infoPtr->iMoveItem, HDI_WIDTH))
1594                 {
1595                 nWidth = pt.x - infoPtr->items[infoPtr->iMoveItem].rect.left + infoPtr->xTrackOffset;
1596                 if (nWidth < 0)
1597                   nWidth = 0;
1598                 infoPtr->items[infoPtr->iMoveItem].cxy = nWidth;
1599                         HEADER_SendHeaderNotifyT(hwnd, HDN_ITEMCHANGEDW, infoPtr->iMoveItem, HDI_WIDTH);
1600                 }
1601                 HEADER_SetItemBounds (hwnd);
1602                 InvalidateRect(hwnd, NULL, FALSE);
1603             }
1604             else {
1605                 hdc = GetDC (hwnd);
1606                 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1607                 infoPtr->xOldTrack = pt.x + infoPtr->xTrackOffset;
1608                 if (infoPtr->xOldTrack < infoPtr->items[infoPtr->iMoveItem].rect.left)
1609                     infoPtr->xOldTrack = infoPtr->items[infoPtr->iMoveItem].rect.left;
1610                 infoPtr->items[infoPtr->iMoveItem].cxy =
1611                     infoPtr->xOldTrack - infoPtr->items[infoPtr->iMoveItem].rect.left;
1612                 HEADER_DrawTrackLine (hwnd, hdc, infoPtr->xOldTrack);
1613                 ReleaseDC (hwnd, hdc);
1614                 HEADER_SendHeaderNotifyT (hwnd, HDN_TRACKW, infoPtr->iMoveItem, HDI_WIDTH);
1615             }
1616
1617             TRACE("Tracking item %d!\n", infoPtr->iMoveItem);
1618         }
1619     }
1620
1621     if (hotTrackEnabled) {
1622         TRACKMOUSEEVENT tme;
1623         if (oldHotItem != infoPtr->iHotItem) {
1624             hdc = GetDC (hwnd);
1625             if (oldHotItem != -1) HEADER_RefreshItem (hwnd, hdc, oldHotItem);
1626             if (infoPtr->iHotItem != -1) HEADER_RefreshItem (hwnd, hdc, infoPtr->iHotItem);
1627             ReleaseDC (hwnd, hdc);
1628         }
1629         tme.cbSize = sizeof( tme );
1630         tme.dwFlags = TME_LEAVE;
1631         tme.hwndTrack = hwnd;
1632         TrackMouseEvent( &tme );
1633     }
1634
1635     return 0;
1636 }
1637
1638
1639 static LRESULT
1640 HEADER_Paint (HWND hwnd, WPARAM wParam)
1641 {
1642     HDC hdc;
1643     PAINTSTRUCT ps;
1644
1645     hdc = wParam==0 ? BeginPaint (hwnd, &ps) : (HDC)wParam;
1646     HEADER_Refresh (hwnd, hdc);
1647     if(!wParam)
1648         EndPaint (hwnd, &ps);
1649     return 0;
1650 }
1651
1652
1653 static LRESULT
1654 HEADER_RButtonUp (HWND hwnd, WPARAM wParam, LPARAM lParam)
1655 {
1656     BOOL bRet;
1657     POINT pt;
1658
1659     pt.x = LOWORD(lParam);
1660     pt.y = HIWORD(lParam);
1661
1662     /* Send a Notify message */
1663     bRet = HEADER_SendSimpleNotify (hwnd, NM_RCLICK);
1664
1665     /* Change to screen coordinate for WM_CONTEXTMENU */
1666     ClientToScreen(hwnd, &pt);
1667
1668     /* Send a WM_CONTEXTMENU message in response to the RBUTTONUP */
1669     SendMessageW( hwnd, WM_CONTEXTMENU, (WPARAM) hwnd, MAKELPARAM(pt.x, pt.y));
1670
1671     return bRet;
1672 }
1673
1674
1675 static LRESULT
1676 HEADER_SetCursor (HWND hwnd, WPARAM wParam, LPARAM lParam)
1677 {
1678     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1679     POINT pt;
1680     UINT  flags;
1681     INT   nItem;
1682
1683     TRACE("code=0x%X  id=0x%X\n", LOWORD(lParam), HIWORD(lParam));
1684
1685     GetCursorPos (&pt);
1686     ScreenToClient (hwnd, &pt);
1687
1688     HEADER_InternalHitTest (hwnd, &pt, &flags, &nItem);
1689
1690     if (flags == HHT_ONDIVIDER)
1691         SetCursor (infoPtr->hcurDivider);
1692     else if (flags == HHT_ONDIVOPEN)
1693         SetCursor (infoPtr->hcurDivopen);
1694     else
1695         SetCursor (infoPtr->hcurArrow);
1696
1697     return 0;
1698 }
1699
1700
1701 static LRESULT
1702 HEADER_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
1703 {
1704     HEADER_INFO *infoPtr = HEADER_GetInfoPtr (hwnd);
1705     TEXTMETRICW tm;
1706     HFONT hFont, hOldFont;
1707     HDC hdc;
1708
1709     infoPtr->hFont = (HFONT)wParam;
1710
1711     hFont = infoPtr->hFont ? infoPtr->hFont : GetStockObject (SYSTEM_FONT);
1712
1713     hdc = GetDC (0);
1714     hOldFont = SelectObject (hdc, hFont);
1715     GetTextMetricsW (hdc, &tm);
1716     infoPtr->nHeight = tm.tmHeight + VERT_BORDER;
1717     SelectObject (hdc, hOldFont);
1718     ReleaseDC (0, hdc);
1719
1720     infoPtr->bRectsValid = FALSE;
1721
1722     if (lParam) {
1723         InvalidateRect(hwnd, NULL, FALSE);
1724     }
1725
1726     return 0;
1727 }
1728
1729 /* Update the theme handle after a theme change */
1730 static LRESULT HEADER_ThemeChanged(HWND hwnd)
1731 {
1732     HTHEME theme = GetWindowTheme(hwnd);
1733     CloseThemeData(theme);
1734     OpenThemeData(hwnd, themeClass);
1735     InvalidateRect(hwnd, NULL, FALSE);
1736     return 0;
1737 }
1738
1739
1740 static LRESULT WINAPI
1741 HEADER_WindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
1742 {
1743     TRACE("hwnd=%p msg=%x wparam=%x lParam=%lx\n", hwnd, msg, wParam, lParam);
1744     if (!HEADER_GetInfoPtr (hwnd) && (msg != WM_CREATE))
1745         return DefWindowProcW (hwnd, msg, wParam, lParam);
1746     switch (msg) {
1747 /*      case HDM_CLEARFILTER: */
1748
1749         case HDM_CREATEDRAGIMAGE:
1750             return HEADER_CreateDragImage (hwnd, wParam);
1751
1752         case HDM_DELETEITEM:
1753             return HEADER_DeleteItem (hwnd, wParam);
1754
1755 /*      case HDM_EDITFILTER: */
1756
1757         case HDM_GETBITMAPMARGIN:
1758             return HEADER_GetBitmapMargin(hwnd);
1759
1760         case HDM_GETIMAGELIST:
1761             return HEADER_GetImageList (hwnd);
1762
1763         case HDM_GETITEMA:
1764         case HDM_GETITEMW:
1765             return HEADER_GetItemT (hwnd, (INT)wParam, (LPHDITEMW)lParam, msg == HDM_GETITEMW);
1766
1767         case HDM_GETITEMCOUNT:
1768             return HEADER_GetItemCount (hwnd);
1769
1770         case HDM_GETITEMRECT:
1771             return HEADER_GetItemRect (hwnd, wParam, lParam);
1772
1773         case HDM_GETORDERARRAY:
1774             return HEADER_GetOrderArray(hwnd, wParam, lParam);
1775
1776         case HDM_GETUNICODEFORMAT:
1777             return HEADER_GetUnicodeFormat (hwnd);
1778
1779         case HDM_HITTEST:
1780             return HEADER_HitTest (hwnd, wParam, lParam);
1781
1782         case HDM_INSERTITEMA:
1783         case HDM_INSERTITEMW:
1784             return HEADER_InsertItemT (hwnd, (INT)wParam, (LPHDITEMW)lParam, msg == HDM_INSERTITEMW);
1785
1786         case HDM_LAYOUT:
1787             return HEADER_Layout (hwnd, wParam, lParam);
1788
1789         case HDM_ORDERTOINDEX:
1790             return HEADER_OrderToIndex(hwnd, wParam);
1791
1792         case HDM_SETBITMAPMARGIN:
1793             return HEADER_SetBitmapMargin(hwnd, wParam);
1794
1795 /*      case HDM_SETFILTERCHANGETIMEOUT: */
1796
1797 /*      case HDM_SETHOTDIVIDER: */
1798
1799         case HDM_SETIMAGELIST:
1800             return HEADER_SetImageList (hwnd, (HIMAGELIST)lParam);
1801
1802         case HDM_SETITEMA:
1803         case HDM_SETITEMW:
1804             return HEADER_SetItemT (hwnd, (INT)wParam, (LPHDITEMW)lParam, msg == HDM_SETITEMW);
1805
1806         case HDM_SETORDERARRAY:
1807             return HEADER_SetOrderArray(hwnd, wParam, lParam);
1808
1809         case HDM_SETUNICODEFORMAT:
1810             return HEADER_SetUnicodeFormat (hwnd, wParam);
1811
1812         case WM_CREATE:
1813             return HEADER_Create (hwnd, wParam, lParam);
1814
1815         case WM_DESTROY:
1816             return HEADER_Destroy (hwnd, wParam, lParam);
1817
1818         case WM_ERASEBKGND:
1819             return 1;
1820
1821         case WM_GETDLGCODE:
1822             return DLGC_WANTTAB | DLGC_WANTARROWS;
1823
1824         case WM_GETFONT:
1825             return HEADER_GetFont (hwnd);
1826
1827         case WM_LBUTTONDBLCLK:
1828             return HEADER_LButtonDblClk (hwnd, wParam, lParam);
1829
1830         case WM_LBUTTONDOWN:
1831             return HEADER_LButtonDown (hwnd, wParam, lParam);
1832
1833         case WM_LBUTTONUP:
1834             return HEADER_LButtonUp (hwnd, wParam, lParam);
1835
1836         case WM_MOUSELEAVE:
1837             return HEADER_MouseLeave (hwnd, wParam, lParam);
1838
1839         case WM_MOUSEMOVE:
1840             return HEADER_MouseMove (hwnd, wParam, lParam);
1841
1842         case WM_NOTIFYFORMAT:
1843             return HEADER_NotifyFormat (hwnd, wParam, lParam);
1844
1845         case WM_SIZE:
1846             return HEADER_Size (hwnd, wParam);
1847
1848         case WM_THEMECHANGED:
1849             return HEADER_ThemeChanged (hwnd);
1850
1851         case WM_PRINTCLIENT:
1852         case WM_PAINT:
1853             return HEADER_Paint (hwnd, wParam);
1854
1855         case WM_RBUTTONUP:
1856             return HEADER_RButtonUp (hwnd, wParam, lParam);
1857
1858         case WM_SETCURSOR:
1859             return HEADER_SetCursor (hwnd, wParam, lParam);
1860
1861         case WM_SETFONT:
1862             return HEADER_SetFont (hwnd, wParam, lParam);
1863
1864         default:
1865             if ((msg >= WM_USER) && (msg < WM_APP))
1866                 ERR("unknown msg %04x wp=%04x lp=%08lx\n",
1867                      msg, wParam, lParam );
1868             return DefWindowProcA (hwnd, msg, wParam, lParam);
1869     }
1870 }
1871
1872
1873 VOID
1874 HEADER_Register (void)
1875 {
1876     WNDCLASSW wndClass;
1877
1878     ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1879     wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS;
1880     wndClass.lpfnWndProc   = HEADER_WindowProc;
1881     wndClass.cbClsExtra    = 0;
1882     wndClass.cbWndExtra    = sizeof(HEADER_INFO *);
1883     wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1884     wndClass.lpszClassName = WC_HEADERW;
1885
1886     RegisterClassW (&wndClass);
1887 }
1888
1889
1890 VOID
1891 HEADER_Unregister (void)
1892 {
1893     UnregisterClassW (WC_HEADERW, NULL);
1894 }