Release 1.6-rc2.
[wine/testsucceed.git] / dlls / comctl32 / tests / trackbar.c
blob2e76000bb9647ad4d61ab849a8ca586dc6124063
1 /* Unit tests for the track bar control.
3 * Copyright 2007 Keith Stevens
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.
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.
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
20 #include <windows.h>
21 #include <commctrl.h>
22 #include <stdio.h>
24 #include "wine/test.h"
25 #include "msg.h"
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
32 static HWND hWndParent;
34 static struct msg_sequence *sequences[NUM_MSG_SEQUENCE];
36 static const struct message empty_seq[] = {
37 {0}
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}
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}
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}
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}
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},
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},
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},
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},
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},
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},
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},
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},
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},
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},
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},
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},
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},
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},
343 static const struct message unicode_test_seq[] = {
344 { TBM_SETUNICODEFORMAT, sent|wparam, TRUE},
345 { TBM_SETUNICODEFORMAT, sent|wparam, FALSE},
346 { TBM_GETUNICODEFORMAT, sent},
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},
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;
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)
387 trace("parent: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
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 msg.id = 0;
395 add_message(sequences, PARENT_SEQ_INDEX, &msg);
398 defwndproc_counter++;
399 ret = DefWindowProcA(hwnd, message, wParam, lParam);
400 defwndproc_counter--;
402 return ret;
405 static BOOL register_parent_wnd_class(void){
406 WNDCLASSA cls;
408 cls.style = 0;
409 cls.lpfnWndProc = parent_wnd_proc;
410 cls.cbClsExtra = 0;
411 cls.cbWndExtra = 0;
412 cls.hInstance = GetModuleHandleA(NULL);
413 cls.hIcon = 0;
414 cls.hCursor = LoadCursorA(0, IDC_ARROW);
415 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
416 cls.lpszMenuName = NULL;
417 cls.lpszClassName = "Trackbar test parent class";
418 return RegisterClassA(&cls);
421 static HWND create_parent_window(void){
422 if (!register_parent_wnd_class())
423 return NULL;
425 return CreateWindowEx(0, "Trackbar test parent class",
426 "Trackbar test parent window",
427 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
428 WS_MAXIMIZEBOX | WS_VISIBLE,
429 0, 0, 100, 100,
430 GetDesktopWindow(), NULL, GetModuleHandleA(NULL), NULL);
433 static LRESULT WINAPI trackbar_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){
434 WNDPROC oldproc = (WNDPROC)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
435 static LONG defwndproc_counter = 0;
436 LRESULT ret;
437 struct message msg;
439 trace("trackbar: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
441 msg.message = message;
442 msg.flags = sent|wparam|lparam;
443 if (defwndproc_counter) msg.flags |= defwinproc;
444 msg.wParam = wParam;
445 msg.lParam = lParam;
446 msg.id = 0;
447 add_message(sequences, TRACKBAR_SEQ_INDEX, &msg);
449 defwndproc_counter++;
450 ret = CallWindowProcA(oldproc, hwnd, message, wParam, lParam);
451 defwndproc_counter--;
453 return ret;
456 static HWND create_trackbar(DWORD style, HWND parent){
457 HWND hWndTrack;
458 WNDPROC oldproc;
459 RECT rect;
461 GetClientRect(parent, &rect);
462 hWndTrack = CreateWindowEx(
463 0, TRACKBAR_CLASS,"Trackbar Control", style,
464 rect.right,rect.bottom, 100, 50,
465 parent, NULL,GetModuleHandleA(NULL) ,NULL);
467 if (!hWndTrack) return NULL;
469 oldproc = (WNDPROC)SetWindowLongPtrA(hWndTrack, GWLP_WNDPROC, (LONG_PTR)trackbar_subclass_proc);
470 SetWindowLongPtrA(hWndTrack, GWLP_USERDATA, (LONG_PTR)oldproc);
472 return hWndTrack;
475 /* test functions for setters, getters, and sequences */
477 static void test_trackbar_buddy(HWND hWndTrackbar){
478 HWND hWndLeftBuddy;
479 HWND hWndRightBuddy;
480 HWND hWndCurrentBuddy;
481 HWND rTest;
483 flush_sequences(sequences, NUM_MSG_SEQUENCE);
485 hWndLeftBuddy = CreateWindowEx(0, STATUSCLASSNAME, NULL, 0,
486 0,0,300,20, NULL, NULL, NULL, NULL);
487 ok(hWndLeftBuddy != NULL, "Expected non NULL value\n");
489 if (hWndLeftBuddy != NULL){
490 hWndCurrentBuddy = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, TRUE, 0);
491 rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, FALSE, (LPARAM) hWndLeftBuddy);
492 ok(rTest == hWndCurrentBuddy, "Expected hWndCurrentBuddy\n");
493 rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, FALSE, (LPARAM) hWndLeftBuddy);
494 ok(rTest == hWndLeftBuddy, "Expected hWndLeftBuddy\n");
495 } else
496 skip ("left buddy control not present?\n");
498 hWndRightBuddy = CreateWindowEx(0, STATUSCLASSNAME, NULL, 0,
499 0,0,300,20,NULL,NULL, NULL, NULL);
501 ok(hWndRightBuddy != NULL, "expected non NULL value\n");
503 /* test TBM_SETBUDDY */
504 if (hWndRightBuddy != NULL){
505 hWndCurrentBuddy = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, TRUE, 0);
506 rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, TRUE, (LPARAM) hWndRightBuddy);
507 ok(rTest == hWndCurrentBuddy, "Expected hWndCurrentBuddy\n");
508 rTest = (HWND) SendMessage(hWndTrackbar, TBM_SETBUDDY, TRUE, (LPARAM) hWndRightBuddy);
509 ok(rTest == hWndRightBuddy, "Expected hWndRightbuddy\n");
510 } else
511 skip("Right buddy control not present?\n");
513 /* test TBM_GETBUDDY */
514 if (hWndLeftBuddy != NULL){
515 rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, FALSE, 0);
516 ok(rTest == hWndLeftBuddy, "Expected hWndLeftBuddy\n");
517 DestroyWindow(hWndLeftBuddy);
519 if (hWndRightBuddy != NULL){
520 rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETBUDDY, TRUE,0);
521 ok(rTest == hWndRightBuddy, "Expected hWndRightBuddy\n");
522 DestroyWindow(hWndRightBuddy);
525 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, buddy_window_test_seq, "buddy test sequence", TRUE);
526 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_buddy_window_test_seq, "parent buddy test seq", TRUE);
530 static void test_line_size(HWND hWndTrackbar){
531 int r;
533 flush_sequences(sequences, NUM_MSG_SEQUENCE);
535 /* test TBM_SETLINESIZE */
536 r = SendMessage(hWndTrackbar, TBM_SETLINESIZE, 0, 10);
537 expect(1,r);
538 r = SendMessage(hWndTrackbar, TBM_SETLINESIZE, 0, 4);
539 expect(10, r);
541 /* test TBM_GETLINESIZE */
542 r = SendMessage(hWndTrackbar, TBM_GETLINESIZE, 0,0);
543 expect(4, r);
545 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, line_size_test_seq, "linesize test sequence", FALSE);
546 ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent line test sequence", FALSE);
550 static void test_page_size(HWND hWndTrackbar){
551 int r;
553 flush_sequences(sequences, NUM_MSG_SEQUENCE);
555 /* test TBM_SETPAGESIZE */
556 r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, 10);
557 expect(20, r);
558 r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, -1);
559 expect(10, r);
561 /* test TBM_GETPAGESIZE */
562 r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0,0);
563 expect(20, r);
565 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, page_size_test_seq, "page size test sequence", FALSE);
566 ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent page size test sequence", FALSE);
568 /* check for zero page size */
569 r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, 0);
570 expect(20, r);
571 r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0, 0);
572 expect(0, r);
573 /* revert to default */
574 r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, -1);
575 expect(0, r);
576 r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0, 0);
577 expect(20, r);
578 /* < -1 */
579 r = SendMessage(hWndTrackbar, TBM_SETPAGESIZE, 0, -2);
580 expect(20, r);
581 r = SendMessage(hWndTrackbar, TBM_GETPAGESIZE, 0, 0);
582 expect(-2, r);
585 static void test_position(HWND hWndTrackbar){
586 int r;
588 flush_sequences(sequences, NUM_MSG_SEQUENCE);
589 /* test TBM_SETPOS */
590 SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, -1);
591 r = SendMessage(hWndTrackbar, TBM_GETPOS, 0, 0);
592 expect(0, r);
593 SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 5);
594 r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
595 expect(5, r);
596 SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 5);
597 SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 1000);
598 r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
599 expect(100, r);
600 SendMessage(hWndTrackbar, TBM_SETPOS, FALSE, 20);
601 r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
602 expect(20, r);
603 SendMessage(hWndTrackbar, TBM_SETPOS, TRUE, 20);
605 /* test TBM_GETPOS */
606 r = SendMessage(hWndTrackbar, TBM_GETPOS, 0,0);
607 expect(20, r);
609 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, position_test_seq, "position test sequence", TRUE);
610 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_position_test_seq, "parent position test sequence", TRUE);
613 static void test_range(HWND hWndTrackbar){
614 int r;
616 flush_sequences(sequences, NUM_MSG_SEQUENCE);
617 /* test TBM_SETRANGE */
618 SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(0, 10));
619 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
620 expect(10, r);
621 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
622 expect(0, r);
623 SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(-1, 1000));
624 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
625 expect(1000, r);
626 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
627 expect(-1, r);
628 SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(10, 0));
629 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
630 expect(0, r);
631 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
632 expect(10, r);
633 SendMessage(hWndTrackbar, TBM_SETRANGE, FALSE, MAKELONG(0,10));
634 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
635 expect(10, r);
636 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
637 expect(0, r);
639 /*test TBM_SETRANGEMAX */
640 SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 10);
641 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
642 expect(10, r);
643 SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, -1);
644 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
645 expect(-1, r);
646 SendMessage(hWndTrackbar, TBM_SETRANGEMAX, FALSE, 10);
647 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
648 expect(10, r);
650 /* testing TBM_SETRANGEMIN */
651 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
652 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
653 expect(0, r);
654 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 10);
655 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
656 expect(10, r);
657 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, -10);
658 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
659 expect(-10, r);
660 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, FALSE, 5);
661 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
662 expect(5, r);
664 /* test TBM_GETRANGEMAX */
665 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0,0);
666 expect(10, r);
668 /* test TBM_GETRANGEMIN */
669 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0,0);
670 expect(5, r);
672 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, range_test_seq, "range test sequence", TRUE);
673 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_range_test_seq, "parent range test sequence", TRUE);
676 static void test_selection(HWND hWndTrackbar){
677 int r;
679 flush_sequences(sequences, NUM_MSG_SEQUENCE);
680 /* test TBM_SETSEL */
681 SendMessage(hWndTrackbar, TBM_SETSEL, TRUE, MAKELONG(0,10));
682 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
683 expect(10, r);
684 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
685 expect(5, r);
686 SendMessage(hWndTrackbar, TBM_SETSEL, TRUE, MAKELONG(5, 20));
687 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
688 expect(10, r);
689 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
690 expect(5, r);
691 SendMessage(hWndTrackbar, TBM_SETSEL, FALSE, MAKELONG(5, 10));
692 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
693 expect(10, r);
694 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
695 expect(5, r);
697 /* test TBM_SETSELEND */
698 SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 10);
699 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
700 expect(10, r);
701 SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 20);
702 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
703 expect(10, r);
704 SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 4);
705 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
706 expect(4, r);
707 SendMessage(hWndTrackbar, TBM_SETSELEND, FALSE, 2);
708 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
709 expect(2, r);
711 /* test TBM_GETSELEND */
712 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
713 expect(2, r);
715 /* testing TBM_SETSELSTART */
716 SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 5);
717 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
718 expect(5, r);
719 SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 0);
720 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
721 expect(5, r);
722 SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 20);
723 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
724 expect(20, r);
725 SendMessage(hWndTrackbar, TBM_SETSELSTART, FALSE, 8);
726 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
727 expect(8, r);
729 /* test TBM_GETSELSTART */
730 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
731 expect(8, r);
733 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, selection_test_seq, "selection test sequence", TRUE);
734 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_selection_test_seq, "parent selection test seqence", TRUE);
737 static void test_thumb_length(HWND hWndTrackbar){
738 int r;
740 flush_sequences(sequences, NUM_MSG_SEQUENCE);
741 /* testing TBM_SETTHUMBLENGTH */
742 SendMessage(hWndTrackbar, TBM_SETTHUMBLENGTH, 15, 0);
743 r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
744 expect(15, r);
745 SendMessage(hWndTrackbar, TBM_SETTHUMBLENGTH, 20, 0);
746 r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
747 expect(20, r);
749 /* test TBM_GETTHUMBLENGTH */
750 r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
751 expect(20, r);
753 r = SendMessage(hWndTrackbar, WM_SIZE, 0,0);
754 expect(0, r);
755 r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
756 expect(20, r);
757 r = SendMessage(hWndTrackbar, WM_SIZE, 0, MAKELPARAM(50, 50) );
758 expect(0, r);
759 r = SendMessage(hWndTrackbar, TBM_GETTHUMBLENGTH, 0,0);
760 expect(20, r);
762 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, thumb_length_test_seq, "thumb length test sequence", TRUE);
763 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_thumb_length_test_seq, "parent thumb length test sequence", TRUE);
766 static void test_tic_settings(HWND hWndTrackbar){
767 int r;
769 /* testing TBM_SETTIC */
770 /* Set tics at 5 and 10 */
771 /* 0 and 20 are out of range and should not be set */
772 r = SendMessage(hWndTrackbar, TBM_GETRANGEMAX, 0, 0);
773 expect(10, r);
774 r = SendMessage(hWndTrackbar, TBM_GETRANGEMIN, 0, 0);
775 expect(5, r);
777 flush_sequences(sequences, NUM_MSG_SEQUENCE);
778 r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 0);
779 ok(r == FALSE, "Expected FALSE, got %d\n", r);
780 r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 5);
781 ok(r == TRUE, "Expected TRUE, got %d\n", r);
782 r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 10);
783 ok(r == TRUE, "Expected TRUE, got %d\n", r);
785 r = SendMessage(hWndTrackbar, TBM_SETTIC, 0, 20);
786 ok(r == FALSE, "Expected False, got %d\n", r);
788 /* test TBM_SETTICFREQ */
789 SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(0, 10));
790 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 2, 0);
791 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
792 expect(6, r);
793 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 5, 0);
794 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
795 expect(3, r);
796 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 15, 0);
797 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
798 expect(2, r);
800 /* test TBM_GETNUMTICS */
801 /* since TIC FREQ is 15, there should be only 2 tics now */
802 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
803 expect(2, r);
805 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, tic_settings_test_seq, "tic settings test sequence", TRUE);
806 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_tic_settings_test_seq, "parent tic settings test sequence", TRUE);
808 /* range [0,0], freq = 1 */
809 SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 0);
810 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
811 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
812 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
813 expect(2, r);
814 /* range [0,1], freq = 1 */
815 SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 1);
816 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
817 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
818 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
819 expect(2, r);
820 /* range [0,2], freq = 1 */
821 SendMessage(hWndTrackbar, TBM_SETRANGEMAX, TRUE, 2);
822 SendMessage(hWndTrackbar, TBM_SETRANGEMIN, TRUE, 0);
823 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
824 r = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
825 expect(3, r);
828 static void test_tic_placement(HWND hWndTrackbar){
829 int r;
830 DWORD *rPTics;
831 DWORD numtics;
833 SendMessage(hWndTrackbar, TBM_SETRANGE, TRUE, MAKELONG(1, 6));
834 SendMessage(hWndTrackbar, TBM_SETTICFREQ, 1, 0);
836 numtics = SendMessage(hWndTrackbar, TBM_GETNUMTICS, 0, 0);
837 ok(numtics == 6, "Expected 6, got %d\n", numtics);
839 flush_sequences(sequences, NUM_MSG_SEQUENCE);
840 /* test TBM_GETPTICS */
841 rPTics = (DWORD *) SendMessage(hWndTrackbar, TBM_GETPTICS, 0,0);
842 expect(2, rPTics[0]);
843 expect(3, rPTics[1]);
844 expect(4, rPTics[2]);
845 expect(5, rPTics[3]);
847 /* test TBM_GETTIC */
848 r = SendMessage(hWndTrackbar, TBM_GETTIC, 0,0);
849 expect(2, r);
850 r = SendMessage(hWndTrackbar, TBM_GETTIC, 2,0);
851 expect(4, r);
852 r = SendMessage(hWndTrackbar, TBM_GETTIC, 4,0);
853 expect(-1, r);
855 /* test TBM_GETTICPIC */
856 r = SendMessage(hWndTrackbar, TBM_GETTICPOS, 0, 0);
857 ok(r > 0, "Expected r > 0, got %d\n", r);
858 r = SendMessage(hWndTrackbar, TBM_GETTICPOS, 2, 0);
859 ok(r > 0, "Expected r > 0, got %d\n", r);
861 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, tic_placement_test_seq, "get tic placement test sequence", FALSE);
862 ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent get tic placement test sequence", FALSE);
866 static void test_tool_tips(HWND hWndTrackbar){
867 int r;
868 HWND hWndTooltip;
869 HWND rTest;
871 flush_sequences(sequences, NUM_MSG_SEQUENCE);
872 /* testing TBM_SETTIPSIDE */
873 r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_TOP, 0);
874 expect(TBTS_TOP, r);
875 r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_LEFT, 0);
876 expect(TBTS_TOP, r);
877 r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_BOTTOM, 0);
878 expect(TBTS_LEFT, r);
879 r = SendMessage(hWndTrackbar, TBM_SETTIPSIDE, TBTS_RIGHT, 0);
880 expect(TBTS_BOTTOM, r);
882 /* testing TBM_SETTOOLTIPS */
883 hWndTooltip = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, NULL, 0,
884 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
885 NULL, NULL, NULL, NULL);
887 ok(hWndTooltip != NULL, "Expected non NULL value\n");
888 if (hWndTooltip != NULL){
889 SendMessage(hWndTrackbar, TBM_SETTOOLTIPS, (LPARAM) hWndTooltip, 0);
890 rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
891 ok(rTest == hWndTooltip, "Expected hWndToolTip, got\n");
892 SendMessage(hWndTrackbar, TBM_SETTOOLTIPS, 0, 0);
893 rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
894 ok(rTest == NULL, "Expected NULL\n");
895 SendMessage(hWndTrackbar, TBM_SETTOOLTIPS, (LPARAM) hWndTooltip, 5);
896 rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
897 ok(rTest == hWndTooltip, "Expected hWndTooltip, got\n");
898 } else
899 skip("tool tip control not present?\n");
901 /* test TBM_GETTOOLTIPS */
902 rTest = (HWND) SendMessage(hWndTrackbar, TBM_GETTOOLTIPS, 0,0);
903 ok(rTest == hWndTooltip, "Expected hWndTooltip\n");
905 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, tool_tips_test_seq, "tool tips test sequence", FALSE);
906 ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent tool tips test sequence", FALSE);
910 static void test_unicode(HWND hWndTrackbar){
911 int r;
913 flush_sequences(sequences, NUM_MSG_SEQUENCE);
914 /* testing TBM_SETUNICODEFORMAT */
915 r = SendMessage(hWndTrackbar, TBM_SETUNICODEFORMAT, TRUE, 0);
916 ok(r == FALSE, "Expected FALSE, got %d\n",r);
917 r = SendMessage(hWndTrackbar, TBM_SETUNICODEFORMAT, FALSE, 0);
918 ok(r == TRUE, "Expected TRUE, got %d\n",r);
920 /* test TBM_GETUNICODEFORMAT */
921 r = SendMessage(hWndTrackbar, TBM_GETUNICODEFORMAT, 0,0);
922 ok(r == FALSE, "Expected FALSE, got %d\n",r);
924 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, unicode_test_seq, "unicode test sequence", FALSE);
925 ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent unicode test sequence", FALSE);
928 static void test_ignore_selection(HWND hWndTrackbar){
929 int r;
931 flush_sequences(sequences, NUM_MSG_SEQUENCE);
932 /* test TBM_SETSEL ensure that it is ignored */
933 SendMessage(hWndTrackbar, TBM_SETSEL, TRUE, MAKELONG(0,10));
934 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
935 expect(0, r);
936 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
937 expect(0, r);
938 SendMessage(hWndTrackbar, TBM_SETSEL, FALSE, MAKELONG(0,10));
939 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
940 expect(0, r);
941 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
942 expect(0, r);
944 /* test TBM_SETSELEND, ensure that it is ignored */
945 SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 0);
946 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
947 expect(0, r);
948 SendMessage(hWndTrackbar, TBM_SETSELEND, TRUE, 10);
949 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
950 expect(0,r);
951 SendMessage(hWndTrackbar, TBM_SETSELEND, FALSE, 0);
952 r = SendMessage(hWndTrackbar, TBM_GETSELEND, 0,0);
953 expect(0, r);
955 /* test TBM_SETSELSTART, ensure that it is ignored */
956 SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 0);
957 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
958 expect(0, r);
959 SendMessage(hWndTrackbar, TBM_SETSELSTART, TRUE, 10);
960 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
961 expect(0,r);
962 SendMessage(hWndTrackbar, TBM_SETSELSTART, FALSE, 0);
963 r = SendMessage(hWndTrackbar, TBM_GETSELSTART, 0,0);
964 expect(0, r);
966 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, ignore_selection_test_seq, "ignore selection setting test sequence", FALSE);
967 ok_sequence(sequences, PARENT_SEQ_INDEX, empty_seq, "parent ignore selection setting test sequence", FALSE);
970 static void test_initial_state(void)
972 HWND hWnd;
973 int ret;
975 hWnd = create_trackbar(0, hWndParent);
977 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
978 expect(2, ret);
979 ret = SendMessage(hWnd, TBM_GETTIC, 0, 0);
980 expect(-1, ret);
981 ret = SendMessage(hWnd, TBM_GETTICPOS, 0, 0);
982 expect(-1, ret);
983 ret = SendMessage(hWnd, TBM_GETRANGEMIN, 0, 0);
984 expect(0, ret);
985 ret = SendMessage(hWnd, TBM_GETRANGEMAX, 0, 0);
986 expect(100, ret);
988 ret = SendMessage(hWnd, TBM_SETRANGEMAX, TRUE, 200);
989 expect(0, ret);
991 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
992 expect(2, ret);
994 ret = SendMessage(hWnd, TBM_SETRANGEMIN, TRUE, 10);
995 expect(0, ret);
997 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
998 expect(2, ret);
1000 DestroyWindow(hWnd);
1003 static void test_TBS_AUTOTICKS(void)
1005 HWND hWnd;
1006 int ret;
1008 hWnd = create_trackbar(TBS_AUTOTICKS, hWndParent);
1010 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1011 expect(2, ret);
1012 ret = SendMessage(hWnd, TBM_GETTIC, 0, 0);
1013 expect(-1, ret);
1014 ret = SendMessage(hWnd, TBM_GETTICPOS, 0, 0);
1015 expect(-1, ret);
1016 ret = SendMessage(hWnd, TBM_GETRANGEMIN, 0, 0);
1017 expect(0, ret);
1018 ret = SendMessage(hWnd, TBM_GETRANGEMAX, 0, 0);
1019 expect(100, ret);
1021 /* TBM_SETRANGEMAX rebuilds tics */
1022 ret = SendMessage(hWnd, TBM_SETRANGEMAX, TRUE, 200);
1023 expect(0, ret);
1024 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1025 expect(201, ret);
1027 /* TBM_SETRANGEMIN rebuilds tics */
1028 ret = SendMessage(hWnd, TBM_SETRANGEMAX, TRUE, 100);
1029 expect(0, ret);
1030 ret = SendMessage(hWnd, TBM_SETRANGEMIN, TRUE, 10);
1031 expect(0, ret);
1032 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1033 expect(91, ret);
1035 ret = SendMessage(hWnd, TBM_SETRANGEMIN, TRUE, 0);
1036 expect(0, ret);
1038 /* TBM_SETRANGE rebuilds tics */
1039 ret = SendMessage(hWnd, TBM_SETRANGE, TRUE, MAKELONG(10, 200));
1040 expect(0, ret);
1041 ret = SendMessage(hWnd, TBM_GETNUMTICS, 0, 0);
1042 expect(191, ret);
1044 DestroyWindow(hWnd);
1047 START_TEST(trackbar)
1049 DWORD style = WS_VISIBLE | TBS_TOOLTIPS | TBS_ENABLESELRANGE | TBS_FIXEDLENGTH | TBS_AUTOTICKS;
1050 HWND hWndTrackbar;
1052 init_msg_sequences(sequences, NUM_MSG_SEQUENCE);
1053 InitCommonControls();
1055 /* create parent window */
1056 hWndParent = create_parent_window();
1057 ok(hWndParent != NULL, "Failed to create parent Window!\n");
1059 if(!hWndParent){
1060 skip("parent window not present\n");
1061 return;
1064 flush_sequences(sequences, NUM_MSG_SEQUENCE);
1066 /* create trackbar with set styles */
1067 hWndTrackbar = create_trackbar(style, hWndParent);
1069 ok(hWndTrackbar != NULL, "Expected non NULL value\n");
1071 if (!hWndTrackbar){
1072 skip("trackbar control not present?\n");
1073 return;
1076 ok_sequence(sequences, TRACKBAR_SEQ_INDEX, empty_seq, "create Trackbar Window", FALSE);
1077 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_create_trackbar_wnd_seq, "parent trackbar window", TRUE);
1078 flush_sequences(sequences, NUM_MSG_SEQUENCE);
1080 /* TEST OF ALL SETTER and GETTER MESSAGES with required styles turned on*/
1081 test_trackbar_buddy(hWndTrackbar);
1082 test_line_size(hWndTrackbar);
1083 test_page_size(hWndTrackbar);
1084 test_position(hWndTrackbar);
1085 test_range(hWndTrackbar);
1086 test_selection(hWndTrackbar);
1087 test_thumb_length(hWndTrackbar);
1088 test_tic_settings(hWndTrackbar);
1089 test_tic_placement(hWndTrackbar);
1090 test_tool_tips(hWndTrackbar);
1091 test_unicode(hWndTrackbar);
1092 test_TBS_AUTOTICKS();
1094 flush_sequences(sequences, NUM_MSG_SEQUENCE);
1095 DestroyWindow(hWndTrackbar);
1097 /* test getters and setters without styles set */
1098 hWndTrackbar = create_trackbar(0, hWndParent);
1100 ok(hWndTrackbar != NULL, "Expected non NULL value\n");
1102 if (!hWndTrackbar){
1103 skip("trackbar control not present?\n");
1104 return;
1107 ok_sequence(sequences, PARENT_SEQ_INDEX, parent_new_window_test_seq, "new trackbar window test sequence", TRUE);
1109 test_ignore_selection(hWndTrackbar);
1111 DestroyWindow(hWndTrackbar);
1113 test_initial_state();
1115 DestroyWindow(hWndParent);