comctl32: Initialize id field for message tests.
[wine] / dlls / comctl32 / tests / trackbar.c
1 /* Unit tests for the track bar control.
2  *
3  * Copyright 2007 Keith Stevens
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 #include <windows.h>
21 #include <commctrl.h>
22 #include <stdio.h>
23
24 #include "wine/test.h"
25 #include "msg.h"
26
27 #define expect(expected, got) ok(got == expected, "Expected %d, got %d\n", expected, got)
28 #define NUM_MSG_SEQUENCE 2
29 #define PARENT_SEQ_INDEX 0
30 #define TRACKBAR_SEQ_INDEX 1
31
32 static HWND hWndParent;
33
34 static struct msg_sequence *sequences[NUM_MSG_SEQUENCE];
35
36 static const struct message empty_seq[] = {
37     {0}
38 };
39
40 static const struct message parent_create_trackbar_wnd_seq[] = {
41     { WM_NOTIFYFORMAT, sent},
42     { WM_QUERYUISTATE, sent|optional},
43     { WM_WINDOWPOSCHANGING, sent},
44     { WM_NCACTIVATE, sent},
45     { PBT_APMRESUMECRITICAL, sent},
46     { WM_WINDOWPOSCHANGING, sent},
47     { PBT_APMRESUMESTANDBY, sent},
48     { WM_IME_SETCONTEXT, sent|optional},
49     { WM_IME_NOTIFY, sent|optional},
50     { WM_CTLCOLORSTATIC, sent},
51     { WM_NOTIFY, sent},
52     {0}
53 };
54
55 static const struct message parent_new_window_test_seq[] = {
56     { WM_QUERYNEWPALETTE, sent|optional },
57     { WM_WINDOWPOSCHANGING, sent|optional},
58     { WM_NCACTIVATE, sent|optional},
59     { PBT_APMRESUMECRITICAL, sent|optional},
60     { WM_IME_SETCONTEXT, sent|defwinproc|optional},
61     { WM_IME_NOTIFY, sent|defwinproc|optional},
62     { WM_SETFOCUS, sent|defwinproc|optional},
63     { WM_NOTIFYFORMAT, sent},
64     { WM_QUERYUISTATE, sent|optional},
65     {0}
66 };
67
68 static const struct message buddy_window_test_seq[] = {
69     { TBM_GETBUDDY, sent|wparam, TRUE},
70     { TBM_SETBUDDY, sent|wparam, FALSE},
71     { WM_PAINT, sent|defwinproc},
72     { TBM_SETBUDDY, sent|wparam, FALSE},
73     { WM_PAINT, sent|defwinproc},
74     { TBM_GETBUDDY, sent|wparam, TRUE},
75     { TBM_SETBUDDY, sent|wparam, TRUE},
76     { WM_PAINT, sent|defwinproc},
77     { TBM_SETBUDDY, sent|wparam, TRUE},
78     { WM_PAINT, sent|defwinproc},
79     { TBM_GETBUDDY, sent|wparam, FALSE},
80     { TBM_GETBUDDY, sent|wparam, TRUE},
81     {0}
82 };
83
84 static const struct message parent_buddy_window_test_seq[] = {
85     { WM_CTLCOLORSTATIC, sent},
86     { WM_NOTIFY, sent},
87     { WM_CTLCOLORSTATIC, sent},
88     { WM_NOTIFY, sent},
89     { WM_CTLCOLORSTATIC, sent},
90     { WM_NOTIFY, sent},
91     { WM_CTLCOLORSTATIC, sent},
92     { WM_NOTIFY, sent},
93     {0}
94 };
95
96 static const struct message line_size_test_seq[] = {
97     { TBM_SETLINESIZE, sent|lparam, 0, 10},
98     { TBM_SETLINESIZE, sent|lparam, 0, 4},
99     { TBM_GETLINESIZE, sent},
100     {0}
101 };
102
103 static const struct message page_size_test_seq[] = {
104     { TBM_SETPAGESIZE, sent|lparam, 0, 10},
105     { TBM_SETPAGESIZE, sent|lparam, 0, -1},
106     { TBM_GETPAGESIZE, sent},
107     {0}
108 };
109
110 static const struct message position_test_seq[] = {
111     { TBM_SETPOS, sent|wparam|lparam, TRUE, -1},
112     { WM_PAINT, sent|defwinproc},
113     { TBM_GETPOS, sent},
114     { TBM_SETPOS, sent|wparam|lparam, TRUE, 5},
115     { WM_PAINT, sent|defwinproc},
116     { TBM_GETPOS, sent},
117     { TBM_SETPOS, sent|wparam|lparam, TRUE, 5},
118     { TBM_SETPOS, sent|wparam|lparam, TRUE, 1000},
119     { WM_PAINT, sent|defwinproc},
120     { TBM_GETPOS, sent},
121     { TBM_SETPOS, sent|wparam|lparam, FALSE, 20},
122     { TBM_GETPOS, sent},
123     { TBM_SETPOS, sent|wparam|lparam, TRUE, 20},
124     { TBM_GETPOS, sent},
125     {0}
126 };
127
128 static const struct message parent_position_test_seq[] = {
129     { WM_CTLCOLORSTATIC, sent},
130     { WM_NOTIFY, sent},
131     { WM_CTLCOLORSTATIC, sent},
132     { WM_NOTIFY, sent},
133     { WM_CTLCOLORSTATIC, sent},
134     { WM_NOTIFY, sent},
135     {0}
136 };
137
138 static const struct message range_test_seq[] = {
139     { TBM_SETRANGE, sent|wparam|lparam, TRUE, MAKELONG(0, 10)},
140     { WM_PAINT, sent|defwinproc},
141     { TBM_GETRANGEMAX, sent},
142     { TBM_GETRANGEMIN, sent},
143     { TBM_SETRANGE, sent|wparam|lparam, TRUE, MAKELONG(-1, 1000)},
144     { WM_PAINT, sent|defwinproc},
145     { TBM_GETRANGEMAX, sent},
146     { TBM_GETRANGEMIN, sent},
147     { TBM_SETRANGE, sent|wparam|lparam, TRUE, MAKELONG(10, 0)},
148     { WM_PAINT, sent|defwinproc},
149     { TBM_GETRANGEMAX, sent},
150     { TBM_GETRANGEMIN, sent},
151     { TBM_SETRANGE, sent|wparam|lparam, FALSE, MAKELONG(0, 10)},
152     { TBM_GETRANGEMAX, sent},
153     { TBM_GETRANGEMIN, sent},
154     { TBM_SETRANGEMAX, sent|wparam|lparam, TRUE, 10},
155     { WM_PAINT, sent|defwinproc},
156     { TBM_GETRANGEMAX, sent},
157     { TBM_SETRANGEMAX, sent|wparam|lparam, TRUE, -1},
158     { WM_PAINT, sent|defwinproc},
159     { TBM_GETRANGEMAX, sent},
160     { TBM_SETRANGEMAX, sent|wparam|lparam, FALSE, 10},
161     { TBM_GETRANGEMAX, sent},
162     { TBM_SETRANGEMIN, sent|wparam|lparam, TRUE, 0},
163     { WM_PAINT, sent|defwinproc},
164     { TBM_GETRANGEMIN, sent},
165     { TBM_SETRANGEMIN, sent|wparam|lparam, TRUE, 10},
166     { WM_PAINT, sent|defwinproc},
167     { TBM_GETRANGEMIN, sent},
168     { TBM_SETRANGEMIN, sent|wparam|lparam, TRUE, -10},
169     { WM_PAINT, sent|defwinproc},
170     { TBM_GETRANGEMIN, sent},
171     { TBM_SETRANGEMIN, sent|wparam|lparam, FALSE, 5},
172     { TBM_GETRANGEMIN, sent},
173     { TBM_GETRANGEMAX, sent},
174     { TBM_GETRANGEMIN, sent},
175     {0}
176 };
177
178 static const struct message parent_range_test_seq[] = {
179     { WM_CTLCOLORSTATIC, sent},
180     { WM_NOTIFY, sent},
181     { WM_CTLCOLORSTATIC, sent},
182     { WM_NOTIFY, sent},
183     { WM_CTLCOLORSTATIC, sent},
184     { WM_NOTIFY, sent},
185     { WM_CTLCOLORSTATIC, sent},
186     { WM_NOTIFY, sent},
187     { WM_CTLCOLORSTATIC, sent},
188     { WM_NOTIFY, sent},
189     { WM_CTLCOLORSTATIC, sent},
190     { WM_NOTIFY, sent},
191     { WM_CTLCOLORSTATIC, sent},
192     { WM_NOTIFY, sent},
193     { WM_CTLCOLORSTATIC, sent},
194     { WM_NOTIFY, sent},
195     {0}
196 };
197
198 static const struct message selection_test_seq[] = {
199     { TBM_SETSEL, sent|wparam|lparam, TRUE, MAKELONG(0, 10)},
200     { WM_PAINT, sent|defwinproc},
201     { TBM_GETSELEND, sent},
202     { TBM_GETSELSTART, sent},
203     { TBM_SETSEL, sent|wparam|lparam, TRUE, MAKELONG(5, 20)},
204     { WM_PAINT, sent|defwinproc},
205     { TBM_GETSELEND, sent},
206     { TBM_GETSELSTART, sent},
207     { TBM_SETSEL, sent|wparam|lparam, FALSE, MAKELONG(5, 10)},
208     { TBM_GETSELEND, sent},
209     { TBM_GETSELSTART, sent},
210     { TBM_SETSELEND, sent|wparam|lparam, TRUE, 10},
211     { WM_PAINT, sent|defwinproc},
212     { TBM_GETSELEND, sent},
213     { TBM_SETSELEND, sent|wparam|lparam, TRUE, 20},
214     { WM_PAINT, sent|defwinproc},
215     { TBM_GETSELEND, sent},
216     { TBM_SETSELEND, sent|wparam|lparam, TRUE, 4},
217     { WM_PAINT, sent|defwinproc},
218     { TBM_GETSELEND, sent},
219     { TBM_SETSELEND, sent|wparam|lparam, FALSE, 2},
220     { TBM_GETSELEND, sent},
221     { TBM_GETSELEND, sent},
222     { TBM_SETSELSTART, sent|wparam|lparam, TRUE, 5},
223     { WM_PAINT, sent|defwinproc},
224     { TBM_GETSELSTART, sent},
225     { TBM_SETSELSTART, sent|wparam|lparam, TRUE, 0},
226     { WM_PAINT, sent|defwinproc},
227     { TBM_GETSELSTART, sent},
228     { TBM_SETSELSTART, sent|wparam|lparam, TRUE, 20},
229     { WM_PAINT, sent|defwinproc},
230     { TBM_GETSELSTART, sent},
231     { TBM_SETSELSTART, sent|wparam|lparam, FALSE, 8},
232     { TBM_GETSELSTART, sent},
233     { TBM_GETSELSTART, sent},
234     {0}
235 };
236
237 static const struct message parent_selection_test_seq[] = {
238     { WM_CTLCOLORSTATIC, sent},
239     { WM_NOTIFY, sent},
240     { WM_CTLCOLORSTATIC, sent},
241     { WM_NOTIFY, sent},
242     { WM_CTLCOLORSTATIC, sent},
243     { WM_NOTIFY, sent},
244     { WM_CTLCOLORSTATIC, sent},
245     { WM_NOTIFY, sent},
246     { WM_CTLCOLORSTATIC, sent},
247     { WM_NOTIFY, sent},
248     { WM_CTLCOLORSTATIC, sent},
249     { WM_NOTIFY, sent},
250     { WM_CTLCOLORSTATIC, sent},
251     { WM_NOTIFY, sent},
252     { WM_CTLCOLORSTATIC, sent},
253     { WM_NOTIFY, sent},
254     {0}
255 };
256
257 static const struct message tic_settings_test_seq[] = {
258     { TBM_SETTIC, sent|lparam, 0, 0},
259     { TBM_SETTIC, sent|lparam, 0, 5},
260     { TBM_SETTIC, sent|lparam, 0, 10},
261     { TBM_SETTIC, sent|lparam, 0, 20},
262     { TBM_SETRANGE, sent|wparam|lparam, TRUE, MAKELONG(0,10)},
263     { WM_PAINT, sent|defwinproc},
264     { TBM_SETTICFREQ, sent|wparam, 2},
265     { WM_PAINT, sent|defwinproc},
266     { TBM_GETNUMTICS, sent},
267     { TBM_SETTICFREQ, sent|wparam, 5},
268     { WM_PAINT, sent|defwinproc},
269     { TBM_GETNUMTICS, sent},
270     { TBM_SETTICFREQ, sent|wparam, 15},
271     { WM_PAINT, sent|defwinproc},
272     { TBM_GETNUMTICS, sent},
273     { TBM_GETNUMTICS, sent},
274     {0}
275 };
276
277 static const struct message parent_tic_settings_test_seq[] = {
278     { WM_CTLCOLORSTATIC, sent},
279     { WM_NOTIFY, sent},
280     { WM_CTLCOLORSTATIC, sent},
281     { WM_NOTIFY, sent},
282     { WM_CTLCOLORSTATIC, sent},
283     { WM_NOTIFY, sent},
284     { WM_CTLCOLORSTATIC, sent},
285     { WM_NOTIFY, sent},
286     {0}
287 };
288
289 static const struct message thumb_length_test_seq[] = {
290     { TBM_SETTHUMBLENGTH, sent|wparam|lparam, 15, 0},
291     { WM_PAINT, sent|defwinproc},
292     { TBM_GETTHUMBLENGTH, sent},
293     { TBM_SETTHUMBLENGTH, sent|wparam|lparam, 20, 0},
294     { WM_PAINT, sent|defwinproc},
295     { TBM_GETTHUMBLENGTH, sent},
296     { TBM_GETTHUMBLENGTH, sent},
297     { WM_SIZE, sent},
298     { WM_PAINT, sent|defwinproc},
299     { TBM_GETTHUMBLENGTH, sent},
300     { WM_SIZE, sent},
301     { WM_PAINT, sent|defwinproc},
302     { TBM_GETTHUMBLENGTH, sent},
303     {0}
304 };
305
306 static const struct message parent_thumb_length_test_seq[] = {
307     { WM_CTLCOLORSTATIC, sent},
308     { WM_NOTIFY, sent},
309     { WM_CTLCOLORSTATIC, sent},
310     { WM_NOTIFY, sent},
311     { WM_CTLCOLORSTATIC, sent},
312     { WM_NOTIFY, sent},
313     { WM_CTLCOLORSTATIC, sent},
314     { WM_NOTIFY, sent},
315     {0}
316 };
317
318 static const struct message tic_placement_test_seq[] = {
319     { TBM_GETPTICS, sent},
320     { TBM_GETTIC, sent|wparam, 0},
321     { TBM_GETTIC, sent|wparam, 2},
322     { TBM_GETTIC, sent|wparam, 4},
323     { TBM_GETTICPOS, sent|wparam, 0},
324     { TBM_GETTICPOS, sent|wparam, 2},
325     {0}
326 };
327
328 static const struct message tool_tips_test_seq[] = {
329     { TBM_SETTIPSIDE, sent|wparam, TBTS_TOP},
330     { TBM_SETTIPSIDE, sent|wparam, TBTS_LEFT},
331     { TBM_SETTIPSIDE, sent|wparam, TBTS_BOTTOM},
332     { TBM_SETTIPSIDE, sent|wparam, TBTS_RIGHT},
333     { TBM_SETTOOLTIPS, sent},
334     { TBM_GETTOOLTIPS, sent},
335     { TBM_SETTOOLTIPS, sent},
336     { TBM_GETTOOLTIPS, sent},
337     { TBM_SETTOOLTIPS, sent},
338     { TBM_GETTOOLTIPS, sent},
339     { TBM_GETTOOLTIPS, sent},
340     {0}
341 };
342
343 static const struct message unicode_test_seq[] = {
344     { TBM_SETUNICODEFORMAT, sent|wparam, TRUE},
345     { TBM_SETUNICODEFORMAT, sent|wparam, FALSE},
346     { TBM_GETUNICODEFORMAT, sent},
347     {0}
348 };
349
350 static const struct message ignore_selection_test_seq[] = {
351     { TBM_SETSEL, sent|wparam|lparam, TRUE, MAKELONG(0,10)},
352     { TBM_GETSELEND, sent},
353     { TBM_GETSELSTART, sent},
354     { TBM_SETSEL, sent|wparam|lparam, FALSE, MAKELONG(0,10)},
355     { TBM_GETSELEND, sent},
356     { TBM_GETSELSTART, sent},
357     { TBM_SETSELEND, sent|wparam|lparam, TRUE,0},
358     { TBM_GETSELEND, sent},
359     { TBM_SETSELEND, sent|wparam|lparam, TRUE, 10},
360     { TBM_GETSELEND, sent},
361     { TBM_SETSELEND, sent|wparam|lparam, FALSE,0},
362     { TBM_GETSELEND, sent},
363     { TBM_SETSELSTART, sent|wparam|lparam, TRUE,0},
364     { TBM_GETSELSTART, sent},
365     { TBM_SETSELSTART, sent|wparam|lparam, TRUE, 10},
366     { TBM_GETSELSTART, sent},
367     { TBM_SETSELSTART, sent|wparam|lparam, FALSE,0},
368     { TBM_GETSELSTART, sent},
369     {0}
370 };
371
372 static LRESULT WINAPI parent_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){
373     static LONG defwndproc_counter = 0;
374     LRESULT ret;
375     struct message msg;
376
377     /* log system messages, except for painting */
378     if (message < WM_USER &&
379         message != WM_PAINT &&
380         message != WM_ERASEBKGND &&
381         message != WM_NCPAINT &&
382         message != WM_NCHITTEST &&
383         message != WM_GETTEXT &&
384         message != WM_GETICON &&
385         message != WM_DEVICECHANGE)
386     {
387         trace("parent: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
388
389         msg.message = message;
390         msg.flags = sent|wparam|lparam;
391         if (defwndproc_counter) msg.flags |= defwinproc;
392         msg.wParam = wParam;
393         msg.lParam = lParam;
394         add_message(sequences, PARENT_SEQ_INDEX, &msg);
395     }
396
397     defwndproc_counter++;
398     ret = DefWindowProcA(hwnd, message, wParam, lParam);
399     defwndproc_counter--;
400
401     return ret;
402 }
403
404 static BOOL register_parent_wnd_class(void){
405     WNDCLASSA cls;
406
407     cls.style = 0;
408     cls.lpfnWndProc = parent_wnd_proc;
409     cls.cbClsExtra = 0;
410     cls.cbWndExtra = 0;
411     cls.hInstance = GetModuleHandleA(NULL);
412     cls.hIcon = 0;
413     cls.hCursor = LoadCursorA(0, IDC_ARROW);
414     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
415     cls.lpszMenuName = NULL;
416     cls.lpszClassName = "Trackbar test parent class";
417     return RegisterClassA(&cls);
418 }
419
420 static HWND create_parent_window(void){
421     if (!register_parent_wnd_class())
422         return NULL;
423
424     return CreateWindowEx(0, "Trackbar test parent class",
425         "Trackbar test parent window",
426         WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
427         WS_MAXIMIZEBOX | WS_VISIBLE,
428         0, 0, 100, 100,
429         GetDesktopWindow(), NULL, GetModuleHandleA(NULL), NULL);
430 }
431
432 static LRESULT WINAPI trackbar_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){
433     WNDPROC oldproc = (WNDPROC)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
434     static LONG defwndproc_counter = 0;
435     LRESULT ret;
436     struct message msg;
437
438     trace("trackbar: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
439
440     msg.message = message;
441     msg.flags = sent|wparam|lparam;
442     if (defwndproc_counter) msg.flags |= defwinproc;
443     msg.wParam = wParam;
444     msg.lParam = lParam;
445     msg.id = 0;
446     add_message(sequences, TRACKBAR_SEQ_INDEX, &msg);
447
448     defwndproc_counter++;
449     ret = CallWindowProcA(oldproc, hwnd, message, wParam, lParam);
450     defwndproc_counter--;
451
452     return ret;
453 }
454
455 static HWND create_trackbar(DWORD style, HWND parent){
456     HWND hWndTrack;
457     WNDPROC oldproc;
458     RECT rect;
459
460     GetClientRect(parent, &rect);
461     hWndTrack = CreateWindowEx(
462       0, TRACKBAR_CLASS,"Trackbar Control", style,
463       rect.right,rect.bottom, 100, 50,
464       parent, NULL,GetModuleHandleA(NULL) ,NULL);
465
466     if (!hWndTrack) return NULL;
467
468     oldproc = (WNDPROC)SetWindowLongPtrA(hWndTrack, GWLP_WNDPROC, (LONG_PTR)trackbar_subclass_proc);
469     SetWindowLongPtrA(hWndTrack, GWLP_USERDATA, (LONG_PTR)oldproc);
470
471     return hWndTrack;
472 }
473
474 /* test functions for setters, getters, and sequences */
475
476 static void test_trackbar_buddy(HWND hWndTrackbar){
477     HWND hWndLeftBuddy;
478     HWND hWndRightBuddy;
479     HWND hWndCurrentBuddy;
480     HWND rTest;
481
482     flush_sequences(sequences, NUM_MSG_SEQUENCE);
483
484     hWndLeftBuddy = CreateWindowEx(0, STATUSCLASSNAME, NULL, 0,
485         0,0,300,20, NULL, NULL, NULL, NULL);
486     ok(hWndLeftBuddy != NULL, "Expected non NULL value\n");
487
488     if (hWndLeftBuddy != NULL){
489         hWndCurrentBuddy = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, TRUE, 0);
490         rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, FALSE, (LPARAM) hWndLeftBuddy);
491         ok(rTest == hWndCurrentBuddy, "Expected hWndCurrentBuddy\n");
492         rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, FALSE, (LPARAM) hWndLeftBuddy);
493         ok(rTest == hWndLeftBuddy, "Expected hWndLeftBuddy\n");
494     } else
495         skip ("left buddy control not present?\n");
496
497     hWndRightBuddy = CreateWindowEx(0, STATUSCLASSNAME, NULL, 0,
498         0,0,300,20,NULL,NULL, NULL, NULL);
499
500     ok(hWndRightBuddy != NULL, "expected non NULL value\n");
501
502     /* test TBM_SETBUDDY */
503     if (hWndRightBuddy != NULL){
504         hWndCurrentBuddy = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, TRUE, 0);
505         rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, TRUE, (LPARAM) hWndRightBuddy);
506         ok(rTest == hWndCurrentBuddy, "Expected hWndCurrentBuddy\n");
507         rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, TRUE, (LPARAM) hWndRightBuddy);
508         ok(rTest == hWndRightBuddy, "Expected hWndRightbuddy\n");
509      } else
510        skip("Right buddy control not present?\n");
511
512     /* test TBM_GETBUDDY */
513     if (hWndLeftBuddy != NULL){
514         rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, FALSE, 0);
515         ok(rTest == hWndLeftBuddy, "Expected hWndLeftBuddy\n");
516         DestroyWindow(hWndLeftBuddy);
517     }
518     if (hWndRightBuddy != NULL){
519         rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, TRUE,0);
520         ok(rTest == hWndRightBuddy, "Expected hWndRightBuddy\n");
521         DestroyWindow(hWndRightBuddy);
522     }
523
524     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, buddy_window_test_seq, "buddy test sequence", TRUE);
525     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_buddy_window_test_seq, "parent buddy test seq", TRUE);
526
527 }
528
529 static void test_line_size(HWND hWndTrackbar){
530     int r;
531
532     flush_sequences(sequences, NUM_MSG_SEQUENCE);
533
534     /* test TBM_SETLINESIZE */
535     r = SendMessage(hWndTrackbar, TBM_SETLINESIZE, 0, 10);
536     expect(1,r);
537     r = SendMessage(hWndTrackbar, TBM_SETLINESIZE, 0, 4);
538     expect(10, r);
539
540     /* test TBM_GETLINESIZE */
541     r = SendMessage(hWndTrackbar, TBM_GETLINESIZE, 0,0);
542     expect(4, r);
543
544     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, line_size_test_seq, "linesize test sequence", FALSE);
545     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent line test sequence", FALSE);
546 }
547
548
549 static void test_page_size(HWND hWndTrackbar){
550     int r;
551
552     flush_sequences(sequences, NUM_MSG_SEQUENCE);
553
554     /* test TBM_SETPAGESIZE */
555     r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, 10);
556     expect(20, r);
557     r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, -1);
558     expect(10, r);
559
560     /* test TBM_GETPAGESIZE */
561     r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0,0);
562     expect(20, r);
563
564     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, page_size_test_seq, "page size test sequence", FALSE);
565     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent page size test sequence", FALSE);
566
567     /* check for zero page size */
568     r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, 0);
569     expect(20, r);
570     r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0, 0);
571     expect(0, r);
572     /* revert to default */
573     r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, -1);
574     expect(0, r);
575     r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0, 0);
576     expect(20, r);
577     /* < -1 */
578     r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, -2);
579     expect(20, r);
580     r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0, 0);
581     expect(-2, r);
582 }
583
584 static void test_position(HWND hWndTrackbar){
585     int r;
586
587     flush_sequences(sequences, NUM_MSG_SEQUENCE);
588     /* test TBM_SETPOS */
589     SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, -1);
590     r = SendMessage(hWndTrackbar, TBM_GETPOS, 0, 0);
591     expect(0, r);
592     SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 5);
593     r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
594     expect(5, r);
595     SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 5);
596     SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 1000);
597     r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
598     expect(100, r);
599     SendMessage(hWndTrackbar, TBM_SETPOS, FALSE, 20);
600     r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
601     expect(20, r);
602     SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 20);
603
604     /* test TBM_GETPOS */
605     r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
606     expect(20, r);
607
608     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, position_test_seq, "position test sequence", TRUE);
609     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_position_test_seq, "parent position test sequence", TRUE);
610 }
611
612 static void test_range(HWND hWndTrackbar){
613     int r;
614
615     flush_sequences(sequences, NUM_MSG_SEQUENCE);
616     /* test TBM_SETRANGE */
617     SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(0, 10));
618     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
619     expect(10, r);
620     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
621     expect(0, r);
622     SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(-1, 1000));
623     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
624     expect(1000, r);
625     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
626     expect(-1, r);
627     SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(10, 0));
628     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
629     expect(0, r);
630     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
631     expect(10, r);
632     SendMessage(hWndTrackbar, TBM_SETRANGE, FALSE, MAKELONG(0,10));
633     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
634     expect(10, r);
635     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
636     expect(0, r);
637
638     /*test TBM_SETRANGEMAX */
639     SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 10);
640     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
641     expect(10, r);
642     SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, -1);
643     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
644     expect(-1, r);
645     SendMessage(hWndTrackbar, TBM_SETRANGEMAX, FALSE, 10);
646     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
647     expect(10, r);
648
649     /* testing TBM_SETRANGEMIN */
650     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
651     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
652     expect(0, r);
653     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 10);
654     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
655     expect(10, r);
656     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, -10);
657     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
658     expect(-10, r);
659     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, FALSE, 5);
660     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
661     expect(5, r);
662
663     /* test TBM_GETRANGEMAX */
664     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
665     expect(10, r);
666
667     /* test TBM_GETRANGEMIN */
668     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
669     expect(5, r);
670
671     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, range_test_seq, "range test sequence", TRUE);
672     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_range_test_seq, "parent range test sequence", TRUE);
673 }
674
675 static void test_selection(HWND hWndTrackbar){
676     int r;
677
678     flush_sequences(sequences, NUM_MSG_SEQUENCE);
679     /* test TBM_SETSEL */
680     SendMessage(hWndTrackbar, TBM_SETSEL, TRUE, MAKELONG(0,10));
681     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
682     expect(10, r);
683     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
684     expect(5, r);
685     SendMessage(hWndTrackbar, TBM_SETSEL, TRUE, MAKELONG(5, 20));
686     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
687     expect(10, r);
688     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
689     expect(5, r);
690     SendMessage(hWndTrackbar, TBM_SETSEL, FALSE, MAKELONG(5, 10));
691     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
692     expect(10, r);
693     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
694     expect(5, r);
695
696     /* test TBM_SETSELEND */
697     SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 10);
698     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
699     expect(10, r);
700     SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 20);
701     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
702     expect(10, r);
703     SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 4);
704     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
705     expect(4, r);
706     SendMessage(hWndTrackbar, TBM_SETSELEND, FALSE, 2);
707     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
708     expect(2, r);
709
710     /* test TBM_GETSELEND */
711     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
712     expect(2, r);
713
714     /* testing TBM_SETSELSTART */
715     SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 5);
716     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
717     expect(5, r);
718     SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 0);
719     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
720     expect(5, r);
721     SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 20);
722     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
723     expect(20, r);
724     SendMessage(hWndTrackbar, TBM_SETSELSTART, FALSE, 8);
725     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
726     expect(8, r);
727
728     /* test TBM_GETSELSTART */
729     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
730     expect(8, r);
731
732     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, selection_test_seq, "selection test sequence", TRUE);
733     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_selection_test_seq, "parent selection test seqence", TRUE);
734 }
735
736 static void test_thumb_length(HWND hWndTrackbar){
737     int r;
738
739     flush_sequences(sequences, NUM_MSG_SEQUENCE);
740     /* testing TBM_SETTHUMBLENGTH */
741     SendMessage(hWndTrackbar, TBM_SETTHUMBLENGTH, 15, 0);
742     r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
743     expect(15, r);
744     SendMessage(hWndTrackbar, TBM_SETTHUMBLENGTH, 20, 0);
745     r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
746     expect(20, r);
747
748     /* test TBM_GETTHUMBLENGTH */
749     r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
750     expect(20, r);
751
752     r = SendMessage(hWndTrackbar, WM_SIZE, 0,0);
753     expect(0, r);
754     r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
755     expect(20, r);
756     r = SendMessage(hWndTrackbar, WM_SIZE, 0, MAKELPARAM(50, 50) );
757     expect(0, r);
758     r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
759     expect(20, r);
760
761     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, thumb_length_test_seq, "thumb length test sequence", TRUE);
762     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_thumb_length_test_seq, "parent thumb length test sequence", TRUE);
763 }
764
765 static void test_tic_settings(HWND hWndTrackbar){
766     int r;
767
768     /* testing TBM_SETTIC */
769     /* Set tics at 5 and 10 */
770     /* 0 and 20 are out of range and should not be set */
771     r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0, 0);
772     expect(10, r);
773     r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0, 0);
774     expect(5, r);
775
776     flush_sequences(sequences, NUM_MSG_SEQUENCE);
777     r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 0);
778     ok(r == FALSE, "Expected FALSE, got %d\n", r);
779     r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 5);
780     ok(r == TRUE, "Expected TRUE, got %d\n", r);
781     r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 10);
782     ok(r == TRUE, "Expected TRUE, got %d\n", r);
783
784     r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 20);
785     ok(r == FALSE, "Expected False, got %d\n", r);
786
787     /* test TBM_SETTICFREQ */
788     SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(0, 10));
789     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 2, 0);
790     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
791     expect(6, r);
792     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 5, 0);
793     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
794     expect(3, r);
795     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 15, 0);
796     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
797     expect(2, r);
798
799     /* test TBM_GETNUMTICS */
800     /* since TIC FREQ is 15, there should be only 2 tics now */
801     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
802     expect(2, r);
803
804     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, tic_settings_test_seq, "tic settings test sequence", TRUE);
805     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_tic_settings_test_seq, "parent tic settings test sequence", TRUE);
806
807     /* range [0,0], freq = 1 */
808     SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 0);
809     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
810     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
811     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
812     expect(2, r);
813     /* range [0,1], freq = 1 */
814     SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 1);
815     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
816     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
817     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
818     expect(2, r);
819     /* range [0,2], freq = 1 */
820     SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 2);
821     SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
822     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
823     r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
824     expect(3, r);
825 }
826
827 static void test_tic_placement(HWND hWndTrackbar){
828     int r;
829     DWORD *rPTics;
830     DWORD numtics;
831
832     SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(1, 6));
833     SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
834
835     numtics = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
836     ok(numtics == 6, "Expected 6, got %d\n", numtics);
837
838     flush_sequences(sequences, NUM_MSG_SEQUENCE);
839     /* test TBM_GETPTICS */
840     rPTics = (DWORD *) SendMessage(hWndTrackbar, TBM_GETPTICS, 0,0);
841     expect(2, rPTics[0]);
842     expect(3, rPTics[1]);
843     expect(4, rPTics[2]);
844     expect(5, rPTics[3]);
845
846     /* test TBM_GETTIC */
847     r = SendMessage(hWndTrackbar, TBM_GETTIC, 0,0);
848     expect(2, r);
849     r = SendMessage(hWndTrackbar, TBM_GETTIC, 2,0);
850     expect(4, r);
851     r = SendMessage(hWndTrackbar, TBM_GETTIC, 4,0);
852     expect(-1, r);
853
854     /* test TBM_GETTICPIC */
855     r = SendMessage(hWndTrackbar, TBM_GETTICPOS, 0, 0);
856     ok(r > 0, "Expected r > 0, got %d\n", r);
857     r = SendMessage(hWndTrackbar, TBM_GETTICPOS, 2, 0);
858     ok(r > 0, "Expected r > 0, got %d\n", r);
859
860     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, tic_placement_test_seq, "get tic placement test sequence", FALSE);
861     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent get tic placement test sequence", FALSE);
862 }
863
864
865 static void test_tool_tips(HWND hWndTrackbar){
866     int r;
867     HWND hWndTooltip;
868     HWND rTest;
869
870     flush_sequences(sequences, NUM_MSG_SEQUENCE);
871     /* testing TBM_SETTIPSIDE */
872     r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_TOP, 0);
873     expect(TBTS_TOP, r);
874     r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_LEFT, 0);
875     expect(TBTS_TOP, r);
876     r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_BOTTOM, 0);
877     expect(TBTS_LEFT, r);
878     r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_RIGHT, 0);
879     expect(TBTS_BOTTOM, r);
880
881     /* testing TBM_SETTOOLTIPS */
882     hWndTooltip = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, NULL, 0,
883       CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
884       NULL, NULL, NULL, NULL);
885
886     ok(hWndTooltip != NULL, "Expected non NULL value\n");
887     if (hWndTooltip != NULL){
888         SendMessage(hWndTrackbar, TBM_SETTOOLTIPS, (LPARAM) hWndTooltip, 0);
889         rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
890         ok(rTest == hWndTooltip, "Expected hWndToolTip, got\n");
891         SendMessage(hWndTrackbar, TBM_SETTOOLTIPS, 0, 0);
892         rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
893         ok(rTest == NULL, "Expected NULL\n");
894         SendMessage(hWndTrackbar, TBM_SETTOOLTIPS, (LPARAM) hWndTooltip, 5);
895         rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
896         ok(rTest == hWndTooltip, "Expected hWndTooltip, got\n");
897     } else
898         skip("tool tip control not present?\n");
899
900     /* test TBM_GETTOOLTIPS */
901     rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
902     ok(rTest == hWndTooltip, "Expected hWndTooltip\n");
903
904     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, tool_tips_test_seq, "tool tips test sequence", FALSE);
905     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent tool tips test sequence", FALSE);
906 }
907
908
909 static void test_unicode(HWND hWndTrackbar){
910     int r;
911
912     flush_sequences(sequences, NUM_MSG_SEQUENCE);
913     /* testing TBM_SETUNICODEFORMAT */
914     r = SendMessage(hWndTrackbar, TBM_SETUNICODEFORMAT, TRUE, 0);
915     ok(r == FALSE, "Expected FALSE, got %d\n",r);
916     r = SendMessage(hWndTrackbar, TBM_SETUNICODEFORMAT, FALSE, 0);
917     ok(r == TRUE, "Expected TRUE, got %d\n",r);
918
919     /* test TBM_GETUNICODEFORMAT */
920     r = SendMessage(hWndTrackbar, TBM_GETUNICODEFORMAT, 0,0);
921     ok(r == FALSE, "Expected FALSE, got %d\n",r);
922
923     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, unicode_test_seq, "unicode test sequence", FALSE);
924     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent unicode test sequence", FALSE);
925 }
926
927 static void test_ignore_selection(HWND hWndTrackbar){
928     int r;
929
930     flush_sequences(sequences, NUM_MSG_SEQUENCE);
931     /* test TBM_SETSEL  ensure that it is ignored */
932     SendMessage(hWndTrackbar, TBM_SETSEL, TRUE, MAKELONG(0,10));
933     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
934     expect(0, r);
935     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
936     expect(0, r);
937     SendMessage(hWndTrackbar, TBM_SETSEL, FALSE, MAKELONG(0,10));
938     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
939     expect(0, r);
940     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
941     expect(0, r);
942
943     /* test TBM_SETSELEND, ensure that it is ignored */
944     SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 0);
945     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
946     expect(0, r);
947     SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 10);
948     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
949     expect(0,r);
950     SendMessage(hWndTrackbar, TBM_SETSELEND, FALSE, 0);
951     r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
952     expect(0, r);
953
954     /* test TBM_SETSELSTART, ensure that it is ignored */
955     SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 0);
956     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
957     expect(0, r);
958     SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 10);
959     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
960     expect(0,r);
961     SendMessage(hWndTrackbar, TBM_SETSELSTART, FALSE, 0);
962     r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
963     expect(0, r);
964
965     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, ignore_selection_test_seq, "ignore selection setting test sequence", FALSE);
966     ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent ignore selection setting test sequence", FALSE);
967 }
968
969 static void test_initial_state(void)
970 {
971     HWND hWnd;
972     int ret;
973
974     hWnd = create_trackbar(0, hWndParent);
975
976     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
977     expect(2, ret);
978     ret = SendMessage(hWnd, TBM_GETTIC, 0, 0);
979     expect(-1, ret);
980     ret = SendMessage(hWnd, TBM_GETTICPOS, 0, 0);
981     expect(-1, ret);
982     ret = SendMessage(hWnd, TBM_GETRANGEMIN, 0, 0);
983     expect(0, ret);
984     ret = SendMessage(hWnd, TBM_GETRANGEMAX, 0, 0);
985     expect(100, ret);
986
987     ret = SendMessage(hWnd, TBM_SETRANGEMAX, TRUE, 200);
988     expect(0, ret);
989
990     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
991     expect(2, ret);
992
993     ret = SendMessage(hWnd, TBM_SETRANGEMIN, TRUE, 10);
994     expect(0, ret);
995
996     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
997     expect(2, ret);
998
999     DestroyWindow(hWnd);
1000 }
1001
1002 static void test_TBS_AUTOTICKS(void)
1003 {
1004     HWND hWnd;
1005     int ret;
1006
1007     hWnd = create_trackbar(TBS_AUTOTICKS, hWndParent);
1008
1009     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1010     expect(2, ret);
1011     ret = SendMessage(hWnd, TBM_GETTIC, 0, 0);
1012     expect(-1, ret);
1013     ret = SendMessage(hWnd, TBM_GETTICPOS, 0, 0);
1014     expect(-1, ret);
1015     ret = SendMessage(hWnd, TBM_GETRANGEMIN, 0, 0);
1016     expect(0, ret);
1017     ret = SendMessage(hWnd, TBM_GETRANGEMAX, 0, 0);
1018     expect(100, ret);
1019
1020     /* TBM_SETRANGEMAX rebuilds tics */
1021     ret = SendMessage(hWnd, TBM_SETRANGEMAX, TRUE, 200);
1022     expect(0, ret);
1023     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1024     expect(201, ret);
1025
1026     /* TBM_SETRANGEMIN rebuilds tics */
1027     ret = SendMessage(hWnd, TBM_SETRANGEMAX, TRUE, 100);
1028     expect(0, ret);
1029     ret = SendMessage(hWnd, TBM_SETRANGEMIN, TRUE, 10);
1030     expect(0, ret);
1031     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1032     expect(91, ret);
1033
1034     ret = SendMessage(hWnd, TBM_SETRANGEMIN, TRUE, 0);
1035     expect(0, ret);
1036
1037     /* TBM_SETRANGE rebuilds tics */
1038     ret = SendMessage(hWnd, TBM_SETRANGE, TRUE, MAKELONG(10, 200));
1039     expect(0, ret);
1040     ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1041     expect(191, ret);
1042
1043     DestroyWindow(hWnd);
1044 }
1045
1046 START_TEST(trackbar)
1047 {
1048     DWORD style = WS_VISIBLE | TBS_TOOLTIPS | TBS_ENABLESELRANGE | TBS_FIXEDLENGTH | TBS_AUTOTICKS;
1049     HWND hWndTrackbar;
1050
1051     init_msg_sequences(sequences, NUM_MSG_SEQUENCE);
1052     InitCommonControls();
1053
1054     /* create parent window */
1055     hWndParent = create_parent_window();
1056     ok(hWndParent != NULL, "Failed to create parent Window!\n");
1057
1058     if(!hWndParent){
1059         skip("parent window not present\n");
1060         return;
1061     }
1062
1063     flush_sequences(sequences, NUM_MSG_SEQUENCE);
1064
1065     /* create trackbar with set styles */
1066     hWndTrackbar = create_trackbar(style, hWndParent);
1067
1068     ok(hWndTrackbar != NULL, "Expected non NULL value\n");
1069
1070     if (!hWndTrackbar){
1071         skip("trackbar control not present?\n");
1072         return;
1073     }
1074
1075     ok_sequence(sequences, TRACKBAR_SEQ_INDEX, empty_seq, "create Trackbar Window", FALSE);
1076     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_create_trackbar_wnd_seq, "parent trackbar window", TRUE);
1077     flush_sequences(sequences, NUM_MSG_SEQUENCE);
1078
1079     /* TEST OF ALL SETTER and GETTER MESSAGES with required styles turned on*/
1080     test_trackbar_buddy(hWndTrackbar);
1081     test_line_size(hWndTrackbar);
1082     test_page_size(hWndTrackbar);
1083     test_position(hWndTrackbar);
1084     test_range(hWndTrackbar);
1085     test_selection(hWndTrackbar);
1086     test_thumb_length(hWndTrackbar);
1087     test_tic_settings(hWndTrackbar);
1088     test_tic_placement(hWndTrackbar);
1089     test_tool_tips(hWndTrackbar);
1090     test_unicode(hWndTrackbar);
1091     test_TBS_AUTOTICKS();
1092
1093     flush_sequences(sequences, NUM_MSG_SEQUENCE);
1094     DestroyWindow(hWndTrackbar);
1095
1096     /* test getters and setters without styles set */
1097     hWndTrackbar = create_trackbar(0, hWndParent);
1098
1099     ok(hWndTrackbar != NULL, "Expected non NULL value\n");
1100
1101     if (!hWndTrackbar){
1102         skip("trackbar control not present?\n");
1103         return;
1104     }
1105
1106     ok_sequence(sequences, PARENT_SEQ_INDEX, parent_new_window_test_seq, "new trackbar window test sequence", TRUE);
1107
1108     test_ignore_selection(hWndTrackbar);
1109
1110     DestroyWindow(hWndTrackbar);
1111
1112     test_initial_state();
1113
1114     DestroyWindow(hWndParent);
1115 }