version: Return ERROR_RESOURCE_DATA_NOT_FOUND if the file does not have version infor...
[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 background */
869     if (gcdrf == CDRF_DODEFAULT ||
870         notify_customdraw(infoPtr, &nmcd, CDDS_PREERASE) != CDRF_SKIPDEFAULT) {
871         if ((theme = GetWindowTheme (infoPtr->hwndSelf))) {
872             DrawThemeParentBackground (infoPtr->hwndSelf, hdc, 0);
873         }
874         else
875             FillRect (hdc, &rcClient, GetSysColorBrush(COLOR_BTNFACE));
876         if (gcdrf != CDRF_DODEFAULT)
877             notify_customdraw(infoPtr, &nmcd, CDDS_POSTERASE);
878     }
879     
880     /* draw channel */
881     if (gcdrf & CDRF_NOTIFYITEMDRAW) {
882         nmcd.dwItemSpec = TBCD_CHANNEL;
883         nmcd.uItemState = CDIS_DEFAULT;
884         nmcd.rc = infoPtr->rcChannel;
885         icdrf = notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPREPAINT);
886     } else icdrf = CDRF_DODEFAULT;
887     if ( !(icdrf & CDRF_SKIPDEFAULT) ) {
888         TRACKBAR_DrawChannel (infoPtr, hdc, dwStyle);
889         if (icdrf & CDRF_NOTIFYPOSTPAINT)
890             notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPOSTPAINT);
891     }
892
893
894     /* draw tics */
895     if (!(dwStyle & TBS_NOTICKS)) {
896         if (gcdrf & CDRF_NOTIFYITEMDRAW) {
897             nmcd.dwItemSpec = TBCD_TICS;
898             nmcd.uItemState = CDIS_DEFAULT;
899             nmcd.rc = rcClient;
900             icdrf = notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPREPAINT);
901         } else icdrf = CDRF_DODEFAULT;
902         if ( !(icdrf & CDRF_SKIPDEFAULT) ) {
903             TRACKBAR_DrawTics (infoPtr, hdc, dwStyle);
904             if (icdrf & CDRF_NOTIFYPOSTPAINT)
905                 notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPOSTPAINT);
906         }
907     }
908     
909     /* draw thumb */
910     if (!(dwStyle & TBS_NOTHUMB)) {
911         if (gcdrf & CDRF_NOTIFYITEMDRAW) {
912             nmcd.dwItemSpec = TBCD_THUMB;
913             nmcd.uItemState = infoPtr->flags & TB_DRAG_MODE ? CDIS_HOT : CDIS_DEFAULT;
914             nmcd.rc = infoPtr->rcThumb;
915             icdrf = notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPREPAINT);
916         } else icdrf = CDRF_DODEFAULT;
917         if ( !(icdrf & CDRF_SKIPDEFAULT) ) {
918             TRACKBAR_DrawThumb(infoPtr, hdc, dwStyle);
919             if (icdrf & CDRF_NOTIFYPOSTPAINT)
920                 notify_customdraw(infoPtr, &nmcd, CDDS_ITEMPOSTPAINT);
921         }
922     }
923
924     /* draw focus rectangle */
925     if (infoPtr->bFocussed) {
926         DrawFocusRect(hdc, &rcClient);
927     }
928
929     /* finish up the painting */
930     if (gcdrf & CDRF_NOTIFYPOSTPAINT)
931         notify_customdraw(infoPtr, &nmcd, CDDS_POSTPAINT);
932     
933 cleanup:
934     /* cleanup, if we rendered offscreen */
935     if (hdc != hdcDst) {
936         BitBlt(hdcDst, 0, 0, rcClient.right, rcClient.bottom, hdc, 0, 0, SRCCOPY);
937         SelectObject(hdc, hOldBmp);
938         DeleteObject(hOffScreenBmp);
939         DeleteObject(hdc);
940     }
941 }
942
943
944 static void
945 TRACKBAR_AlignBuddies (const TRACKBAR_INFO *infoPtr)
946 {
947     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
948     HWND hwndParent = GetParent (infoPtr->hwndSelf);
949     RECT rcSelf, rcBuddy;
950     INT x, y;
951
952     GetWindowRect (infoPtr->hwndSelf, &rcSelf);
953     MapWindowPoints (HWND_DESKTOP, hwndParent, (LPPOINT)&rcSelf, 2);
954
955     /* align buddy left or above */
956     if (infoPtr->hwndBuddyLA) {
957         GetWindowRect (infoPtr->hwndBuddyLA, &rcBuddy);
958         MapWindowPoints (HWND_DESKTOP, hwndParent, (LPPOINT)&rcBuddy, 2);
959
960         if (dwStyle & TBS_VERT) {
961             x = (infoPtr->rcChannel.right + infoPtr->rcChannel.left) / 2 -
962                 (rcBuddy.right - rcBuddy.left) / 2 + rcSelf.left;
963             y = rcSelf.top - (rcBuddy.bottom - rcBuddy.top);
964         }
965         else {
966             x = rcSelf.left - (rcBuddy.right - rcBuddy.left);
967             y = (infoPtr->rcChannel.bottom + infoPtr->rcChannel.top) / 2 -
968                 (rcBuddy.bottom - rcBuddy.top) / 2 + rcSelf.top;
969         }
970
971         SetWindowPos (infoPtr->hwndBuddyLA, 0, x, y, 0, 0,
972                       SWP_NOZORDER | SWP_NOSIZE);
973     }
974
975
976     /* align buddy right or below */
977     if (infoPtr->hwndBuddyRB) {
978         GetWindowRect (infoPtr->hwndBuddyRB, &rcBuddy);
979         MapWindowPoints (HWND_DESKTOP, hwndParent, (LPPOINT)&rcBuddy, 2);
980
981         if (dwStyle & TBS_VERT) {
982             x = (infoPtr->rcChannel.right + infoPtr->rcChannel.left) / 2 -
983                 (rcBuddy.right - rcBuddy.left) / 2 + rcSelf.left;
984             y = rcSelf.bottom;
985         }
986         else {
987             x = rcSelf.right;
988             y = (infoPtr->rcChannel.bottom + infoPtr->rcChannel.top) / 2 -
989                 (rcBuddy.bottom - rcBuddy.top) / 2 + rcSelf.top;
990         }
991         SetWindowPos (infoPtr->hwndBuddyRB, 0, x, y, 0, 0,
992                       SWP_NOZORDER | SWP_NOSIZE);
993     }
994 }
995
996
997 static LRESULT
998 TRACKBAR_ClearSel (TRACKBAR_INFO *infoPtr, BOOL fRedraw)
999 {
1000     infoPtr->lSelMin = 0;
1001     infoPtr->lSelMax = 0;
1002     infoPtr->flags |= TB_SELECTIONCHANGED;
1003
1004     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1005
1006     return 0;
1007 }
1008
1009
1010 static LRESULT
1011 TRACKBAR_ClearTics (TRACKBAR_INFO *infoPtr, BOOL fRedraw)
1012 {
1013     if (infoPtr->tics) {
1014         Free (infoPtr->tics);
1015         infoPtr->tics = NULL;
1016         infoPtr->uNumTics = 0;
1017     }
1018
1019     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1020
1021     return 0;
1022 }
1023
1024
1025 static inline LRESULT
1026 TRACKBAR_GetChannelRect (const TRACKBAR_INFO *infoPtr, LPRECT lprc)
1027 {
1028     if (lprc == NULL) return 0;
1029
1030     lprc->left   = infoPtr->rcChannel.left;
1031     lprc->right  = infoPtr->rcChannel.right;
1032     lprc->bottom = infoPtr->rcChannel.bottom;
1033     lprc->top    = infoPtr->rcChannel.top;
1034
1035     return 0;
1036 }
1037
1038
1039 static inline LONG
1040 TRACKBAR_GetNumTics (const TRACKBAR_INFO *infoPtr)
1041 {
1042     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_NOTICKS)
1043         return 0;
1044
1045     if(infoPtr->uNumTics == 0)
1046         return 2;
1047     else
1048         return infoPtr->uNumTics + 1;
1049 }
1050
1051
1052 static int comp_tics (const void *ap, const void *bp)
1053 {
1054     const DWORD a = *(const DWORD *)ap;
1055     const DWORD b = *(const DWORD *)bp;
1056
1057     TRACE("(a=%d, b=%d)\n", a, b);
1058     if (a < b) return -1;
1059     if (a > b) return 1;
1060     return 0;
1061 }
1062
1063
1064 static inline LONG
1065 TRACKBAR_GetTic (const TRACKBAR_INFO *infoPtr, INT iTic)
1066 {
1067     if ((iTic < 0) || (iTic >= infoPtr->uNumTics) || !infoPtr->tics)
1068         return -1;
1069
1070     qsort(infoPtr->tics, infoPtr->uNumTics, sizeof(DWORD), comp_tics);
1071     return infoPtr->tics[iTic];
1072 }
1073
1074
1075 static inline LONG
1076 TRACKBAR_GetTicPos (const TRACKBAR_INFO *infoPtr, INT iTic)
1077 {
1078     LONG range, width, pos, tic;
1079     int offsetthumb;
1080
1081     if ((iTic < 0) || (iTic >= infoPtr->uNumTics) || !infoPtr->tics)
1082         return -1;
1083
1084     tic   = TRACKBAR_GetTic (infoPtr, iTic);
1085     range = infoPtr->lRangeMax - infoPtr->lRangeMin;
1086     if (range <= 0) range = 1;
1087     offsetthumb = (infoPtr->rcThumb.right - infoPtr->rcThumb.left)/2;
1088     width = infoPtr->rcChannel.right - infoPtr->rcChannel.left - offsetthumb*2;
1089     pos   = infoPtr->rcChannel.left + offsetthumb + (width * tic) / range;
1090
1091     return pos;
1092 }
1093
1094
1095 static HWND
1096 TRACKBAR_SetBuddy (TRACKBAR_INFO *infoPtr, BOOL fLocation, HWND hwndBuddy)
1097 {
1098     HWND hwndTemp;
1099
1100     if (fLocation) {
1101         /* buddy is left or above */
1102         hwndTemp = infoPtr->hwndBuddyLA;
1103         infoPtr->hwndBuddyLA = hwndBuddy;
1104     }
1105     else {
1106         /* buddy is right or below */
1107         hwndTemp = infoPtr->hwndBuddyRB;
1108         infoPtr->hwndBuddyRB = hwndBuddy;
1109     }
1110
1111     TRACKBAR_AlignBuddies (infoPtr);
1112
1113     return hwndTemp;
1114 }
1115
1116
1117 static inline LONG
1118 TRACKBAR_SetLineSize (TRACKBAR_INFO *infoPtr, LONG lLineSize)
1119 {
1120     LONG lTemp = infoPtr->lLineSize;
1121
1122     infoPtr->lLineSize = lLineSize;
1123
1124     return lTemp;
1125 }
1126
1127
1128 static inline LONG
1129 TRACKBAR_SetPageSize (TRACKBAR_INFO *infoPtr, LONG lPageSize)
1130 {
1131     LONG lTemp = infoPtr->lPageSize;
1132
1133     infoPtr->lPageSize = lPageSize;
1134
1135     return lTemp;
1136 }
1137
1138
1139 static inline LRESULT
1140 TRACKBAR_SetPos (TRACKBAR_INFO *infoPtr, BOOL fPosition, LONG lPosition)
1141 {
1142     LONG oldPos = infoPtr->lPos;
1143     infoPtr->lPos = lPosition;
1144
1145     if (infoPtr->lPos < infoPtr->lRangeMin)
1146         infoPtr->lPos = infoPtr->lRangeMin;
1147
1148     if (infoPtr->lPos > infoPtr->lRangeMax)
1149         infoPtr->lPos = infoPtr->lRangeMax;
1150     infoPtr->flags |= TB_THUMBPOSCHANGED;
1151
1152     if (fPosition) TRACKBAR_InvalidateThumbMove(infoPtr, oldPos, lPosition);
1153
1154     return 0;
1155 }
1156
1157
1158 static inline LRESULT
1159 TRACKBAR_SetRange (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lRange)
1160 {
1161     infoPtr->lRangeMin = (SHORT)LOWORD(lRange);
1162     infoPtr->lRangeMax = (SHORT)HIWORD(lRange);
1163
1164     if (infoPtr->lPos < infoPtr->lRangeMin) {
1165         infoPtr->lPos = infoPtr->lRangeMin;
1166         infoPtr->flags |= TB_THUMBPOSCHANGED;
1167     }
1168
1169     if (infoPtr->lPos > infoPtr->lRangeMax) {
1170         infoPtr->lPos = infoPtr->lRangeMax;
1171         infoPtr->flags |= TB_THUMBPOSCHANGED;
1172     }
1173
1174     infoPtr->lPageSize = (infoPtr->lRangeMax - infoPtr->lRangeMin) / 5;
1175     if (infoPtr->lPageSize == 0) infoPtr->lPageSize = 1;
1176
1177     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1178
1179     return 0;
1180 }
1181
1182
1183 static inline LRESULT
1184 TRACKBAR_SetRangeMax (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lMax)
1185 {
1186     infoPtr->lRangeMax = lMax;
1187     if (infoPtr->lPos > infoPtr->lRangeMax) {
1188         infoPtr->lPos = infoPtr->lRangeMax;
1189         infoPtr->flags |= TB_THUMBPOSCHANGED;
1190     }
1191
1192     infoPtr->lPageSize = (infoPtr->lRangeMax - infoPtr->lRangeMin) / 5;
1193     if (infoPtr->lPageSize == 0) infoPtr->lPageSize = 1;
1194
1195     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1196
1197     return 0;
1198 }
1199
1200
1201 static inline LRESULT
1202 TRACKBAR_SetRangeMin (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lMin)
1203 {
1204     infoPtr->lRangeMin = lMin;
1205     if (infoPtr->lPos < infoPtr->lRangeMin) {
1206         infoPtr->lPos = infoPtr->lRangeMin;
1207         infoPtr->flags |= TB_THUMBPOSCHANGED;
1208     }
1209
1210     infoPtr->lPageSize = (infoPtr->lRangeMax - infoPtr->lRangeMin) / 5;
1211     if (infoPtr->lPageSize == 0) infoPtr->lPageSize = 1;
1212
1213     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1214
1215     return 0;
1216 }
1217
1218
1219 static inline LRESULT
1220 TRACKBAR_SetSel (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lSel)
1221 {
1222     if (!(GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_ENABLESELRANGE)){
1223         infoPtr->lSelMin = 0;
1224         infoPtr->lSelMax = 0;
1225         return 0;
1226     }
1227
1228     infoPtr->lSelMin = (SHORT)LOWORD(lSel);
1229     infoPtr->lSelMax = (SHORT)HIWORD(lSel);
1230     infoPtr->flags |= TB_SELECTIONCHANGED;
1231
1232     if (infoPtr->lSelMin < infoPtr->lRangeMin)
1233         infoPtr->lSelMin = infoPtr->lRangeMin;
1234     if (infoPtr->lSelMax > infoPtr->lRangeMax)
1235         infoPtr->lSelMax = infoPtr->lRangeMax;
1236
1237     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1238
1239     return 0;
1240 }
1241
1242
1243 static inline LRESULT
1244 TRACKBAR_SetSelEnd (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lEnd)
1245 {
1246     if (!(GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_ENABLESELRANGE)){
1247         infoPtr->lSelMax = 0;
1248         return 0;
1249     }
1250
1251     infoPtr->lSelMax = lEnd;
1252     infoPtr->flags |= TB_SELECTIONCHANGED;
1253
1254     if (infoPtr->lSelMax > infoPtr->lRangeMax)
1255         infoPtr->lSelMax = infoPtr->lRangeMax;
1256
1257     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1258
1259     return 0;
1260 }
1261
1262
1263 static inline LRESULT
1264 TRACKBAR_SetSelStart (TRACKBAR_INFO *infoPtr, BOOL fRedraw, LONG lStart)
1265 {
1266     if (!(GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_ENABLESELRANGE)){
1267         infoPtr->lSelMin = 0;
1268         return 0;
1269     }
1270
1271     infoPtr->lSelMin = lStart;
1272     infoPtr->flags  |=TB_SELECTIONCHANGED;
1273
1274     if (infoPtr->lSelMin < infoPtr->lRangeMin)
1275         infoPtr->lSelMin = infoPtr->lRangeMin;
1276
1277     if (fRedraw) TRACKBAR_InvalidateAll(infoPtr);
1278
1279     return 0;
1280 }
1281
1282
1283 static inline LRESULT
1284 TRACKBAR_SetThumbLength (TRACKBAR_INFO *infoPtr, UINT iLength)
1285 {
1286     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_FIXEDLENGTH) {
1287         infoPtr->uThumbLen = iLength;
1288         infoPtr->flags |= TB_THUMBSIZECHANGED;
1289         InvalidateRect (infoPtr->hwndSelf, &infoPtr->rcThumb, FALSE);
1290     }
1291
1292     return 0;
1293 }
1294
1295
1296 static inline LRESULT
1297 TRACKBAR_SetTic (TRACKBAR_INFO *infoPtr, LONG lPos)
1298 {
1299     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_AUTOTICKS)
1300         return FALSE;
1301
1302     if ((lPos < infoPtr->lRangeMin) || (lPos> infoPtr->lRangeMax))
1303         return FALSE;
1304
1305     TRACE("lPos=%d\n", lPos);
1306
1307     infoPtr->uNumTics++;
1308     infoPtr->tics=ReAlloc( infoPtr->tics,
1309                                     (infoPtr->uNumTics)*sizeof (DWORD));
1310     if (!infoPtr->tics) {
1311         infoPtr->uNumTics = 0;
1312         notify(infoPtr, NM_OUTOFMEMORY);
1313         return FALSE;
1314     }
1315     infoPtr->tics[infoPtr->uNumTics-1] = lPos;
1316
1317     TRACKBAR_InvalidateAll(infoPtr);
1318
1319     return TRUE;
1320 }
1321
1322
1323 static inline LRESULT
1324 TRACKBAR_SetTicFreq (TRACKBAR_INFO *infoPtr, WORD wFreq)
1325 {
1326     if (GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE) & TBS_AUTOTICKS) {
1327         infoPtr->uTicFreq = wFreq;
1328         TRACKBAR_RecalculateTics (infoPtr);
1329         TRACKBAR_InvalidateAll(infoPtr);
1330     }
1331
1332     return 0;
1333 }
1334
1335
1336 static inline INT
1337 TRACKBAR_SetTipSide (TRACKBAR_INFO *infoPtr, INT fLocation)
1338 {
1339     INT fTemp = infoPtr->fLocation;
1340
1341     infoPtr->fLocation = fLocation;
1342
1343     return fTemp;
1344 }
1345
1346
1347 static inline LRESULT
1348 TRACKBAR_SetToolTips (TRACKBAR_INFO *infoPtr, HWND hwndTT)
1349 {
1350     infoPtr->hwndToolTip = hwndTT;
1351
1352     return 0;
1353 }
1354
1355
1356 static inline BOOL
1357 TRACKBAR_SetUnicodeFormat (TRACKBAR_INFO *infoPtr, BOOL fUnicode)
1358 {
1359     BOOL bTemp = infoPtr->bUnicode;
1360
1361     infoPtr->bUnicode = fUnicode;
1362
1363     return bTemp;
1364 }
1365
1366
1367 static LRESULT
1368 TRACKBAR_InitializeThumb (TRACKBAR_INFO *infoPtr)
1369 {
1370     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
1371     RECT rect;
1372     int clientWidth, clientMetric;
1373
1374     /* initial thumb length */
1375     clientMetric = (dwStyle & TBS_ENABLESELRANGE) ? 23 : 21;
1376     GetClientRect(infoPtr->hwndSelf,&rect);
1377     if (dwStyle & TBS_VERT) {
1378         clientWidth = rect.right - rect.left;
1379     } else {
1380         clientWidth = rect.bottom - rect.top;
1381     }
1382     if (clientWidth >= clientMetric)
1383         infoPtr->uThumbLen = clientMetric;
1384     else
1385         infoPtr->uThumbLen = clientWidth > 9 ? clientWidth - 6 : 4;
1386
1387     TRACKBAR_CalcChannel (infoPtr);
1388     TRACKBAR_UpdateThumb (infoPtr);
1389     infoPtr->flags &= ~TB_SELECTIONCHANGED;
1390
1391     return 0;
1392 }
1393
1394
1395 static LRESULT
1396 TRACKBAR_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
1397 {
1398     TRACKBAR_INFO *infoPtr;
1399     DWORD dwStyle;
1400
1401     infoPtr = (TRACKBAR_INFO *)Alloc (sizeof(TRACKBAR_INFO));
1402     if (!infoPtr) return -1;
1403     SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
1404
1405     /* set default values */
1406     infoPtr->hwndSelf  = hwnd;
1407     infoPtr->lRangeMin = 0;
1408     infoPtr->lRangeMax = 100;
1409     infoPtr->lLineSize = 1;
1410     infoPtr->lPageSize = 20;
1411     infoPtr->lSelMin   = 0;
1412     infoPtr->lSelMax   = 0;
1413     infoPtr->lPos      = 0;
1414     infoPtr->fLocation = -1;
1415     infoPtr->uNumTics  = 0;    /* start and end tic are not included in count*/
1416     infoPtr->uTicFreq  = 1;
1417     infoPtr->tics      = NULL;
1418     infoPtr->hwndNotify= lpcs->hwndParent;
1419
1420     TRACKBAR_InitializeThumb (infoPtr);
1421
1422     dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
1423
1424     /* Create tooltip control */
1425     if (dwStyle & TBS_TOOLTIPS) {
1426
1427         infoPtr->hwndToolTip =
1428             CreateWindowExW (0, TOOLTIPS_CLASSW, NULL, WS_POPUP,
1429                              CW_USEDEFAULT, CW_USEDEFAULT,
1430                              CW_USEDEFAULT, CW_USEDEFAULT,
1431                              hwnd, 0, 0, 0);
1432
1433         if (infoPtr->hwndToolTip) {
1434             TTTOOLINFOW ti;         
1435             ZeroMemory (&ti, sizeof(ti));
1436             ti.cbSize   = sizeof(ti);
1437             ti.uFlags   = TTF_IDISHWND | TTF_TRACK | TTF_ABSOLUTE;
1438             ti.hwnd     = hwnd;
1439
1440             SendMessageW (infoPtr->hwndToolTip, TTM_ADDTOOLW, 0, (LPARAM)&ti);
1441          }
1442     }
1443     
1444     OpenThemeData (hwnd, themeClass);
1445
1446     return 0;
1447 }
1448
1449
1450 static LRESULT
1451 TRACKBAR_Destroy (TRACKBAR_INFO *infoPtr)
1452 {
1453     /* delete tooltip control */
1454     if (infoPtr->hwndToolTip)
1455         DestroyWindow (infoPtr->hwndToolTip);
1456
1457     Free (infoPtr);
1458     SetWindowLongPtrW (infoPtr->hwndSelf, 0, 0);
1459     CloseThemeData (GetWindowTheme (infoPtr->hwndSelf));
1460     return 0;
1461 }
1462
1463
1464 static LRESULT
1465 TRACKBAR_KillFocus (TRACKBAR_INFO *infoPtr, HWND hwndGetFocus)
1466 {
1467     TRACE("\n");
1468     infoPtr->bFocussed = FALSE;
1469     TRACKBAR_InvalidateAll(infoPtr);
1470
1471     return 0;
1472 }
1473
1474 static LRESULT
1475 TRACKBAR_LButtonDown (TRACKBAR_INFO *infoPtr, DWORD fwKeys, INT x, INT y)
1476 {
1477     POINT clickPoint;
1478
1479     clickPoint.x = x;
1480     clickPoint.y = y;
1481
1482     SetFocus(infoPtr->hwndSelf);
1483
1484     if (PtInRect(&infoPtr->rcThumb, clickPoint)) {
1485         infoPtr->flags |= TB_DRAG_MODE;
1486         SetCapture (infoPtr->hwndSelf);
1487         TRACKBAR_UpdateToolTip (infoPtr);
1488         TRACKBAR_ActivateToolTip (infoPtr, TRUE);
1489         TRACKBAR_InvalidateThumb(infoPtr, infoPtr->lPos);
1490     } else {
1491         LONG dir = TRACKBAR_GetAutoPageDirection(infoPtr, clickPoint);
1492         if (dir == 0) return 0;
1493         infoPtr->flags |= (dir < 0) ? TB_AUTO_PAGE_LEFT : TB_AUTO_PAGE_RIGHT;
1494         TRACKBAR_AutoPage (infoPtr, clickPoint);
1495         SetCapture (infoPtr->hwndSelf);
1496         SetTimer(infoPtr->hwndSelf, TB_REFRESH_TIMER, TB_REFRESH_DELAY, 0);
1497     }
1498
1499     return 0;
1500 }
1501
1502
1503 static LRESULT
1504 TRACKBAR_LButtonUp (TRACKBAR_INFO *infoPtr, DWORD fwKeys, INT x, INT y)
1505 {
1506     if (infoPtr->flags & TB_DRAG_MODE) {
1507         notify_with_scroll (infoPtr, TB_THUMBPOSITION | (infoPtr->lPos<<16));
1508         notify_with_scroll (infoPtr, TB_ENDTRACK);
1509         infoPtr->flags &= ~TB_DRAG_MODE;
1510         ReleaseCapture ();
1511         notify(infoPtr, NM_RELEASEDCAPTURE);
1512         TRACKBAR_ActivateToolTip(infoPtr, FALSE);
1513         TRACKBAR_InvalidateThumb(infoPtr, infoPtr->lPos);
1514     }
1515     if (infoPtr->flags & TB_AUTO_PAGE) {
1516         KillTimer (infoPtr->hwndSelf, TB_REFRESH_TIMER);
1517         infoPtr->flags &= ~TB_AUTO_PAGE;
1518         notify_with_scroll (infoPtr, TB_ENDTRACK);
1519         ReleaseCapture ();
1520         notify(infoPtr, NM_RELEASEDCAPTURE);
1521     }
1522
1523     return 0;
1524 }
1525
1526
1527 static LRESULT
1528 TRACKBAR_CaptureChanged (const TRACKBAR_INFO *infoPtr)
1529 {
1530     notify_with_scroll (infoPtr, TB_ENDTRACK);
1531     return 0;
1532 }
1533
1534
1535 static LRESULT
1536 TRACKBAR_Paint (TRACKBAR_INFO *infoPtr, HDC hdc)
1537 {
1538     if (hdc) {
1539         TRACKBAR_Refresh(infoPtr, hdc);
1540     } else {
1541         PAINTSTRUCT ps;
1542         hdc = BeginPaint (infoPtr->hwndSelf, &ps);
1543         TRACKBAR_Refresh (infoPtr, hdc);
1544         EndPaint (infoPtr->hwndSelf, &ps);
1545     }
1546
1547     return 0;
1548 }
1549
1550
1551 static LRESULT
1552 TRACKBAR_SetFocus (TRACKBAR_INFO *infoPtr, HWND hwndLoseFocus)
1553 {
1554     TRACE("\n");
1555     infoPtr->bFocussed = TRUE;
1556     TRACKBAR_InvalidateAll(infoPtr);
1557
1558     return 0;
1559 }
1560
1561
1562 static LRESULT
1563 TRACKBAR_Size (TRACKBAR_INFO *infoPtr, DWORD fwSizeType, INT nWidth, INT nHeight)
1564 {
1565     TRACKBAR_InitializeThumb (infoPtr);
1566     TRACKBAR_AlignBuddies (infoPtr);
1567
1568     return 0;
1569 }
1570
1571
1572 static LRESULT
1573 TRACKBAR_Timer (TRACKBAR_INFO *infoPtr, INT wTimerID, const TIMERPROC *tmrpc)
1574 {
1575     if (infoPtr->flags & TB_AUTO_PAGE) {
1576         POINT pt;
1577         if (GetCursorPos(&pt))
1578             if (ScreenToClient(infoPtr->hwndSelf, &pt))
1579                 TRACKBAR_AutoPage(infoPtr, pt);
1580     }
1581     return 0;
1582 }
1583
1584
1585 /* update theme after a WM_THEMECHANGED message */
1586 static LRESULT theme_changed (const TRACKBAR_INFO* infoPtr)
1587 {
1588     HTHEME theme = GetWindowTheme (infoPtr->hwndSelf);
1589     CloseThemeData (theme);
1590     theme = OpenThemeData (infoPtr->hwndSelf, themeClass);
1591     return 0;
1592 }
1593
1594
1595 static LRESULT
1596 TRACKBAR_MouseMove (TRACKBAR_INFO *infoPtr, DWORD fwKeys, INT x, INT y)
1597 {
1598     DWORD dwStyle = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
1599     INT clickPlace = (dwStyle & TBS_VERT) ? y : x;
1600     LONG dragPos, oldPos = infoPtr->lPos;
1601
1602     TRACE("(x=%d. y=%d)\n", x, y);
1603
1604     if (infoPtr->flags & TB_AUTO_PAGE) {
1605         POINT pt;
1606         pt.x = x;
1607         pt.y = y;
1608         TRACKBAR_AutoPage (infoPtr, pt);
1609         return TRUE;
1610     }
1611
1612     if (!(infoPtr->flags & TB_DRAG_MODE)) 
1613     {
1614         if (GetWindowTheme (infoPtr->hwndSelf))
1615         {
1616             DWORD oldFlags = infoPtr->flags;
1617             POINT pt;
1618             pt.x = x;
1619             pt.y = y;
1620             if (PtInRect (&infoPtr->rcThumb, pt))
1621             {
1622                 TRACKMOUSEEVENT tme;
1623                 tme.cbSize = sizeof( tme );
1624                 tme.dwFlags = TME_LEAVE;
1625                 tme.hwndTrack = infoPtr->hwndSelf;
1626                 TrackMouseEvent( &tme );
1627                 infoPtr->flags |= TB_THUMB_HOT;
1628             }
1629             else
1630             {
1631                 TRACKMOUSEEVENT tme;
1632                 tme.cbSize = sizeof( tme );
1633                 tme.dwFlags = TME_CANCEL;
1634                 tme.hwndTrack = infoPtr->hwndSelf;
1635                 TrackMouseEvent( &tme );
1636                 infoPtr->flags &= ~TB_THUMB_HOT; 
1637             }
1638             if (oldFlags != infoPtr->flags) InvalidateRect (infoPtr->hwndSelf, &infoPtr->rcThumb, FALSE);
1639         }
1640         return TRUE;
1641     }
1642
1643     dragPos = TRACKBAR_ConvertPlaceToPosition (infoPtr, clickPlace,
1644                                                dwStyle & TBS_VERT);
1645     if (dragPos == oldPos) return TRUE;
1646
1647     infoPtr->lPos = dragPos;
1648
1649     infoPtr->flags |= TB_THUMBPOSCHANGED;
1650     notify_with_scroll (infoPtr, TB_THUMBTRACK | (infoPtr->lPos<<16));
1651
1652
1653     TRACKBAR_InvalidateThumbMove(infoPtr, oldPos, dragPos);
1654     UpdateWindow (infoPtr->hwndSelf);
1655
1656     return TRUE;
1657 }
1658
1659 static BOOL
1660 TRACKBAR_KeyDown (TRACKBAR_INFO *infoPtr, INT nVirtKey, DWORD lKeyData)
1661 {
1662     DWORD style = GetWindowLongW (infoPtr->hwndSelf, GWL_STYLE);
1663     BOOL downIsLeft = style & TBS_DOWNISLEFT;
1664     BOOL vert = style & TBS_VERT;
1665     LONG pos = infoPtr->lPos;
1666
1667     TRACE("%x\n", nVirtKey);
1668
1669     switch (nVirtKey) {
1670     case VK_UP:
1671         if (!vert && downIsLeft) TRACKBAR_LineDown(infoPtr);
1672         else TRACKBAR_LineUp(infoPtr);
1673         break;
1674     case VK_LEFT:
1675         if (vert && downIsLeft) TRACKBAR_LineDown(infoPtr);
1676         else TRACKBAR_LineUp(infoPtr);
1677         break;
1678     case VK_DOWN:
1679         if (!vert && downIsLeft) TRACKBAR_LineUp(infoPtr);
1680         else TRACKBAR_LineDown(infoPtr);
1681         break;
1682     case VK_RIGHT:
1683         if (vert && downIsLeft) TRACKBAR_LineUp(infoPtr);
1684         else TRACKBAR_LineDown(infoPtr);
1685         break;
1686     case VK_NEXT:
1687         if (!vert && downIsLeft) TRACKBAR_PageUp(infoPtr);
1688         else TRACKBAR_PageDown(infoPtr);
1689         break;
1690     case VK_PRIOR:
1691         if (!vert && downIsLeft) TRACKBAR_PageDown(infoPtr);
1692         else TRACKBAR_PageUp(infoPtr);
1693         break;
1694     case VK_HOME:
1695         if (infoPtr->lPos == infoPtr->lRangeMin) return FALSE;
1696         infoPtr->lPos = infoPtr->lRangeMin;
1697         notify_with_scroll (infoPtr, TB_TOP);
1698         break;
1699     case VK_END:
1700         if (infoPtr->lPos == infoPtr->lRangeMax) return FALSE;
1701         infoPtr->lPos = infoPtr->lRangeMax;
1702         notify_with_scroll (infoPtr, TB_BOTTOM);
1703         break;
1704     }
1705
1706     if (pos != infoPtr->lPos) {
1707         infoPtr->flags |=TB_THUMBPOSCHANGED;
1708         TRACKBAR_InvalidateThumbMove (infoPtr, pos, infoPtr->lPos);
1709     }
1710
1711     return TRUE;
1712 }
1713
1714
1715 static inline BOOL
1716 TRACKBAR_KeyUp (const TRACKBAR_INFO *infoPtr, INT nVirtKey, DWORD lKeyData)
1717 {
1718     switch (nVirtKey) {
1719     case VK_LEFT:
1720     case VK_UP:
1721     case VK_RIGHT:
1722     case VK_DOWN:
1723     case VK_NEXT:
1724     case VK_PRIOR:
1725     case VK_HOME:
1726     case VK_END:
1727         notify_with_scroll (infoPtr, TB_ENDTRACK);
1728     }
1729     return TRUE;
1730 }
1731
1732
1733 static LRESULT WINAPI
1734 TRACKBAR_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1735 {
1736     TRACKBAR_INFO *infoPtr = (TRACKBAR_INFO *)GetWindowLongPtrW (hwnd, 0);
1737
1738     TRACE("hwnd=%p msg=%x wparam=%lx lparam=%lx\n", hwnd, uMsg, wParam, lParam);
1739
1740     if (!infoPtr && (uMsg != WM_CREATE))
1741         return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1742
1743     switch (uMsg)
1744     {
1745     case TBM_CLEARSEL:
1746         return TRACKBAR_ClearSel (infoPtr, (BOOL)wParam);
1747
1748     case TBM_CLEARTICS:
1749         return TRACKBAR_ClearTics (infoPtr, (BOOL)wParam);
1750
1751     case TBM_GETBUDDY:
1752         return (LRESULT)(wParam ? infoPtr->hwndBuddyLA : infoPtr->hwndBuddyRB);
1753
1754     case TBM_GETCHANNELRECT:
1755         return TRACKBAR_GetChannelRect (infoPtr, (LPRECT)lParam);
1756
1757     case TBM_GETLINESIZE:
1758         return infoPtr->lLineSize;
1759
1760     case TBM_GETNUMTICS:
1761         return TRACKBAR_GetNumTics (infoPtr);
1762
1763     case TBM_GETPAGESIZE:
1764         return infoPtr->lPageSize;
1765
1766     case TBM_GETPOS:
1767         return infoPtr->lPos;
1768
1769     case TBM_GETPTICS:
1770         return (LRESULT)infoPtr->tics;
1771
1772     case TBM_GETRANGEMAX:
1773         return infoPtr->lRangeMax;
1774
1775     case TBM_GETRANGEMIN:
1776         return infoPtr->lRangeMin;
1777
1778     case TBM_GETSELEND:
1779         return infoPtr->lSelMax;
1780
1781     case TBM_GETSELSTART:
1782         return infoPtr->lSelMin;
1783
1784     case TBM_GETTHUMBLENGTH:
1785         return infoPtr->uThumbLen;
1786
1787     case TBM_GETTHUMBRECT:
1788         return CopyRect((LPRECT)lParam, &infoPtr->rcThumb);
1789
1790     case TBM_GETTIC:
1791         return TRACKBAR_GetTic (infoPtr, (INT)wParam);
1792
1793     case TBM_GETTICPOS:
1794         return TRACKBAR_GetTicPos (infoPtr, (INT)wParam);
1795
1796     case TBM_GETTOOLTIPS:
1797         return (LRESULT)infoPtr->hwndToolTip;
1798
1799     case TBM_GETUNICODEFORMAT:
1800         return infoPtr->bUnicode;
1801
1802     case TBM_SETBUDDY:
1803         return (LRESULT) TRACKBAR_SetBuddy(infoPtr, (BOOL)wParam, (HWND)lParam);
1804
1805     case TBM_SETLINESIZE:
1806         return TRACKBAR_SetLineSize (infoPtr, (LONG)lParam);
1807
1808     case TBM_SETPAGESIZE:
1809         return TRACKBAR_SetPageSize (infoPtr, (LONG)lParam);
1810
1811     case TBM_SETPOS:
1812         return TRACKBAR_SetPos (infoPtr, (BOOL)wParam, (LONG)lParam);
1813
1814     case TBM_SETRANGE:
1815         return TRACKBAR_SetRange (infoPtr, (BOOL)wParam, (LONG)lParam);
1816
1817     case TBM_SETRANGEMAX:
1818         return TRACKBAR_SetRangeMax (infoPtr, (BOOL)wParam, (LONG)lParam);
1819
1820     case TBM_SETRANGEMIN:
1821         return TRACKBAR_SetRangeMin (infoPtr, (BOOL)wParam, (LONG)lParam);
1822
1823     case TBM_SETSEL:
1824         return TRACKBAR_SetSel (infoPtr, (BOOL)wParam, (LONG)lParam);
1825
1826     case TBM_SETSELEND:
1827         return TRACKBAR_SetSelEnd (infoPtr, (BOOL)wParam, (LONG)lParam);
1828
1829     case TBM_SETSELSTART:
1830         return TRACKBAR_SetSelStart (infoPtr, (BOOL)wParam, (LONG)lParam);
1831
1832     case TBM_SETTHUMBLENGTH:
1833         return TRACKBAR_SetThumbLength (infoPtr, (UINT)wParam);
1834
1835     case TBM_SETTIC:
1836         return TRACKBAR_SetTic (infoPtr, (LONG)lParam);
1837
1838     case TBM_SETTICFREQ:
1839         return TRACKBAR_SetTicFreq (infoPtr, (WORD)wParam);
1840
1841     case TBM_SETTIPSIDE:
1842         return TRACKBAR_SetTipSide (infoPtr, (INT)wParam);
1843
1844     case TBM_SETTOOLTIPS:
1845         return TRACKBAR_SetToolTips (infoPtr, (HWND)wParam);
1846
1847     case TBM_SETUNICODEFORMAT:
1848         return TRACKBAR_SetUnicodeFormat (infoPtr, (BOOL)wParam);
1849
1850
1851     case WM_CAPTURECHANGED:
1852         return TRACKBAR_CaptureChanged (infoPtr);
1853
1854     case WM_CREATE:
1855         return TRACKBAR_Create (hwnd, (LPCREATESTRUCTW)lParam);
1856
1857     case WM_DESTROY:
1858         return TRACKBAR_Destroy (infoPtr);
1859
1860 /*      case WM_ENABLE: */
1861
1862     case WM_ERASEBKGND:
1863         return 0;
1864
1865     case WM_GETDLGCODE:
1866         return DLGC_WANTARROWS;
1867
1868     case WM_KEYDOWN:
1869         return TRACKBAR_KeyDown (infoPtr, (INT)wParam, (DWORD)lParam);
1870
1871     case WM_KEYUP:
1872         return TRACKBAR_KeyUp (infoPtr, (INT)wParam, (DWORD)lParam);
1873
1874     case WM_KILLFOCUS:
1875         return TRACKBAR_KillFocus (infoPtr, (HWND)wParam);
1876
1877     case WM_LBUTTONDOWN:
1878         return TRACKBAR_LButtonDown (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1879
1880     case WM_LBUTTONUP:
1881         return TRACKBAR_LButtonUp (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1882
1883     case WM_MOUSELEAVE:
1884         infoPtr->flags &= ~TB_THUMB_HOT; 
1885         InvalidateRect (infoPtr->hwndSelf, &infoPtr->rcThumb, FALSE);
1886         return 0;
1887     
1888     case WM_MOUSEMOVE:
1889         return TRACKBAR_MouseMove (infoPtr, wParam, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
1890
1891     case WM_PRINTCLIENT:
1892     case WM_PAINT:
1893         return TRACKBAR_Paint (infoPtr, (HDC)wParam);
1894
1895     case WM_SETFOCUS:
1896         return TRACKBAR_SetFocus (infoPtr, (HWND)wParam);
1897
1898     case WM_SIZE:
1899         return TRACKBAR_Size (infoPtr, wParam, LOWORD(lParam), HIWORD(lParam));
1900
1901     case WM_THEMECHANGED:
1902         return theme_changed (infoPtr);
1903
1904     case WM_TIMER:
1905         return TRACKBAR_Timer (infoPtr, (INT)wParam, (TIMERPROC *)lParam);
1906
1907     case WM_WININICHANGE:
1908         return TRACKBAR_InitializeThumb (infoPtr);
1909
1910     default:
1911         if ((uMsg >= WM_USER) && (uMsg < WM_APP))
1912             ERR("unknown msg %04x wp=%08lx lp=%08lx\n", uMsg, wParam, lParam);
1913         return DefWindowProcW (hwnd, uMsg, wParam, lParam);
1914     }
1915 }
1916
1917
1918 void TRACKBAR_Register (void)
1919 {
1920     WNDCLASSW wndClass;
1921
1922     ZeroMemory (&wndClass, sizeof(WNDCLASSW));
1923     wndClass.style         = CS_GLOBALCLASS;
1924     wndClass.lpfnWndProc   = TRACKBAR_WindowProc;
1925     wndClass.cbClsExtra    = 0;
1926     wndClass.cbWndExtra    = sizeof(TRACKBAR_INFO *);
1927     wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_ARROW);
1928     wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
1929     wndClass.lpszClassName = TRACKBAR_CLASSW;
1930
1931     RegisterClassW (&wndClass);
1932 }
1933
1934
1935 void TRACKBAR_Unregister (void)
1936 {
1937     UnregisterClassW (TRACKBAR_CLASSW, NULL);
1938 }