comctl32: Remove unneeded casts.
[wine] / dlls / comctl32 / trackbar.c
1 /*
2  * Trackbar control
3  *
4  * Copyright 1998, 1999 Eric Kohl
5  * Copyright 1998, 1999 Alex Priem
6  * Copyright 2002 Dimitrie O. Paun
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  *
22  * NOTE
23  * 
24  * This code was audited for completeness against the documented features
25  * of Comctl32.dll version 6.0 on Sep. 12, 2002, by Dimitrie O. Paun.
26  * 
27  * Unless otherwise noted, we believe this code to be complete, as per
28  * the specification mentioned above.
29  * If you discover missing features, or bugs, please note them below.
30  * 
31  */
32
33 #include <stdarg.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37
38 #include "windef.h"
39 #include "winbase.h"
40 #include "wingdi.h"
41 #include "winuser.h"
42 #include "winnls.h"
43 #include "commctrl.h"
44 #include "uxtheme.h"
45 #include "tmschema.h"
46 #include "wine/debug.h"
47
48 #include "comctl32.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(trackbar);
51
52 typedef struct
53 {
54     HWND hwndSelf;
55     LONG lRangeMin;
56     LONG lRangeMax;
57     LONG lLineSize;
58     LONG lPageSize;
59     LONG lSelMin;
60     LONG lSelMax;
61     LONG lPos;
62     UINT uThumbLen;
63     UINT uNumTics;
64     UINT uTicFreq;
65     HWND hwndNotify;
66     HWND hwndToolTip;
67     HWND hwndBuddyLA;
68     HWND hwndBuddyRB;
69     INT  fLocation;
70     INT  flags;
71     BOOL bUnicode;
72     BOOL bFocussed;
73     RECT rcChannel;
74     RECT rcSelection;
75     RECT rcThumb;
76     LPLONG tics;
77 } TRACKBAR_INFO;
78
79 #define TB_REFRESH_TIMER        1
80 #define TB_REFRESH_DELAY        500
81
82 #define TOOLTIP_OFFSET          2     /* distance from ctrl edge to tooltip */
83
84 /* Used by TRACKBAR_Refresh to find out which parts of the control
85    need to be recalculated */
86
87 #define TB_THUMBPOSCHANGED      1
88 #define TB_THUMBSIZECHANGED     2
89 #define TB_THUMBCHANGED         (TB_THUMBPOSCHANGED | TB_THUMBSIZECHANGED)
90 #define TB_SELECTIONCHANGED     4
91 #define TB_DRAG_MODE            8     /* we're dragging the slider */
92 #define TB_AUTO_PAGE_LEFT       16
93 #define TB_AUTO_PAGE_RIGHT      32
94 #define TB_AUTO_PAGE            (TB_AUTO_PAGE_LEFT | TB_AUTO_PAGE_RIGHT)
95 #define TB_THUMB_HOT            64    /* mouse hovers above thumb */
96
97 /* helper defines for TRACKBAR_DrawTic */
98 #define TIC_EDGE                0x20
99 #define TIC_SELECTIONMARKMAX    0x80
100 #define TIC_SELECTIONMARKMIN    0x100
101 #define TIC_SELECTIONMARK       (TIC_SELECTIONMARKMAX | TIC_SELECTIONMARKMIN)
102
103 static const WCHAR themeClass[] = { 'T','r','a','c','k','b','a','r',0 };
104
105 static inline int 
106 notify_customdraw (const TRACKBAR_INFO *infoPtr, NMCUSTOMDRAW *pnmcd, int stage)
107 {
108     pnmcd->dwDrawStage = stage;
109     return SendMessageW (infoPtr->hwndNotify, WM_NOTIFY, 
110                          pnmcd->hdr.idFrom, (LPARAM)pnmcd);
111 }
112
113 static LRESULT notify_hdr (const TRACKBAR_INFO *infoPtr, INT code, LPNMHDR pnmh)
114 {
115     LRESULT result;
116     
117     TRACE("(code=%d)\n", code);
118
119     pnmh->hwndFrom = infoPtr->hwndSelf;
120     pnmh->idFrom = GetWindowLongPtrW(infoPtr->hwndSelf, GWLP_ID);
121     pnmh->code = code;
122     result = SendMessageW(infoPtr->hwndNotify, WM_NOTIFY, pnmh->idFrom, (LPARAM)pnmh);
123
124     TRACE("  <= %ld\n", result);
125
126     return result;
127 }
128
129 static inline int notify (const TRACKBAR_INFO *infoPtr, INT code)
130 {
131     NMHDR nmh;
132     return notify_hdr(infoPtr, code, &nmh);
133 }
134
135 static BOOL
136 notify_with_scroll (const TRACKBAR_INFO *infoPtr, UINT code)
137 {
138     BOOL bVert = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_VERT;
139
140     TRACE("%x\n", code);
141
142     return (BOOL) SendMessageW (infoPtr->hwndNotify,
143                                 bVert ? WM_VSCROLL : WM_HSCROLL,
144                                 (WPARAM)code, (LPARAM)infoPtr->hwndSelf);
145 }
146     
147 static void TRACKBAR_RecalculateTics (TRACKBAR_INFO *infoPtr)
148 {
149     int i, tic, nrTics;
150
151     if (infoPtr->uTicFreq && infoPtr->lRangeMax >= infoPtr->lRangeMin)
152         nrTics=(infoPtr->lRangeMax - infoPtr->lRangeMin)/infoPtr->uTicFreq;
153     else {
154         nrTics = 0;
155         Free (infoPtr->tics);
156         infoPtr->tics = NULL;
157         infoPtr->uNumTics = 0;
158         return;
159     }
160
161     if (nrTics != infoPtr->uNumTics) {
162         infoPtr->tics=ReAlloc (infoPtr->tics,
163                                         (nrTics+1)*sizeof (DWORD));
164         if (!infoPtr->tics) {
165             infoPtr->uNumTics = 0;
166             notify(infoPtr, NM_OUTOFMEMORY);
167             return;
168         }
169         infoPtr->uNumTics = nrTics;
170     }
171
172     tic = infoPtr->lRangeMin + infoPtr->uTicFreq;
173     for (i = 0; i < nrTics; i++, tic += infoPtr->uTicFreq)
174         infoPtr->tics[i] = tic;
175 }
176
177 /* converts from physical (mouse) position to logical position
178    (in range of trackbar) */
179
180 static inline LONG
181 TRACKBAR_ConvertPlaceToPosition (const TRACKBAR_INFO *infoPtr, int place, int vertical)
182 {
183     double range, width, pos, offsetthumb;
184
185     range = infoPtr->lRangeMax - infoPtr->lRangeMin;
186     if (vertical) {
187         offsetthumb = (infoPtr->rcThumb.bottom - infoPtr->rcThumb.top)/2;
188         width = infoPtr->rcChannel.bottom - infoPtr->rcChannel.top - (offsetthumb * 2) - 1;
189         pos = (range*(place - infoPtr->rcChannel.top - offsetthumb)) / width;
190     } else {
191         offsetthumb = (infoPtr->rcThumb.right - infoPtr->rcThumb.left)/2;
192         width = infoPtr->rcChannel.right - infoPtr->rcChannel.left - (offsetthumb * 2) - 1;
193         pos = (range*(place - infoPtr->rcChannel.left - offsetthumb)) / width;
194     }
195     pos += infoPtr->lRangeMin;
196     if (pos > infoPtr->lRangeMax)
197         pos = infoPtr->lRangeMax;
198     else if (pos < infoPtr->lRangeMin)
199         pos = infoPtr->lRangeMin;
200
201     TRACE("%.2f\n", pos);
202     return (LONG)(pos + 0.5);
203 }
204
205
206 /* return: 0> prev, 0 none, >0 next */
207 static LONG
208 TRACKBAR_GetAutoPageDirection (const TRACKBAR_INFO *infoPtr, POINT clickPoint)
209 {
210     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
211     RECT pageRect;
212
213     if (dwStyle & TBS_VERT) {
214         pageRect.top = infoPtr->rcChannel.top;
215         pageRect.bottom = infoPtr->rcChannel.bottom;
216         pageRect.left = infoPtr->rcThumb.left;
217         pageRect.right = infoPtr->rcThumb.right;
218     } else {
219         pageRect.top = infoPtr->rcThumb.top;
220         pageRect.bottom = infoPtr->rcThumb.bottom;
221         pageRect.left = infoPtr->rcChannel.left;
222         pageRect.right = infoPtr->rcChannel.right;
223     }
224
225
226     if (PtInRect(&pageRect, clickPoint))
227     {
228         int clickPlace = (dwStyle & TBS_VERT) ? clickPoint.y : clickPoint.x;
229
230         LONG clickPos = TRACKBAR_ConvertPlaceToPosition(infoPtr, clickPlace,
231                                                         dwStyle & TBS_VERT);
232         return clickPos - infoPtr->lPos;
233     }
234
235     return 0;
236 }
237
238 static inline void
239 TRACKBAR_PageDown (TRACKBAR_INFO *infoPtr)
240 {
241     if (infoPtr->lPos == infoPtr->lRangeMax) return;
242
243     infoPtr->lPos += infoPtr->lPageSize;
244     if (infoPtr->lPos > infoPtr->lRangeMax)
245         infoPtr->lPos = infoPtr->lRangeMax;
246     notify_with_scroll (infoPtr, TB_PAGEDOWN);
247 }
248
249
250 static inline void
251 TRACKBAR_PageUp (TRACKBAR_INFO *infoPtr)
252 {
253     if (infoPtr->lPos == infoPtr->lRangeMin) return;
254
255     infoPtr->lPos -= infoPtr->lPageSize;
256     if (infoPtr->lPos < infoPtr->lRangeMin)
257         infoPtr->lPos = infoPtr->lRangeMin;
258     notify_with_scroll (infoPtr, TB_PAGEUP);
259 }
260
261 static inline void TRACKBAR_LineUp(TRACKBAR_INFO *infoPtr)
262 {
263     if (infoPtr->lPos == infoPtr->lRangeMin) return;
264     infoPtr->lPos -= infoPtr->lLineSize;
265     if (infoPtr->lPos < infoPtr->lRangeMin)
266         infoPtr->lPos = infoPtr->lRangeMin;
267     notify_with_scroll (infoPtr, TB_LINEUP);
268 }
269
270 static inline void TRACKBAR_LineDown(TRACKBAR_INFO *infoPtr)
271 {
272     if (infoPtr->lPos == infoPtr->lRangeMax) return;
273     infoPtr->lPos += infoPtr->lLineSize;
274     if (infoPtr->lPos > infoPtr->lRangeMax)
275         infoPtr->lPos = infoPtr->lRangeMax;
276     notify_with_scroll (infoPtr, TB_LINEDOWN);
277 }
278
279 static void
280 TRACKBAR_CalcChannel (TRACKBAR_INFO *infoPtr)
281 {
282     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
283     INT cyChannel, offsetthumb, offsetedge;
284     RECT lpRect, *channel = & infoPtr->rcChannel;
285
286     GetClientRect (infoPtr->hwndSelf, &lpRect);
287
288     offsetthumb = infoPtr->uThumbLen / 4;
289     offsetedge  = offsetthumb + 3;
290     cyChannel   = (dwStyle & TBS_ENABLESELRANGE) ? offsetthumb*3 : 4;
291     if (dwStyle & TBS_VERT) {
292         channel->top    = lpRect.top + offsetedge;
293         channel->bottom = lpRect.bottom - offsetedge;
294         if (dwStyle & TBS_ENABLESELRANGE)
295             channel->left = lpRect.left + ((infoPtr->uThumbLen - cyChannel + 2) / 2);
296         else
297             channel->left = lpRect.left + (infoPtr->uThumbLen / 2) - 1;
298         if (dwStyle & TBS_BOTH) {
299             if (dwStyle & TBS_NOTICKS)
300                 channel->left += 1;
301             else
302                 channel->left += 9;
303         }
304         else if (dwStyle & TBS_TOP) {
305             if (dwStyle & TBS_NOTICKS)
306                 channel->left += 2;
307             else
308                 channel->left += 10;
309         }
310         channel->right = channel->left + cyChannel;
311     } else {
312         channel->left = lpRect.left + offsetedge;
313         channel->right = lpRect.right - offsetedge;
314         if (dwStyle & TBS_ENABLESELRANGE)
315             channel->top = lpRect.top + ((infoPtr->uThumbLen - cyChannel + 2) / 2);
316         else
317             channel->top = lpRect.top + (infoPtr->uThumbLen / 2) - 1;
318         if (dwStyle & TBS_BOTH) {
319             if (dwStyle & TBS_NOTICKS)
320                 channel->top += 1;
321             else
322                 channel->top += 9;
323         }
324         else if (dwStyle & TBS_TOP) {
325             if (dwStyle & TBS_NOTICKS)
326                 channel->top += 2;
327             else
328                 channel->top += 10;
329         }
330         channel->bottom   = channel->top + cyChannel;
331     }
332 }
333
334 static void
335 TRACKBAR_CalcThumb (const TRACKBAR_INFO *infoPtr, LONG lPos, RECT *thumb)
336 {
337     int range, width, height, thumbwidth;
338     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
339     RECT lpRect;
340
341     range = infoPtr->lRangeMax - infoPtr->lRangeMin;
342     thumbwidth = (infoPtr->uThumbLen / 2) | 1;
343
344     if (!range) range = 1;
345
346     GetClientRect(infoPtr->hwndSelf, &lpRect);
347     if (dwStyle & TBS_VERT)
348     {
349         height = infoPtr->rcChannel.bottom - infoPtr->rcChannel.top - thumbwidth;
350
351         if ((dwStyle & (TBS_BOTH | TBS_LEFT)) && !(dwStyle & TBS_NOTICKS))
352             thumb->left = 10;
353         else
354             thumb->left = 2;
355         thumb->right = thumb->left + infoPtr->uThumbLen;
356         thumb->top = infoPtr->rcChannel.top +
357                      (height*(lPos - infoPtr->lRangeMin))/range;
358         thumb->bottom = thumb->top + thumbwidth;
359     }
360     else
361     {
362         width = infoPtr->rcChannel.right - infoPtr->rcChannel.left - thumbwidth;
363
364         thumb->left = infoPtr->rcChannel.left +
365                       (width*(lPos - infoPtr->lRangeMin))/range;
366         thumb->right = thumb->left + thumbwidth;
367         if ((dwStyle & (TBS_BOTH | TBS_TOP)) && !(dwStyle & TBS_NOTICKS))
368             thumb->top = 10;
369         else
370             thumb->top = 2;
371         thumb->bottom = thumb->top + infoPtr->uThumbLen;
372     }
373 }
374
375 static inline void
376 TRACKBAR_UpdateThumb (TRACKBAR_INFO *infoPtr)
377 {
378     TRACKBAR_CalcThumb(infoPtr, infoPtr->lPos, &infoPtr->rcThumb);
379 }
380
381 static inline void
382 TRACKBAR_InvalidateAll (const TRACKBAR_INFO *infoPtr)
383 {
384     InvalidateRect(infoPtr->hwndSelf, NULL, FALSE);
385 }
386
387 static void
388 TRACKBAR_InvalidateThumb (const TRACKBAR_INFO *infoPtr, LONG thumbPos)
389 {
390     RECT rcThumb;
391
392     TRACKBAR_CalcThumb(infoPtr, thumbPos, &rcThumb);
393     InflateRect(&rcThumb, 1, 1);
394     InvalidateRect(infoPtr->hwndSelf, &rcThumb, FALSE);
395 }
396
397 static inline void
398 TRACKBAR_InvalidateThumbMove (const TRACKBAR_INFO *infoPtr, LONG oldPos, LONG newPos)
399 {
400     TRACKBAR_InvalidateThumb (infoPtr, oldPos);
401     if (newPos != oldPos)
402         TRACKBAR_InvalidateThumb (infoPtr, newPos);
403 }
404
405 static inline BOOL
406 TRACKBAR_HasSelection (const TRACKBAR_INFO *infoPtr)
407 {
408     return infoPtr->lSelMin != infoPtr->lSelMax;
409 }
410
411 static void
412 TRACKBAR_CalcSelection (TRACKBAR_INFO *infoPtr)
413 {
414     RECT *selection = &infoPtr->rcSelection;
415     int range = infoPtr->lRangeMax - infoPtr->lRangeMin;
416     int offsetthumb, height, width;
417
418     if (range <= 0) {
419         SetRectEmpty (selection);
420     } else {
421         if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_VERT) {
422             offsetthumb = (infoPtr->rcThumb.bottom - infoPtr->rcThumb.top)/2;
423             height = infoPtr->rcChannel.bottom - infoPtr->rcChannel.top - offsetthumb*2;
424             selection->top    = infoPtr->rcChannel.top + offsetthumb +
425                 (height*infoPtr->lSelMin)/range;
426             selection->bottom = infoPtr->rcChannel.top + offsetthumb +
427                 (height*infoPtr->lSelMax)/range;
428             selection->left   = infoPtr->rcChannel.left + 3;
429             selection->right  = infoPtr->rcChannel.right - 3;
430         } else {
431             offsetthumb = (infoPtr->rcThumb.right - infoPtr->rcThumb.left)/2;
432             width = infoPtr->rcChannel.right - infoPtr->rcChannel.left - offsetthumb*2;
433             selection->left   = infoPtr->rcChannel.left + offsetthumb +
434                 (width*infoPtr->lSelMin)/range;
435             selection->right  = infoPtr->rcChannel.left + offsetthumb +
436                 (width*infoPtr->lSelMax)/range;
437             selection->top    = infoPtr->rcChannel.top + 3;
438             selection->bottom = infoPtr->rcChannel.bottom - 3;
439         }
440     }
441
442     TRACE("selection[left=%d, top=%d, right=%d, bottom=%d]\n",
443            selection->left, selection->top, selection->right, selection->bottom);
444 }
445
446 static BOOL
447 TRACKBAR_AutoPage (TRACKBAR_INFO *infoPtr, POINT clickPoint)
448 {
449     LONG dir = TRACKBAR_GetAutoPageDirection(infoPtr, clickPoint);
450     LONG prevPos = infoPtr->lPos;
451
452     TRACE("x=%d, y=%d, dir=%d\n", clickPoint.x, clickPoint.y, dir);
453
454     if (dir > 0 && (infoPtr->flags & TB_AUTO_PAGE_RIGHT))
455         TRACKBAR_PageDown(infoPtr);
456     else if (dir < 0 && (infoPtr->flags & TB_AUTO_PAGE_LEFT))
457         TRACKBAR_PageUp(infoPtr);
458     else return FALSE;
459
460     infoPtr->flags |= TB_THUMBPOSCHANGED;
461     TRACKBAR_InvalidateThumbMove (infoPtr, prevPos, infoPtr->lPos);
462
463     return TRUE;
464 }
465
466 /* Trackbar drawing code. I like my spaghetti done milanese.  */
467
468 static void
469 TRACKBAR_DrawChannel (const TRACKBAR_INFO *infoPtr, HDC hdc, DWORD dwStyle)
470 {
471     RECT rcChannel = infoPtr->rcChannel;
472     HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
473
474     if (theme)
475     {
476         DrawThemeBackground (theme, hdc, 
477             (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_VERT) ? 
478                 TKP_TRACKVERT : TKP_TRACK, TKS_NORMAL, &rcChannel, 0);
479     }
480     else
481     {
482         DrawEdge (hdc, &rcChannel, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
483         if (dwStyle & TBS_ENABLESELRANGE) {              /* fill the channel */
484             FillRect (hdc, &rcChannel, GetStockObject(WHITE_BRUSH));
485             if (TRACKBAR_HasSelection(infoPtr))
486                 FillRect (hdc, &infoPtr->rcSelection, GetSysColorBrush(COLOR_HIGHLIGHT));
487         }
488     }
489 }
490
491 static void
492 TRACKBAR_DrawOneTic (const TRACKBAR_INFO *infoPtr, HDC hdc, LONG ticPos, int flags)
493 {
494     int x, y, ox, oy, range, side, indent = 0, len = 3;
495     int offsetthumb;
496     RECT rcTics;
497
498     if (flags & TBS_VERT) {
499         offsetthumb = (infoPtr->rcThumb.bottom - infoPtr->rcThumb.top)/2;
500         rcTics.left = infoPtr->rcThumb.left - 2;
501         rcTics.right = infoPtr->rcThumb.right + 2;
502         rcTics.top    = infoPtr->rcChannel.top + offsetthumb + 1;
503         rcTics.bottom = infoPtr->rcChannel.bottom - offsetthumb;
504     } else {
505         offsetthumb = (infoPtr->rcThumb.right - infoPtr->rcThumb.left)/2;
506         rcTics.left   = infoPtr->rcChannel.left + offsetthumb + 1;
507         rcTics.right  = infoPtr->rcChannel.right - offsetthumb;
508         rcTics.top = infoPtr->rcThumb.top - 2;
509         rcTics.bottom = infoPtr->rcThumb.bottom + 2;
510     }
511
512     if (flags & (TBS_TOP | TBS_LEFT)) {
513         x = rcTics.left;
514         y = rcTics.top;
515         side = -1;
516     } else {
517         x = rcTics.right;
518         y = rcTics.bottom;
519         side = 1;
520     }
521
522     range = infoPtr->lRangeMax - infoPtr->lRangeMin;
523     if (range <= 0)
524       range = 1; /* to avoid division by zero */
525
526     if (flags & TIC_SELECTIONMARK) {
527         indent = (flags & TIC_SELECTIONMARKMIN) ? -1 : 1;
528     } else if (flags & TIC_EDGE) {
529         len++;
530     }
531
532     if (flags & TBS_VERT) {
533         int height = rcTics.bottom - rcTics.top;
534         y = rcTics.top + (height*(ticPos - infoPtr->lRangeMin))/range;
535     } else {
536         int width = rcTics.right - rcTics.left;
537         x = rcTics.left + (width*(ticPos - infoPtr->lRangeMin))/range;
538     }
539
540     ox = x;
541     oy = y;
542     MoveToEx(hdc, x, y, 0);
543     if (flags & TBS_VERT) x += len * side;
544     else y += len * side;
545     LineTo(hdc, x, y);
546             
547     if (flags & TIC_SELECTIONMARK) {
548         if (flags & TBS_VERT) {
549             x -= side;
550         } else {
551             y -= side;
552         }
553         MoveToEx(hdc, x, y, 0);
554         if (flags & TBS_VERT) {
555             y += 2 * indent;
556         } else {
557             x += 2 * indent;
558         }
559         
560         LineTo(hdc, x, y);
561         LineTo(hdc, ox, oy);
562     }
563 }
564
565
566 static inline void
567 TRACKBAR_DrawTic (const TRACKBAR_INFO *infoPtr, HDC hdc, LONG ticPos, int flags)
568 {
569     if ((flags & (TBS_LEFT | TBS_TOP)) || (flags & TBS_BOTH))
570         TRACKBAR_DrawOneTic (infoPtr, hdc, ticPos, flags | TBS_LEFT);
571
572     if (!(flags & (TBS_LEFT | TBS_TOP)) || (flags & TBS_BOTH))
573         TRACKBAR_DrawOneTic (infoPtr, hdc, ticPos, flags & ~TBS_LEFT);
574 }
575
576 static void
577 TRACKBAR_DrawTics (const TRACKBAR_INFO *infoPtr, HDC hdc, DWORD dwStyle)
578 {
579     unsigned int i;
580     int ticFlags = dwStyle & 0x0f;
581     LOGPEN ticPen = { PS_SOLID, {1, 0}, GetSysColor (COLOR_3DDKSHADOW) };
582     HPEN hOldPen, hTicPen;
583     HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
584     
585     if (theme)
586     {
587         int part = (dwStyle & TBS_VERT) ? TKP_TICSVERT : TKP_TICS;
588         GetThemeColor (theme, part, TSS_NORMAL, TMT_COLOR, &ticPen.lopnColor);
589     }
590     /* create the pen to draw the tics with */
591     hTicPen = CreatePenIndirect(&ticPen);
592     hOldPen = hTicPen ? SelectObject(hdc, hTicPen) : 0;
593
594     /* actually draw the tics */
595     for (i=0; i<infoPtr->uNumTics; i++)
596         TRACKBAR_DrawTic (infoPtr, hdc, infoPtr->tics[i], ticFlags);
597
598     TRACKBAR_DrawTic (infoPtr, hdc, infoPtr->lRangeMin, ticFlags | TIC_EDGE);
599     TRACKBAR_DrawTic (infoPtr, hdc, infoPtr->lRangeMax, ticFlags | TIC_EDGE);
600
601     if ((dwStyle & TBS_ENABLESELRANGE) && TRACKBAR_HasSelection(infoPtr)) {
602         TRACKBAR_DrawTic (infoPtr, hdc, infoPtr->lSelMin,
603                           ticFlags | TIC_SELECTIONMARKMIN);
604         TRACKBAR_DrawTic (infoPtr, hdc, infoPtr->lSelMax,
605                           ticFlags | TIC_SELECTIONMARKMAX);
606     }
607     
608     /* clean up the pen, if we created one */
609     if (hTicPen) {
610         SelectObject(hdc, hOldPen);
611         DeleteObject(hTicPen);
612     }
613 }
614
615 static void
616 TRACKBAR_DrawThumb (const TRACKBAR_INFO *infoPtr, HDC hdc, DWORD dwStyle)
617 {
618     HBRUSH oldbr;
619     HPEN  oldpen;
620     RECT thumb = infoPtr->rcThumb;
621     int BlackUntil = 3;
622     int PointCount = 6;
623     POINT points[6];
624     int fillClr;
625     int PointDepth;
626     HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
627     
628     if (theme)
629     {
630         int partId;
631         int stateId;
632         if (dwStyle & TBS_BOTH)
633             partId = (dwStyle & TBS_VERT) ? TKP_THUMBVERT : TKP_THUMB;
634         else if (dwStyle & TBS_LEFT)
635             partId = (dwStyle & TBS_VERT) ? TKP_THUMBLEFT : TKP_THUMBTOP;
636         else
637             partId = (dwStyle & TBS_VERT) ? TKP_THUMBRIGHT : TKP_THUMBBOTTOM;
638             
639         if (dwStyle & WS_DISABLED)
640             stateId = TUS_DISABLED;
641         else if (infoPtr->flags & TB_DRAG_MODE)
642             stateId = TUS_PRESSED;
643         else if (infoPtr->flags & TB_THUMB_HOT)
644             stateId = TUS_HOT;
645         else
646             stateId = TUS_NORMAL;
647         
648         DrawThemeBackground (theme, hdc, partId, stateId, &thumb, 0);
649         
650         return;
651     }
652
653     fillClr = infoPtr->flags & TB_DRAG_MODE ? COLOR_BTNHILIGHT : COLOR_BTNFACE;
654     oldbr = SelectObject (hdc, GetSysColorBrush(fillClr));
655     SetPolyFillMode (hdc, WINDING);
656
657     if (dwStyle & TBS_BOTH)
658     {
659        points[0].x=thumb.right;
660        points[0].y=thumb.top;
661        points[1].x=thumb.right;
662        points[1].y=thumb.bottom;
663        points[2].x=thumb.left;
664        points[2].y=thumb.bottom;
665        points[3].x=thumb.left;
666        points[3].y=thumb.top;
667        points[4].x=points[0].x;
668        points[4].y=points[0].y;
669        PointCount = 5;
670        BlackUntil = 3;
671     }
672     else
673     {
674         if (dwStyle & TBS_VERT)
675         {
676           PointDepth = (thumb.bottom - thumb.top) / 2;
677           if (dwStyle & TBS_LEFT)
678           {
679             points[0].x=thumb.right;
680             points[0].y=thumb.top;
681             points[1].x=thumb.right;
682             points[1].y=thumb.bottom;
683             points[2].x=thumb.left + PointDepth;
684             points[2].y=thumb.bottom;
685             points[3].x=thumb.left;
686             points[3].y=(thumb.bottom - thumb.top) / 2 + thumb.top + 1;
687             points[4].x=thumb.left + PointDepth;
688             points[4].y=thumb.top;
689             points[5].x=points[0].x;
690             points[5].y=points[0].y;
691             BlackUntil = 4;
692           }
693           else
694           {
695             points[0].x=thumb.right;
696             points[0].y=(thumb.bottom - thumb.top) / 2 + thumb.top + 1;
697             points[1].x=thumb.right - PointDepth;
698             points[1].y=thumb.bottom;
699             points[2].x=thumb.left;
700             points[2].y=thumb.bottom;
701             points[3].x=thumb.left;
702             points[3].y=thumb.top;
703             points[4].x=thumb.right - PointDepth;
704             points[4].y=thumb.top;
705             points[5].x=points[0].x;
706             points[5].y=points[0].y;
707           }
708         }
709         else
710         {
711           PointDepth = (thumb.right - thumb.left) / 2;
712           if (dwStyle & TBS_TOP)
713           {
714             points[0].x=(thumb.right - thumb.left) / 2 + thumb.left + 1;
715             points[0].y=thumb.top;
716             points[1].x=thumb.right;
717             points[1].y=thumb.top + PointDepth;
718             points[2].x=thumb.right;
719             points[2].y=thumb.bottom;
720             points[3].x=thumb.left;
721             points[3].y=thumb.bottom;
722             points[4].x=thumb.left;
723             points[4].y=thumb.top + PointDepth;
724             points[5].x=points[0].x;
725             points[5].y=points[0].y;
726             BlackUntil = 4;
727           }
728           else
729           {
730             points[0].x=thumb.right;
731             points[0].y=thumb.top;
732             points[1].x=thumb.right;
733             points[1].y=thumb.bottom - PointDepth;
734             points[2].x=(thumb.right - thumb.left) / 2 + thumb.left + 1;
735             points[2].y=thumb.bottom;
736             points[3].x=thumb.left;
737             points[3].y=thumb.bottom - PointDepth;
738             points[4].x=thumb.left;
739             points[4].y=thumb.top;
740             points[5].x=points[0].x;
741             points[5].y=points[0].y;
742           }
743         }
744
745     }
746
747     /* Draw the thumb now */
748     Polygon (hdc, points, PointCount);
749     oldpen = SelectObject(hdc, GetStockObject(BLACK_PEN));
750     Polyline(hdc,points, BlackUntil);
751     SelectObject(hdc, GetStockObject(WHITE_PEN));
752     Polyline(hdc, &points[BlackUntil-1], PointCount+1-BlackUntil);
753     SelectObject(hdc, oldpen);
754     SelectObject(hdc, oldbr);
755 }
756
757
758 static inline void
759 TRACKBAR_ActivateToolTip (const TRACKBAR_INFO *infoPtr, BOOL fShow)
760 {
761     TTTOOLINFOW ti;
762
763     if (!infoPtr->hwndToolTip) return;
764
765     ZeroMemory(&ti, sizeof(ti));
766     ti.cbSize = sizeof(ti);
767     ti.hwnd   = infoPtr->hwndSelf;
768
769     SendMessageW (infoPtr->hwndToolTip, TTM_TRACKACTIVATE, fShow, (LPARAM)&ti);
770 }
771
772
773 static void
774 TRACKBAR_UpdateToolTip (const TRACKBAR_INFO *infoPtr)
775 {
776     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
777     WCHAR buf[80];
778     static const WCHAR fmt[] = { '%', 'l', 'd', 0 };
779     TTTOOLINFOW ti;
780     POINT pt;
781     RECT rcClient;
782     LRESULT size;
783
784     if (!infoPtr->hwndToolTip) return;
785
786     ZeroMemory(&ti, sizeof(ti));
787     ti.cbSize = sizeof(ti);
788     ti.hwnd   = infoPtr->hwndSelf;
789     ti.uFlags = TTF_IDISHWND | TTF_TRACK | TTF_ABSOLUTE;
790
791     wsprintfW (buf, fmt, infoPtr->lPos);
792     ti.lpszText = buf;
793     SendMessageW (infoPtr->hwndToolTip, TTM_UPDATETIPTEXTW, 0, (LPARAM)&ti);
794
795     GetClientRect (infoPtr->hwndSelf, &rcClient);
796     size = SendMessageW (infoPtr->hwndToolTip, TTM_GETBUBBLESIZE, 0, (LPARAM)&ti);
797     if (dwStyle & TBS_VERT) {
798         if (infoPtr->fLocation == TBTS_LEFT)
799             pt.x = 0 - LOWORD(size) - TOOLTIP_OFFSET;
800         else
801             pt.x = rcClient.right + TOOLTIP_OFFSET;
802         pt.y = (infoPtr->rcThumb.top + infoPtr->rcThumb.bottom - HIWORD(size))/2;
803     } else {
804         if (infoPtr->fLocation == TBTS_TOP)
805             pt.y = 0 - HIWORD(size) - TOOLTIP_OFFSET;
806         else
807             pt.y = rcClient.bottom + TOOLTIP_OFFSET;
808         pt.x = (infoPtr->rcThumb.left + infoPtr->rcThumb.right - LOWORD(size))/2;
809     }
810     ClientToScreen(infoPtr->hwndSelf, &pt);
811
812     SendMessageW (infoPtr->hwndToolTip, TTM_TRACKPOSITION,
813                   0, MAKELPARAM(pt.x, pt.y));
814 }
815
816
817 static void
818 TRACKBAR_Refresh (TRACKBAR_INFO *infoPtr, HDC hdcDst)
819 {
820     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
821     RECT rcClient;
822     HDC hdc;
823     HBITMAP hOldBmp = 0, hOffScreenBmp = 0;
824     NMCUSTOMDRAW nmcd;
825     int gcdrf, icdrf;
826     HTHEME theme;
827
828     if (infoPtr->flags & TB_THUMBCHANGED) {
829         TRACKBAR_UpdateThumb (infoPtr);
830         if (infoPtr->flags & TB_THUMBSIZECHANGED)
831             TRACKBAR_CalcChannel (infoPtr);
832     }
833     if (infoPtr->flags & TB_SELECTIONCHANGED)
834         TRACKBAR_CalcSelection (infoPtr);
835
836     if (infoPtr->flags & TB_DRAG_MODE)
837         TRACKBAR_UpdateToolTip (infoPtr);
838
839     infoPtr->flags &= ~ (TB_THUMBCHANGED | TB_SELECTIONCHANGED);
840
841     GetClientRect (infoPtr->hwndSelf, &rcClient);
842     
843     /* try to render offscreen, if we fail, carrry onscreen */
844     hdc = CreateCompatibleDC(hdcDst);
845     if (hdc) {
846         hOffScreenBmp = CreateCompatibleBitmap(hdcDst, rcClient.right, rcClient.bottom);
847         if (hOffScreenBmp) {
848             hOldBmp = SelectObject(hdc, hOffScreenBmp);
849         } else {
850             DeleteObject(hdc);
851             hdc = hdcDst;
852         }
853     } else {
854         hdc = hdcDst;
855     }
856
857     ZeroMemory(&nmcd, sizeof(nmcd));
858     nmcd.hdr.hwndFrom = infoPtr->hwndSelf;
859     nmcd.hdr.idFrom = GetWindowLongPtrW (infoPtr->hwndSelf, GWLP_ID);
860     nmcd.hdr.code = NM_CUSTOMDRAW;
861     nmcd.hdc = hdc;
862
863     /* start the paint cycle */
864     nmcd.rc = rcClient;
865     gcdrf = notify_customdraw(infoPtr, &nmcd, CDDS_PREPAINT);
866     if (gcdrf & CDRF_SKIPDEFAULT) goto cleanup;
867     
868     /* Erase backbround */
869     if (gcdrf == CDRF_DODEFAULT ||
870         notify_customdraw(infoPtr, &nmcd, CDDS_PREERASE) != CDRF_SKIPDEFAULT) {
871         if ((theme = GetWindowTheme (infoPtr->hwndSelf))) {
872             DrawThemeBackground (theme, hdc,
873                 (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_VERT) ?
874                     TKP_TRACKVERT : TKP_TRACK, TKS_NORMAL, &rcClient, 0);
875             DrawThemeParentBackground (infoPtr->hwndSelf, hdc, &rcClient);
876         }
877         else
878             FillRect (hdc, &rcClient, GetSysColorBrush(COLOR_BTNFACE));
879         if (gcdrf != CDRF_DODEFAULT)
880             notify_customdraw(infoPtr, &nmcd, CDDS_POSTERASE);
881     }
882     
883     /* draw channel */
884     if (gcdrf & CDRF_NOTIFYITEMDRAW) {
885         nmcd.dwItemSpec = TBCD_CHANNEL;
886         nmcd.uItemState = CDIS_DEFAULT;
887         nmcd.rc = infoPtr->rcChannel;
888         icdrf = notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPREPAINT);
889     } else icdrf = CDRF_DODEFAULT;
890     if ( !(icdrf & CDRF_SKIPDEFAULT) ) {
891         TRACKBAR_DrawChannel (infoPtr, hdc, dwStyle);
892         if (icdrf & CDRF_NOTIFYPOSTPAINT)
893             notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPOSTPAINT);
894     }
895
896
897     /* draw tics */
898     if (!(dwStyle & TBS_NOTICKS)) {
899         if (gcdrf & CDRF_NOTIFYITEMDRAW) {
900             nmcd.dwItemSpec = TBCD_TICS;
901             nmcd.uItemState = CDIS_DEFAULT;
902             nmcd.rc = rcClient;
903             icdrf = notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPREPAINT);
904         } else icdrf = CDRF_DODEFAULT;
905         if ( !(icdrf & CDRF_SKIPDEFAULT) ) {
906             TRACKBAR_DrawTics (infoPtr, hdc, dwStyle);
907             if (icdrf & CDRF_NOTIFYPOSTPAINT)
908                 notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPOSTPAINT);
909         }
910     }
911     
912     /* draw thumb */
913     if (!(dwStyle & TBS_NOTHUMB)) {
914         if (gcdrf & CDRF_NOTIFYITEMDRAW) {
915             nmcd.dwItemSpec = TBCD_THUMB;
916             nmcd.uItemState = infoPtr->flags & TB_DRAG_MODE ? CDIS_HOT : CDIS_DEFAULT;
917             nmcd.rc = infoPtr->rcThumb;
918             icdrf = notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPREPAINT);
919         } else icdrf = CDRF_DODEFAULT;
920         if ( !(icdrf & CDRF_SKIPDEFAULT) ) {
921             TRACKBAR_DrawThumb(infoPtr, hdc, dwStyle);
922             if (icdrf & CDRF_NOTIFYPOSTPAINT)
923                 notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPOSTPAINT);
924         }
925     }
926
927     /* draw focus rectangle */
928     if (infoPtr->bFocussed) {
929         DrawFocusRect(hdc, &rcClient);
930     }
931
932     /* finish up the painting */
933     if (gcdrf & CDRF_NOTIFYPOSTPAINT)
934         notify_customdraw(infoPtr, &nmcd, CDDS_POSTPAINT);
935     
936 cleanup:
937     /* cleanup, if we rendered offscreen */
938     if (hdc != hdcDst) {
939         BitBlt(hdcDst, 0, 0, rcClient.right, rcClient.bottom, hdc, 0, 0, SRCCOPY);
940         SelectObject(hdc, hOldBmp);
941         DeleteObject(hOffScreenBmp);
942         DeleteObject(hdc);
943     }
944 }
945
946
947 static void
948 TRACKBAR_AlignBuddies (const TRACKBAR_INFO *infoPtr)
949 {
950     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
951     HWND hwndParent = GetParent (infoPtr->hwndSelf);
952     RECT rcSelf, rcBuddy;
953     INT x, y;
954
955     GetWindowRect (infoPtr->hwndSelf, &rcSelf);
956     MapWindowPoints (HWND_DESKTOP, hwndParent, (LPPOINT)&rcSelf, 2);
957
958     /* align buddy left or above */
959     if (infoPtr->hwndBuddyLA) {
960         GetWindowRect (infoPtr->hwndBuddyLA, &rcBuddy);
961         MapWindowPoints (HWND_DESKTOP, hwndParent, (LPPOINT)&rcBuddy, 2);
962
963         if (dwStyle & TBS_VERT) {
964             x = (infoPtr->rcChannel.right + infoPtr->rcChannel.left) / 2 -
965                 (rcBuddy.right - rcBuddy.left) / 2 + rcSelf.left;
966             y = rcSelf.top - (rcBuddy.bottom - rcBuddy.top);
967         }
968         else {
969             x = rcSelf.left - (rcBuddy.right - rcBuddy.left);
970             y = (infoPtr->rcChannel.bottom + infoPtr->rcChannel.top) / 2 -
971                 (rcBuddy.bottom - rcBuddy.top) / 2 + rcSelf.top;
972         }
973
974         SetWindowPos (infoPtr->hwndBuddyLA, 0, x, y, 0, 0,
975                       SWP_NOZORDER | SWP_NOSIZE);
976     }
977
978
979     /* align buddy right or below */
980     if (infoPtr->hwndBuddyRB) {
981         GetWindowRect (infoPtr->hwndBuddyRB, &rcBuddy);
982         MapWindowPoints (HWND_DESKTOP, hwndParent, (LPPOINT)&rcBuddy, 2);
983
984         if (dwStyle & TBS_VERT) {
985             x = (infoPtr->rcChannel.right + infoPtr->rcChannel.left) / 2 -
986                 (rcBuddy.right - rcBuddy.left) / 2 + rcSelf.left;
987             y = rcSelf.bottom;
988         }
989         else {
990             x = rcSelf.right;
991             y = (infoPtr->rcChannel.bottom + infoPtr->rcChannel.top) / 2 -
992                 (rcBuddy.bottom - rcBuddy.top) / 2 + rcSelf.top;
993         }
994         SetWindowPos (infoPtr->hwndBuddyRB, 0, x, y, 0, 0,
995                       SWP_NOZORDER | SWP_NOSIZE);
996     }
997 }
998
999
1000 static LRESULT
1001 TRACKBAR_ClearSel (TRACKBAR_INFO *infoPtr, BOOL fRedraw)
1002 {
1003     infoPtr->lSelMin = 0;
1004     infoPtr->lSelMax = 0;
1005     infoPtr->flags |= TB_SELECTIONCHANGED;
1006
1007     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1008
1009     return 0;
1010 }
1011
1012
1013 static LRESULT
1014 TRACKBAR_ClearTics (TRACKBAR_INFO *infoPtr, BOOL fRedraw)
1015 {
1016     if (infoPtr->tics) {
1017         Free (infoPtr->tics);
1018         infoPtr->tics = NULL;
1019         infoPtr->uNumTics = 0;
1020     }
1021
1022     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1023
1024     return 0;
1025 }
1026
1027
1028 static inline LRESULT
1029 TRACKBAR_GetChannelRect (const TRACKBAR_INFO *infoPtr, LPRECT lprc)
1030 {
1031     if (lprc == NULL) return 0;
1032
1033     lprc->left   = infoPtr->rcChannel.left;
1034     lprc->right  = infoPtr->rcChannel.right;
1035     lprc->bottom = infoPtr->rcChannel.bottom;
1036     lprc->top    = infoPtr->rcChannel.top;
1037
1038     return 0;
1039 }
1040
1041
1042 static inline LONG
1043 TRACKBAR_GetNumTics (const TRACKBAR_INFO *infoPtr)
1044 {
1045     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_NOTICKS)
1046         return 0;
1047
1048     if(infoPtr->uNumTics == 0)
1049         return 2;
1050     else
1051         return infoPtr->uNumTics + 1;
1052 }
1053
1054
1055 static int comp_tics (const void *ap, const void *bp)
1056 {
1057     const DWORD a = *(const DWORD *)ap;
1058     const DWORD b = *(const DWORD *)bp;
1059
1060     TRACE("(a=%d, b=%d)\n", a, b);
1061     if (a < b) return -1;
1062     if (a > b) return 1;
1063     return 0;
1064 }
1065
1066
1067 static inline LONG
1068 TRACKBAR_GetTic (const TRACKBAR_INFO *infoPtr, INT iTic)
1069 {
1070     if ((iTic < 0) || (iTic >= infoPtr->uNumTics) || !infoPtr->tics)
1071         return -1;
1072
1073     qsort(infoPtr->tics, infoPtr->uNumTics, sizeof(DWORD), comp_tics);
1074     return infoPtr->tics[iTic];
1075 }
1076
1077
1078 static inline LONG
1079 TRACKBAR_GetTicPos (const TRACKBAR_INFO *infoPtr, INT iTic)
1080 {
1081     LONG range, width, pos, tic;
1082     int offsetthumb;
1083
1084     if ((iTic < 0) || (iTic >= infoPtr->uNumTics) || !infoPtr->tics)
1085         return -1;
1086
1087     tic   = TRACKBAR_GetTic (infoPtr, iTic);
1088     range = infoPtr->lRangeMax - infoPtr->lRangeMin;
1089     if (range <= 0) range = 1;
1090     offsetthumb = (infoPtr->rcThumb.right - infoPtr->rcThumb.left)/2;
1091     width = infoPtr->rcChannel.right - infoPtr->rcChannel.left - offsetthumb*2;
1092     pos   = infoPtr->rcChannel.left + offsetthumb + (width * tic) / range;
1093
1094     return pos;
1095 }
1096
1097
1098 static HWND
1099 TRACKBAR_SetBuddy (TRACKBAR_INFO *infoPtr, BOOL fLocation, HWND hwndBuddy)
1100 {
1101     HWND hwndTemp;
1102
1103     if (fLocation) {
1104         /* buddy is left or above */
1105         hwndTemp = infoPtr->hwndBuddyLA;
1106         infoPtr->hwndBuddyLA = hwndBuddy;
1107     }
1108     else {
1109         /* buddy is right or below */
1110         hwndTemp = infoPtr->hwndBuddyRB;
1111         infoPtr->hwndBuddyRB = hwndBuddy;
1112     }
1113
1114     TRACKBAR_AlignBuddies (infoPtr);
1115
1116     return hwndTemp;
1117 }
1118
1119
1120 static inline LONG
1121 TRACKBAR_SetLineSize (TRACKBAR_INFO *infoPtr, LONG lLineSize)
1122 {
1123     LONG lTemp = infoPtr->lLineSize;
1124
1125     infoPtr->lLineSize = lLineSize;
1126
1127     return lTemp;
1128 }
1129
1130
1131 static inline LONG
1132 TRACKBAR_SetPageSize (TRACKBAR_INFO *infoPtr, LONG lPageSize)
1133 {
1134     LONG lTemp = infoPtr->lPageSize;
1135
1136     infoPtr->lPageSize = lPageSize;
1137
1138     return lTemp;
1139 }
1140
1141
1142 static inline LRESULT
1143 TRACKBAR_SetPos (TRACKBAR_INFO *infoPtr, BOOL fPosition, LONG lPosition)
1144 {
1145     LONG oldPos = infoPtr->lPos;
1146     infoPtr->lPos = lPosition;
1147
1148     if (infoPtr->lPos < infoPtr->lRangeMin)
1149         infoPtr->lPos = infoPtr->lRangeMin;
1150
1151     if (infoPtr->lPos > infoPtr->lRangeMax)
1152         infoPtr->lPos = infoPtr->lRangeMax;
1153     infoPtr->flags |= TB_THUMBPOSCHANGED;
1154
1155     if (fPosition) TRACKBAR_InvalidateThumbMove(infoPtr, oldPos, lPosition);
1156
1157     return 0;
1158 }
1159
1160
1161 static inline LRESULT
1162 TRACKBAR_SetRange (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lRange)
1163 {
1164     infoPtr->lRangeMin = (SHORT)LOWORD(lRange);
1165     infoPtr->lRangeMax = (SHORT)HIWORD(lRange);
1166
1167     if (infoPtr->lPos < infoPtr->lRangeMin) {
1168         infoPtr->lPos = infoPtr->lRangeMin;
1169         infoPtr->flags |= TB_THUMBPOSCHANGED;
1170     }
1171
1172     if (infoPtr->lPos > infoPtr->lRangeMax) {
1173         infoPtr->lPos = infoPtr->lRangeMax;
1174         infoPtr->flags |= TB_THUMBPOSCHANGED;
1175     }
1176
1177     infoPtr->lPageSize = (infoPtr->lRangeMax - infoPtr->lRangeMin) / 5;
1178     if (infoPtr->lPageSize == 0) infoPtr->lPageSize = 1;
1179
1180     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1181
1182     return 0;
1183 }
1184
1185
1186 static inline LRESULT
1187 TRACKBAR_SetRangeMax (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lMax)
1188 {
1189     infoPtr->lRangeMax = lMax;
1190     if (infoPtr->lPos > infoPtr->lRangeMax) {
1191         infoPtr->lPos = infoPtr->lRangeMax;
1192         infoPtr->flags |= TB_THUMBPOSCHANGED;
1193     }
1194
1195     infoPtr->lPageSize = (infoPtr->lRangeMax - infoPtr->lRangeMin) / 5;
1196     if (infoPtr->lPageSize == 0) infoPtr->lPageSize = 1;
1197
1198     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1199
1200     return 0;
1201 }
1202
1203
1204 static inline LRESULT
1205 TRACKBAR_SetRangeMin (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lMin)
1206 {
1207     infoPtr->lRangeMin = lMin;
1208     if (infoPtr->lPos < infoPtr->lRangeMin) {
1209         infoPtr->lPos = infoPtr->lRangeMin;
1210         infoPtr->flags |= TB_THUMBPOSCHANGED;
1211     }
1212
1213     infoPtr->lPageSize = (infoPtr->lRangeMax - infoPtr->lRangeMin) / 5;
1214     if (infoPtr->lPageSize == 0) infoPtr->lPageSize = 1;
1215
1216     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1217
1218     return 0;
1219 }
1220
1221
1222 static inline LRESULT
1223 TRACKBAR_SetSel (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lSel)
1224 {
1225     if (!(GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_ENABLESELRANGE)){
1226         infoPtr->lSelMin = 0;
1227         infoPtr->lSelMax = 0;
1228         return 0;
1229     }
1230
1231     infoPtr->lSelMin = (SHORT)LOWORD(lSel);
1232     infoPtr->lSelMax = (SHORT)HIWORD(lSel);
1233     infoPtr->flags |= TB_SELECTIONCHANGED;
1234
1235     if (infoPtr->lSelMin < infoPtr->lRangeMin)
1236         infoPtr->lSelMin = infoPtr->lRangeMin;
1237     if (infoPtr->lSelMax > infoPtr->lRangeMax)
1238         infoPtr->lSelMax = infoPtr->lRangeMax;
1239
1240     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1241
1242     return 0;
1243 }
1244
1245
1246 static inline LRESULT
1247 TRACKBAR_SetSelEnd (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lEnd)
1248 {
1249     if (!(GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_ENABLESELRANGE)){
1250         infoPtr->lSelMax = 0;
1251         return 0;
1252     }
1253
1254     infoPtr->lSelMax = lEnd;
1255     infoPtr->flags |= TB_SELECTIONCHANGED;
1256
1257     if (infoPtr->lSelMax > infoPtr->lRangeMax)
1258         infoPtr->lSelMax = infoPtr->lRangeMax;
1259
1260     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1261
1262     return 0;
1263 }
1264
1265
1266 static inline LRESULT
1267 TRACKBAR_SetSelStart (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lStart)
1268 {
1269     if (!(GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_ENABLESELRANGE)){
1270         infoPtr->lSelMin = 0;
1271         return 0;
1272     }
1273
1274     infoPtr->lSelMin = lStart;
1275     infoPtr->flags  |=TB_SELECTIONCHANGED;
1276
1277     if (infoPtr->lSelMin < infoPtr->lRangeMin)
1278         infoPtr->lSelMin = infoPtr->lRangeMin;
1279
1280     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1281
1282     return 0;
1283 }
1284
1285
1286 static inline LRESULT
1287 TRACKBAR_SetThumbLength (TRACKBAR_INFO *infoPtr, UINT iLength)
1288 {
1289     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_FIXEDLENGTH) {
1290         infoPtr->uThumbLen = iLength;
1291         infoPtr->flags |= TB_THUMBSIZECHANGED;
1292         InvalidateRect (infoPtr->hwndSelf, &infoPtr->rcThumb, FALSE);
1293     }
1294
1295     return 0;
1296 }
1297
1298
1299 static inline LRESULT
1300 TRACKBAR_SetTic (TRACKBAR_INFO *infoPtr, LONG lPos)
1301 {
1302     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_AUTOTICKS)
1303         return FALSE;
1304
1305     if ((lPos < infoPtr->lRangeMin) || (lPos> infoPtr->lRangeMax))
1306         return FALSE;
1307
1308     TRACE("lPos=%d\n", lPos);
1309
1310     infoPtr->uNumTics++;
1311     infoPtr->tics=ReAlloc( infoPtr->tics,
1312                                     (infoPtr->uNumTics)*sizeof (DWORD));
1313     if (!infoPtr->tics) {
1314         infoPtr->uNumTics = 0;
1315         notify(infoPtr, NM_OUTOFMEMORY);
1316         return FALSE;
1317     }
1318     infoPtr->tics[infoPtr->uNumTics-1] = lPos;
1319
1320     TRACKBAR_InvalidateAll(infoPtr);
1321
1322     return TRUE;
1323 }
1324
1325
1326 static inline LRESULT
1327 TRACKBAR_SetTicFreq (TRACKBAR_INFO *infoPtr, WORD wFreq)
1328 {
1329     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_AUTOTICKS) {
1330         infoPtr->uTicFreq = wFreq;
1331         TRACKBAR_RecalculateTics (infoPtr);
1332         TRACKBAR_InvalidateAll(infoPtr);
1333     }
1334
1335     return 0;
1336 }
1337
1338
1339 static inline INT
1340 TRACKBAR_SetTipSide (TRACKBAR_INFO *infoPtr, INT fLocation)
1341 {
1342     INT fTemp = infoPtr->fLocation;
1343
1344     infoPtr->fLocation = fLocation;
1345
1346     return fTemp;
1347 }
1348
1349
1350 static inline LRESULT
1351 TRACKBAR_SetToolTips (TRACKBAR_INFO *infoPtr, HWND hwndTT)
1352 {
1353     infoPtr->hwndToolTip = hwndTT;
1354
1355     return 0;
1356 }
1357
1358
1359 static inline BOOL
1360 TRACKBAR_SetUnicodeFormat (TRACKBAR_INFO *infoPtr, BOOL fUnicode)
1361 {
1362     BOOL bTemp = infoPtr->bUnicode;
1363
1364     infoPtr->bUnicode = fUnicode;
1365
1366     return bTemp;
1367 }
1368
1369
1370 static LRESULT
1371 TRACKBAR_InitializeThumb (TRACKBAR_INFO *infoPtr)
1372 {
1373     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
1374     RECT rect;
1375     int clientWidth, clientMetric;
1376
1377     /* initial thumb length */
1378     clientMetric = (dwStyle & TBS_ENABLESELRANGE) ? 23 : 21;
1379     GetClientRect(infoPtr->hwndSelf,&rect);
1380     if (dwStyle & TBS_VERT) {
1381         clientWidth = rect.right - rect.left;
1382     } else {
1383         clientWidth = rect.bottom - rect.top;
1384     }
1385     if (clientWidth >= clientMetric)
1386         infoPtr->uThumbLen = clientMetric;
1387     else
1388         infoPtr->uThumbLen = clientWidth > 9 ? clientWidth - 6 : 4;
1389
1390     TRACKBAR_CalcChannel (infoPtr);
1391     TRACKBAR_UpdateThumb (infoPtr);
1392     infoPtr->flags &= ~TB_SELECTIONCHANGED;
1393
1394     return 0;
1395 }
1396
1397
1398 static LRESULT
1399 TRACKBAR_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
1400 {
1401     TRACKBAR_INFO *infoPtr;
1402     DWORD dwStyle;
1403
1404     infoPtr = (TRACKBAR_INFO *)Alloc (sizeof(TRACKBAR_INFO));
1405     if (!infoPtr) return -1;
1406     SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
1407
1408     /* set default values */
1409     infoPtr->hwndSelf  = hwnd;
1410     infoPtr->lRangeMin = 0;
1411     infoPtr->lRangeMax = 100;
1412     infoPtr->lLineSize = 1;
1413     infoPtr->lPageSize = 20;
1414     infoPtr->lSelMin   = 0;
1415     infoPtr->lSelMax   = 0;
1416     infoPtr->lPos      = 0;
1417     infoPtr->fLocation = -1;
1418     infoPtr->uNumTics  = 0;    /* start and end tic are not included in count*/
1419     infoPtr->uTicFreq  = 1;
1420     infoPtr->tics      = NULL;
1421     infoPtr->hwndNotify= lpcs->hwndParent;
1422
1423     TRACKBAR_InitializeThumb (infoPtr);
1424
1425     dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1426
1427     /* Create tooltip control */
1428     if (dwStyle & TBS_TOOLTIPS) {
1429
1430         infoPtr->hwndToolTip =
1431             CreateWindowExW (0, TOOLTIPS_CLASSW, NULL, WS_POPUP,
1432                              CW_USEDEFAULT, CW_USEDEFAULT,
1433                              CW_USEDEFAULT, CW_USEDEFAULT,
1434                              hwnd, 0, 0, 0);
1435
1436         if (infoPtr->hwndToolTip) {
1437             TTTOOLINFOW ti;         
1438             ZeroMemory (&ti, sizeof(ti));
1439             ti.cbSize   = sizeof(ti);
1440             ti.uFlags   = TTF_IDISHWND | TTF_TRACK | TTF_ABSOLUTE;
1441             ti.hwnd     = hwnd;
1442
1443             SendMessageW (infoPtr->hwndToolTip, TTM_ADDTOOLW, 0, (LPARAM)&ti);
1444          }
1445     }
1446     
1447     OpenThemeData (hwnd, themeClass);
1448
1449     return 0;
1450 }
1451
1452
1453 static LRESULT
1454 TRACKBAR_Destroy (TRACKBAR_INFO *infoPtr)
1455 {
1456     /* delete tooltip control */
1457     if (infoPtr->hwndToolTip)
1458         DestroyWindow (infoPtr->hwndToolTip);
1459
1460     Free (infoPtr);
1461     SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
1462     CloseThemeData (GetWindowTheme (infoPtr->hwndSelf));
1463     return 0;
1464 }
1465
1466
1467 static LRESULT
1468 TRACKBAR_KillFocus (TRACKBAR_INFO *infoPtr, HWND hwndGetFocus)
1469 {
1470     TRACE("\n");
1471     infoPtr->bFocussed = FALSE;
1472     TRACKBAR_InvalidateAll(infoPtr);
1473
1474     return 0;
1475 }
1476
1477 static LRESULT
1478 TRACKBAR_LButtonDown (TRACKBAR_INFO *infoPtr, DWORD fwKeys, INT x, INT y)
1479 {
1480     POINT clickPoint;
1481
1482     clickPoint.x = x;
1483     clickPoint.y = y;
1484
1485     SetFocus(infoPtr->hwndSelf);
1486
1487     if (PtInRect(&infoPtr->rcThumb, clickPoint)) {
1488         infoPtr->flags |= TB_DRAG_MODE;
1489         SetCapture (infoPtr->hwndSelf);
1490         TRACKBAR_UpdateToolTip (infoPtr);
1491         TRACKBAR_ActivateToolTip (infoPtr, TRUE);
1492         TRACKBAR_InvalidateThumb(infoPtr, infoPtr->lPos);
1493     } else {
1494         LONG dir = TRACKBAR_GetAutoPageDirection(infoPtr, clickPoint);
1495         if (dir == 0) return 0;
1496         infoPtr->flags |= (dir < 0) ? TB_AUTO_PAGE_LEFT : TB_AUTO_PAGE_RIGHT;
1497         TRACKBAR_AutoPage (infoPtr, clickPoint);
1498         SetCapture (infoPtr->hwndSelf);
1499         SetTimer(infoPtr->hwndSelf, TB_REFRESH_TIMER, TB_REFRESH_DELAY, 0);
1500     }
1501
1502     return 0;
1503 }
1504
1505
1506 static LRESULT
1507 TRACKBAR_LButtonUp (TRACKBAR_INFO *infoPtr, DWORD fwKeys, INT x, INT y)
1508 {
1509     if (infoPtr->flags & TB_DRAG_MODE) {
1510         notify_with_scroll (infoPtr, TB_THUMBPOSITION | (infoPtr->lPos<<16));
1511         notify_with_scroll (infoPtr, TB_ENDTRACK);
1512         infoPtr->flags &= ~TB_DRAG_MODE;
1513         ReleaseCapture ();
1514         notify(infoPtr, NM_RELEASEDCAPTURE);
1515         TRACKBAR_ActivateToolTip(infoPtr, FALSE);
1516         TRACKBAR_InvalidateThumb(infoPtr, infoPtr->lPos);
1517     }
1518     if (infoPtr->flags & TB_AUTO_PAGE) {
1519         KillTimer (infoPtr->hwndSelf, TB_REFRESH_TIMER);
1520         infoPtr->flags &= ~TB_AUTO_PAGE;
1521         notify_with_scroll (infoPtr, TB_ENDTRACK);
1522         ReleaseCapture ();
1523         notify(infoPtr, NM_RELEASEDCAPTURE);
1524     }
1525
1526     return 0;
1527 }
1528
1529
1530 static LRESULT
1531 TRACKBAR_CaptureChanged (const TRACKBAR_INFO *infoPtr)
1532 {
1533     notify_with_scroll (infoPtr, TB_ENDTRACK);
1534     return 0;
1535 }
1536
1537
1538 static LRESULT
1539 TRACKBAR_Paint (TRACKBAR_INFO *infoPtr, HDC hdc)
1540 {
1541     if (hdc) {
1542         TRACKBAR_Refresh(infoPtr, hdc);
1543     } else {
1544         PAINTSTRUCT ps;
1545         hdc = BeginPaint (infoPtr->hwndSelf, &ps);
1546         TRACKBAR_Refresh (infoPtr, hdc);
1547         EndPaint (infoPtr->hwndSelf, &ps);
1548     }
1549
1550     return 0;
1551 }
1552
1553
1554 static LRESULT
1555 TRACKBAR_SetFocus (TRACKBAR_INFO *infoPtr, HWND hwndLoseFocus)
1556 {
1557     TRACE("\n");
1558     infoPtr->bFocussed = TRUE;
1559     TRACKBAR_InvalidateAll(infoPtr);
1560
1561     return 0;
1562 }
1563
1564
1565 static LRESULT
1566 TRACKBAR_Size (TRACKBAR_INFO *infoPtr, DWORD fwSizeType, INT nWidth, INT nHeight)
1567 {
1568     TRACKBAR_InitializeThumb (infoPtr);
1569     TRACKBAR_AlignBuddies (infoPtr);
1570
1571     return 0;
1572 }
1573
1574
1575 static LRESULT
1576 TRACKBAR_Timer (TRACKBAR_INFO *infoPtr, INT wTimerID, const TIMERPROC *tmrpc)
1577 {
1578     if (infoPtr->flags & TB_AUTO_PAGE) {
1579         POINT pt;
1580         if (GetCursorPos(&pt))
1581             if (ScreenToClient(infoPtr->hwndSelf, &pt))
1582                 TRACKBAR_AutoPage(infoPtr, pt);
1583     }
1584     return 0;
1585 }
1586
1587
1588 /* update theme after a WM_THEMECHANGED message */
1589 static LRESULT theme_changed (const TRACKBAR_INFO* infoPtr)
1590 {
1591     HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
1592     CloseThemeData (theme);
1593     theme = OpenThemeData (infoPtr->hwndSelf, themeClass);
1594     return 0;
1595 }
1596
1597
1598 static LRESULT
1599 TRACKBAR_MouseMove (TRACKBAR_INFO *infoPtr, DWORD fwKeys, INT x, INT y)
1600 {
1601     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
1602     INT clickPlace = (dwStyle & TBS_VERT) ? y : x;
1603     LONG dragPos, oldPos = infoPtr->lPos;
1604
1605     TRACE("(x=%d. y=%d)\n", x, y);
1606
1607     if (infoPtr->flags & TB_AUTO_PAGE) {
1608         POINT pt;
1609         pt.x = x;
1610         pt.y = y;
1611         TRACKBAR_AutoPage (infoPtr, pt);
1612         return TRUE;
1613     }
1614
1615     if (!(infoPtr->flags & TB_DRAG_MODE)) 
1616     {
1617         if (GetWindowTheme (infoPtr->hwndSelf))
1618         {
1619             DWORD oldFlags = infoPtr->flags;
1620             POINT pt;
1621             pt.x = x;
1622             pt.y = y;
1623             if (PtInRect (&infoPtr->rcThumb, pt))
1624             {
1625                 TRACKMOUSEEVENT tme;
1626                 tme.cbSize = sizeof( tme );
1627                 tme.dwFlags = TME_LEAVE;
1628                 tme.hwndTrack = infoPtr->hwndSelf;
1629                 TrackMouseEvent( &tme );
1630                 infoPtr->flags |= TB_THUMB_HOT;
1631             }
1632             else
1633             {
1634                 TRACKMOUSEEVENT tme;
1635                 tme.cbSize = sizeof( tme );
1636                 tme.dwFlags = TME_CANCEL;
1637                 tme.hwndTrack = infoPtr->hwndSelf;
1638                 TrackMouseEvent( &tme );
1639                 infoPtr->flags &= ~TB_THUMB_HOT; 
1640             }
1641             if (oldFlags != infoPtr->flags) InvalidateRect (infoPtr->hwndSelf, &infoPtr->rcThumb, FALSE);
1642         }
1643         return TRUE;
1644     }
1645
1646     dragPos = TRACKBAR_ConvertPlaceToPosition (infoPtr, clickPlace,
1647                                                dwStyle & TBS_VERT);
1648     if (dragPos == oldPos) return TRUE;
1649
1650     infoPtr->lPos = dragPos;
1651
1652     infoPtr->flags |= TB_THUMBPOSCHANGED;
1653     notify_with_scroll (infoPtr, TB_THUMBTRACK | (infoPtr->lPos<<16));
1654
1655
1656     TRACKBAR_InvalidateThumbMove(infoPtr, oldPos, dragPos);
1657     UpdateWindow (infoPtr->hwndSelf);
1658
1659     return TRUE;
1660 }
1661
1662 static BOOL
1663 TRACKBAR_KeyDown (TRACKBAR_INFO *infoPtr, INT nVirtKey, DWORD lKeyData)
1664 {
1665     DWORD style = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
1666     BOOL downIsLeft = style & TBS_DOWNISLEFT;
1667     BOOL vert = style & TBS_VERT;
1668     LONG pos = infoPtr->lPos;
1669
1670     TRACE("%x\n", nVirtKey);
1671
1672     switch (nVirtKey) {
1673     case VK_UP:
1674         if (!vert && downIsLeft) TRACKBAR_LineDown(infoPtr);
1675         else TRACKBAR_LineUp(infoPtr);
1676         break;
1677     case VK_LEFT:
1678         if (vert && downIsLeft) TRACKBAR_LineDown(infoPtr);
1679         else TRACKBAR_LineUp(infoPtr);
1680         break;
1681     case VK_DOWN:
1682         if (!vert && downIsLeft) TRACKBAR_LineUp(infoPtr);
1683         else TRACKBAR_LineDown(infoPtr);
1684         break;
1685     case VK_RIGHT:
1686         if (vert && downIsLeft) TRACKBAR_LineUp(infoPtr);
1687         else TRACKBAR_LineDown(infoPtr);
1688         break;
1689     case VK_NEXT:
1690         if (!vert && downIsLeft) TRACKBAR_PageUp(infoPtr);
1691         else TRACKBAR_PageDown(infoPtr);
1692         break;
1693     case VK_PRIOR:
1694         if (!vert && downIsLeft) TRACKBAR_PageDown(infoPtr);
1695         else TRACKBAR_PageUp(infoPtr);
1696         break;
1697     case VK_HOME:
1698         if (infoPtr->lPos == infoPtr->lRangeMin) return FALSE;
1699         infoPtr->lPos = infoPtr->lRangeMin;
1700         notify_with_scroll (infoPtr, TB_TOP);
1701         break;
1702     case VK_END:
1703         if (infoPtr->lPos == infoPtr->lRangeMax) return FALSE;
1704         infoPtr->lPos = infoPtr->lRangeMax;
1705         notify_with_scroll (infoPtr, TB_BOTTOM);
1706         break;
1707     }
1708
1709     if (pos != infoPtr->lPos) {
1710         infoPtr->flags |=TB_THUMBPOSCHANGED;
1711         TRACKBAR_InvalidateThumbMove (infoPtr, pos, infoPtr->lPos);
1712     }
1713
1714     return TRUE;
1715 }
1716
1717
1718 static inline BOOL
1719 TRACKBAR_KeyUp (const TRACKBAR_INFO *infoPtr, INT nVirtKey, DWORD lKeyData)
1720 {
1721     switch (nVirtKey) {
1722     case VK_LEFT:
1723     case VK_UP:
1724     case VK_RIGHT:
1725     case VK_DOWN:
1726     case VK_NEXT:
1727     case VK_PRIOR:
1728     case VK_HOME:
1729     case VK_END:
1730         notify_with_scroll (infoPtr, TB_ENDTRACK);
1731     }
1732     return TRUE;
1733 }
1734
1735
1736 static LRESULT WINAPI
1737 TRACKBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1738 {
1739     TRACKBAR_INFO *infoPtr = (TRACKBAR_INFO *)GetWindowLongPtrW (hwnd, 0);
1740
1741     TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n", hwnd, uMsg, wParam, lParam);
1742
1743     if (!infoPtr && (uMsg != WM_CREATE))
1744         return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1745
1746     switch (uMsg)
1747     {
1748     case TBM_CLEARSEL:
1749         return TRACKBAR_ClearSel (infoPtr, (BOOL)wParam);
1750
1751     case TBM_CLEARTICS:
1752         return TRACKBAR_ClearTics (infoPtr, (BOOL)wParam);
1753
1754     case TBM_GETBUDDY:
1755         return (LRESULT)(wParam ? infoPtr->hwndBuddyLA : infoPtr->hwndBuddyRB);
1756
1757     case TBM_GETCHANNELRECT:
1758         return TRACKBAR_GetChannelRect (infoPtr, (LPRECT)lParam);
1759
1760     case TBM_GETLINESIZE:
1761         return infoPtr->lLineSize;
1762
1763     case TBM_GETNUMTICS:
1764         return TRACKBAR_GetNumTics (infoPtr);
1765
1766     case TBM_GETPAGESIZE:
1767         return infoPtr->lPageSize;
1768
1769     case TBM_GETPOS:
1770         return infoPtr->lPos;
1771
1772     case TBM_GETPTICS:
1773         return (LRESULT)infoPtr->tics;
1774
1775     case TBM_GETRANGEMAX:
1776         return infoPtr->lRangeMax;
1777
1778     case TBM_GETRANGEMIN:
1779         return infoPtr->lRangeMin;
1780
1781     case TBM_GETSELEND:
1782         return infoPtr->lSelMax;
1783
1784     case TBM_GETSELSTART:
1785         return infoPtr->lSelMin;
1786
1787     case TBM_GETTHUMBLENGTH:
1788         return infoPtr->uThumbLen;
1789
1790     case TBM_GETTHUMBRECT:
1791         return CopyRect((LPRECT)lParam, &infoPtr->rcThumb);
1792
1793     case TBM_GETTIC:
1794         return TRACKBAR_GetTic (infoPtr, (INT)wParam);
1795
1796     case TBM_GETTICPOS:
1797         return TRACKBAR_GetTicPos (infoPtr, (INT)wParam);
1798
1799     case TBM_GETTOOLTIPS:
1800         return (LRESULT)infoPtr->hwndToolTip;
1801
1802     case TBM_GETUNICODEFORMAT:
1803         return infoPtr->bUnicode;
1804
1805     case TBM_SETBUDDY:
1806         return (LRESULT) TRACKBAR_SetBuddy(infoPtr, (BOOL)wParam, (HWND)lParam);
1807
1808     case TBM_SETLINESIZE:
1809         return TRACKBAR_SetLineSize (infoPtr, (LONG)lParam);
1810
1811     case TBM_SETPAGESIZE:
1812         return TRACKBAR_SetPageSize (infoPtr, (LONG)lParam);
1813
1814     case TBM_SETPOS:
1815         return TRACKBAR_SetPos (infoPtr, (BOOL)wParam, (LONG)lParam);
1816
1817     case TBM_SETRANGE:
1818         return TRACKBAR_SetRange (infoPtr, (BOOL)wParam, (LONG)lParam);
1819
1820     case TBM_SETRANGEMAX:
1821         return TRACKBAR_SetRangeMax (infoPtr, (BOOL)wParam, (LONG)lParam);
1822
1823     case TBM_SETRANGEMIN:
1824         return TRACKBAR_SetRangeMin (infoPtr, (BOOL)wParam, (LONG)lParam);
1825
1826     case TBM_SETSEL:
1827         return TRACKBAR_SetSel (infoPtr, (BOOL)wParam, (LONG)lParam);
1828
1829     case TBM_SETSELEND:
1830         return TRACKBAR_SetSelEnd (infoPtr, (BOOL)wParam, (LONG)lParam);
1831
1832     case TBM_SETSELSTART:
1833         return TRACKBAR_SetSelStart (infoPtr, (BOOL)wParam, (LONG)lParam);
1834
1835     case TBM_SETTHUMBLENGTH:
1836         return TRACKBAR_SetThumbLength (infoPtr, (UINT)wParam);
1837
1838     case TBM_SETTIC:
1839         return TRACKBAR_SetTic (infoPtr, (LONG)lParam);
1840
1841     case TBM_SETTICFREQ:
1842         return TRACKBAR_SetTicFreq (infoPtr, (WORD)wParam);
1843
1844     case TBM_SETTIPSIDE:
1845         return TRACKBAR_SetTipSide (infoPtr, (INT)wParam);
1846
1847     case TBM_SETTOOLTIPS:
1848         return TRACKBAR_SetToolTips (infoPtr, (HWND)wParam);
1849
1850     case TBM_SETUNICODEFORMAT:
1851         return TRACKBAR_SetUnicodeFormat (infoPtr, (BOOL)wParam);
1852
1853
1854     case WM_CAPTURECHANGED:
1855         return TRACKBAR_CaptureChanged (infoPtr);
1856
1857     case WM_CREATE:
1858         return TRACKBAR_Create (hwnd, (LPCREATESTRUCTW)lParam);
1859
1860     case WM_DESTROY:
1861         return TRACKBAR_Destroy (infoPtr);
1862
1863 /*      case WM_ENABLE: */
1864
1865     case WM_ERASEBKGND:
1866         return 0;
1867
1868     case WM_GETDLGCODE:
1869         return DLGC_WANTARROWS;
1870
1871     case WM_KEYDOWN:
1872         return TRACKBAR_KeyDown (infoPtr, (INT)wParam, (DWORD)lParam);
1873
1874     case WM_KEYUP:
1875         return TRACKBAR_KeyUp (infoPtr, (INT)wParam, (DWORD)lParam);
1876
1877     case WM_KILLFOCUS:
1878         return TRACKBAR_KillFocus (infoPtr, (HWND)wParam);
1879
1880     case WM_LBUTTONDOWN:
1881         return TRACKBAR_LButtonDown (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1882
1883     case WM_LBUTTONUP:
1884         return TRACKBAR_LButtonUp (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1885
1886     case WM_MOUSELEAVE:
1887         infoPtr->flags &= ~TB_THUMB_HOT; 
1888         InvalidateRect (infoPtr->hwndSelf, &infoPtr->rcThumb, FALSE);
1889         return 0;
1890     
1891     case WM_MOUSEMOVE:
1892         return TRACKBAR_MouseMove (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1893
1894     case WM_PRINTCLIENT:
1895     case WM_PAINT:
1896         return TRACKBAR_Paint (infoPtr, (HDC)wParam);
1897
1898     case WM_SETFOCUS:
1899         return TRACKBAR_SetFocus (infoPtr, (HWND)wParam);
1900
1901     case WM_SIZE:
1902         return TRACKBAR_Size (infoPtr, wParam, LOWORD(lParam), HIWORD(lParam));
1903
1904     case WM_THEMECHANGED:
1905         return theme_changed (infoPtr);
1906
1907     case WM_TIMER:
1908         return TRACKBAR_Timer (infoPtr, (INT)wParam, (TIMERPROC *)lParam);
1909
1910     case WM_WININICHANGE:
1911         return TRACKBAR_InitializeThumb (infoPtr);
1912
1913     default:
1914         if ((uMsg >= WM_USER) && (uMsg < WM_APP))
1915             ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
1916         return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1917     }
1918 }
1919
1920
1921 void TRACKBAR_Register (void)
1922 {
1923     WNDCLASSW wndClass;
1924
1925     ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1926     wndClass.style         = CS_GLOBALCLASS;
1927     wndClass.lpfnWndProc   = TRACKBAR_WindowProc;
1928     wndClass.cbClsExtra    = 0;
1929     wndClass.cbWndExtra    = sizeof(TRACKBAR_INFO *);
1930     wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1931     wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
1932     wndClass.lpszClassName = TRACKBAR_CLASSW;
1933
1934     RegisterClassW (&wndClass);
1935 }
1936
1937
1938 void TRACKBAR_Unregister (void)
1939 {
1940     UnregisterClassW (TRACKBAR_CLASSW, NULL);
1941 }