1 /* Unit test suite for tab control.
3 * Copyright 2003 Vitaliy Margolen
4 * Copyright 2007 Hagop Hagopian
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/test.h"
29 #define DEFAULT_MIN_TAB_WIDTH 54
30 #define TAB_PADDING_X 6
31 #define EXTRA_ICON_PADDING 3
34 #define NUM_MSG_SEQUENCES 2
35 #define PARENT_SEQ_INDEX 0
36 #define TAB_SEQ_INDEX 1
38 #define expect(expected, got) ok ( expected == got, "Expected %d, got %d\n", expected, got)
39 #define expect_str(expected, got)\
40 ok ( strcmp(expected, got) == 0, "Expected '%s', got '%s'\n", expected, got)
42 #define TabWidthPadded(padd_x, num) (DEFAULT_MIN_TAB_WIDTH - (TAB_PADDING_X - (padd_x)) * num)
44 #define TabCheckSetSize(hwnd, SetWidth, SetHeight, ExpWidth, ExpHeight, Msg)\
45 SendMessage (hwnd, TCM_SETITEMSIZE, 0,\
46 (LPARAM) MAKELPARAM((SetWidth >= 0) ? SetWidth:0, (SetHeight >= 0) ? SetHeight:0));\
47 if (winetest_interactive) RedrawWindow (hwnd, NULL, 0, RDW_UPDATENOW);\
48 CheckSize(hwnd, ExpWidth, ExpHeight, Msg);
50 #define CheckSize(hwnd,width,height,msg)\
51 SendMessage (hwnd, TCM_GETITEMRECT, 0, (LPARAM) &rTab);\
52 if ((width >= 0) && (height < 0))\
53 ok (width == rTab.right - rTab.left, "%s: Expected width [%d] got [%d]\n",\
54 msg, (int)width, rTab.right - rTab.left);\
55 else if ((height >= 0) && (width < 0))\
56 ok (height == rTab.bottom - rTab.top, "%s: Expected height [%d] got [%d]\n",\
57 msg, (int)height, rTab.bottom - rTab.top);\
59 ok ((width == rTab.right - rTab.left) &&\
60 (height == rTab.bottom - rTab.top ),\
61 "%s: Expected [%d,%d] got [%d,%d]\n", msg, (int)width, (int)height,\
62 rTab.right - rTab.left, rTab.bottom - rTab.top);
64 static HFONT hFont
= 0;
66 static struct msg_sequence
*sequences
[NUM_MSG_SEQUENCES
];
68 static const struct message create_parent_wnd_seq
[] = {
69 { WM_GETMINMAXINFO
, sent
},
70 { WM_NCCREATE
, sent
},
71 { WM_NCCALCSIZE
, sent
|wparam
, 0 },
73 { WM_SHOWWINDOW
, sent
|wparam
, 1 },
74 { WM_WINDOWPOSCHANGING
, sent
|wparam
, 0 },
75 { WM_WINDOWPOSCHANGING
, sent
|wparam
, 0 },
76 { WM_ACTIVATEAPP
, sent
|wparam
, 1 },
77 { WM_NCACTIVATE
, sent
|wparam
, 1 },
78 { WM_ACTIVATE
, sent
|wparam
, 1 },
79 { WM_IME_SETCONTEXT
, sent
|wparam
|defwinproc
|optional
, 1 },
80 { WM_IME_NOTIFY
, sent
|defwinproc
|optional
},
81 { WM_SETFOCUS
, sent
|wparam
|defwinproc
, 0 },
82 /* Win9x adds SWP_NOZORDER below */
83 { WM_WINDOWPOSCHANGED
, sent
},
84 { WM_NCCALCSIZE
, sent
|wparam
|optional
, 1 },
90 static const struct message add_tab_to_parent
[] = {
91 { TCM_INSERTITEMA
, sent
},
92 { TCM_INSERTITEMA
, sent
},
93 { WM_NOTIFYFORMAT
, sent
|defwinproc
},
94 { WM_QUERYUISTATE
, sent
|wparam
|lparam
|defwinproc
|optional
, 0, 0 },
95 { WM_PARENTNOTIFY
, sent
|defwinproc
},
96 { TCM_INSERTITEMA
, sent
},
97 { TCM_INSERTITEMA
, sent
},
98 { TCM_INSERTITEMA
, sent
},
102 static const struct message add_tab_to_parent_interactive
[] = {
103 { TCM_INSERTITEMA
, sent
},
104 { TCM_INSERTITEMA
, sent
},
105 { WM_NOTIFYFORMAT
, sent
|defwinproc
},
106 { WM_QUERYUISTATE
, sent
|wparam
|lparam
|defwinproc
, 0, 0 },
107 { WM_PARENTNOTIFY
, sent
|defwinproc
},
108 { TCM_INSERTITEMA
, sent
},
109 { TCM_INSERTITEMA
, sent
},
110 { TCM_INSERTITEMA
, sent
},
111 { WM_SHOWWINDOW
, sent
},
112 { WM_WINDOWPOSCHANGING
, sent
},
113 { WM_WINDOWPOSCHANGING
, sent
},
114 { WM_NCACTIVATE
, sent
},
115 { WM_ACTIVATE
, sent
},
116 { WM_IME_SETCONTEXT
, sent
|defwinproc
|optional
},
117 { WM_IME_NOTIFY
, sent
|defwinproc
|optional
},
118 { WM_SETFOCUS
, sent
|defwinproc
},
119 { WM_WINDOWPOSCHANGED
, sent
},
125 static const struct message add_tab_control_parent_seq
[] = {
126 { WM_NOTIFYFORMAT
, sent
},
127 { WM_QUERYUISTATE
, sent
|wparam
|lparam
|optional
, 0, 0 },
131 static const struct message add_tab_control_parent_seq_interactive
[] = {
132 { WM_NOTIFYFORMAT
, sent
},
133 { WM_QUERYUISTATE
, sent
|wparam
|lparam
, 0, 0 },
134 { WM_WINDOWPOSCHANGING
, sent
|optional
},
135 { WM_NCACTIVATE
, sent
},
136 { WM_ACTIVATE
, sent
},
137 { WM_WINDOWPOSCHANGING
, sent
|optional
},
138 { WM_KILLFOCUS
, sent
},
139 { WM_IME_SETCONTEXT
, sent
|optional
},
140 { WM_IME_NOTIFY
, sent
|optional
},
144 static const struct message empty_sequence
[] = {
148 static const struct message set_min_tab_width_seq
[] = {
149 { TCM_SETMINTABWIDTH
, sent
|wparam
, 0 },
150 { TCM_SETMINTABWIDTH
, sent
|wparam
, 0 },
154 static const struct message get_item_count_seq
[] = {
155 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
159 static const struct message get_row_count_seq
[] = {
160 { TCM_GETROWCOUNT
, sent
|wparam
|lparam
, 0, 0 },
164 static const struct message get_item_rect_seq
[] = {
165 { TCM_GETITEMRECT
, sent
},
166 { TCM_GETITEMRECT
, sent
},
170 static const struct message getset_cur_focus_seq
[] = {
171 { TCM_SETCURFOCUS
, sent
|lparam
, 0 },
172 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
173 { TCM_SETCURFOCUS
, sent
|lparam
, 0 },
174 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
175 { TCM_SETCURSEL
, sent
|lparam
, 0 },
176 { TCM_SETCURFOCUS
, sent
|lparam
, 0 },
177 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
181 static const struct message getset_cur_sel_seq
[] = {
182 { TCM_SETCURSEL
, sent
|lparam
, 0 },
183 { TCM_GETCURSEL
, sent
|wparam
|lparam
, 0, 0 },
184 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
185 { TCM_SETCURSEL
, sent
|lparam
, 0 },
186 { TCM_GETCURSEL
, sent
|wparam
|lparam
, 0, 0 },
187 { TCM_SETCURSEL
, sent
|lparam
, 0 },
188 { TCM_SETCURSEL
, sent
|lparam
, 0 },
189 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
193 static const struct message getset_extended_style_seq
[] = {
194 { TCM_GETEXTENDEDSTYLE
, sent
|wparam
|lparam
, 0, 0 },
195 { TCM_SETEXTENDEDSTYLE
, sent
},
196 { TCM_GETEXTENDEDSTYLE
, sent
|wparam
|lparam
, 0, 0 },
197 { TCM_SETEXTENDEDSTYLE
, sent
},
198 { TCM_GETEXTENDEDSTYLE
, sent
|wparam
|lparam
, 0, 0 },
202 static const struct message getset_unicode_format_seq
[] = {
203 { CCM_SETUNICODEFORMAT
, sent
|lparam
, 0 },
204 { CCM_GETUNICODEFORMAT
, sent
|wparam
|lparam
, 0, 0 },
205 { CCM_SETUNICODEFORMAT
, sent
|lparam
, 0 },
206 { CCM_GETUNICODEFORMAT
, sent
|wparam
|lparam
, 0, 0 },
207 { CCM_SETUNICODEFORMAT
, sent
|lparam
, 0 },
211 static const struct message getset_item_seq
[] = {
212 { TCM_SETITEMA
, sent
},
213 { TCM_GETITEMA
, sent
},
214 { TCM_GETITEMA
, sent
},
218 static const struct message getset_tooltip_seq
[] = {
219 { WM_NOTIFYFORMAT
, sent
|optional
},
220 { WM_QUERYUISTATE
, sent
|wparam
|lparam
|optional
, 0, 0 },
221 { WM_WINDOWPOSCHANGING
, sent
|wparam
, 0 },
222 { WM_NOTIFYFORMAT
, sent
|optional
},
223 { TCM_SETTOOLTIPS
, sent
|lparam
, 0 },
224 { TCM_GETTOOLTIPS
, sent
|wparam
|lparam
, 0, 0 },
225 { TCM_SETTOOLTIPS
, sent
|lparam
, 0 },
226 { TCM_GETTOOLTIPS
, sent
|wparam
|lparam
, 0, 0 },
230 static const struct message getset_tooltip_parent_seq
[] = {
231 { WM_WINDOWPOSCHANGING
, sent
|wparam
, 0 },
235 static const struct message insert_focus_seq
[] = {
236 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
237 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
238 { TCM_INSERTITEM
, sent
|wparam
, 1 },
239 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
240 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
241 { TCM_INSERTITEM
, sent
|wparam
, 2 },
242 { WM_NOTIFYFORMAT
, sent
|defwinproc
, },
243 { WM_QUERYUISTATE
, sent
|defwinproc
|optional
, },
244 { WM_PARENTNOTIFY
, sent
|defwinproc
, },
245 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
246 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
247 { TCM_SETCURFOCUS
, sent
|wparam
|lparam
, -1, 0 },
248 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
249 { TCM_INSERTITEM
, sent
|wparam
, 3 },
250 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
254 static const struct message delete_focus_seq
[] = {
255 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
256 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
257 { TCM_DELETEITEM
, sent
|wparam
|lparam
, 1, 0 },
258 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
259 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
260 { TCM_SETCURFOCUS
, sent
|wparam
|lparam
, -1, 0 },
261 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
262 { TCM_DELETEITEM
, sent
|wparam
|lparam
, 0, 0 },
263 { TCM_GETITEMCOUNT
, sent
|wparam
|lparam
, 0, 0 },
264 { TCM_GETCURFOCUS
, sent
|wparam
|lparam
, 0, 0 },
270 create_tabcontrol (DWORD style
, DWORD mask
)
274 static char text1
[] = "Tab 1",
275 text2
[] = "Wide Tab 2",
278 handle
= CreateWindow (
281 WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
| TCS_FOCUSNEVER
| style
,
283 NULL
, NULL
, NULL
, 0);
287 SetWindowLong(handle
, GWL_STYLE
, WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
| TCS_FOCUSNEVER
| style
);
288 SendMessage (handle
, WM_SETFONT
, 0, (LPARAM
) hFont
);
290 tcNewTab
.mask
= mask
;
291 tcNewTab
.pszText
= text1
;
293 SendMessage (handle
, TCM_INSERTITEM
, 0, (LPARAM
) &tcNewTab
);
294 tcNewTab
.pszText
= text2
;
296 SendMessage (handle
, TCM_INSERTITEM
, 1, (LPARAM
) &tcNewTab
);
297 tcNewTab
.pszText
= text3
;
299 SendMessage (handle
, TCM_INSERTITEM
, 2, (LPARAM
) &tcNewTab
);
301 if (winetest_interactive
)
303 ShowWindow (handle
, SW_SHOW
);
304 RedrawWindow (handle
, NULL
, 0, RDW_UPDATENOW
);
311 static LRESULT WINAPI
parentWindowProcess(HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
313 static long defwndproc_counter
= 0;
317 /* do not log painting messages */
318 if (message
!= WM_PAINT
&&
319 message
!= WM_ERASEBKGND
&&
320 message
!= WM_NCPAINT
&&
321 message
!= WM_NCHITTEST
&&
322 message
!= WM_GETTEXT
&&
323 message
!= WM_GETICON
&&
324 message
!= WM_DEVICECHANGE
)
326 trace("parent: %p, %04x, %08lx, %08lx\n", hwnd
, message
, wParam
, lParam
);
328 msg
.message
= message
;
329 msg
.flags
= sent
|wparam
|lparam
;
330 if (defwndproc_counter
) msg
.flags
|= defwinproc
;
333 add_message(sequences
, PARENT_SEQ_INDEX
, &msg
);
336 defwndproc_counter
++;
337 ret
= DefWindowProcA(hwnd
, message
, wParam
, lParam
);
338 defwndproc_counter
--;
343 static BOOL
registerParentWindowClass(void)
348 cls
.lpfnWndProc
= parentWindowProcess
;
351 cls
.hInstance
= GetModuleHandleA(NULL
);
353 cls
.hCursor
= LoadCursorA(0, IDC_ARROW
);
354 cls
.hbrBackground
= GetStockObject(WHITE_BRUSH
);
355 cls
.lpszMenuName
= NULL
;
356 cls
.lpszClassName
= "Tab test parent class";
357 return RegisterClassA(&cls
);
360 static HWND
createParentWindow(void)
362 if (!registerParentWindowClass())
365 return CreateWindowEx(0, "Tab test parent class",
366 "Tab test parent window",
367 WS_CAPTION
| WS_SYSMENU
| WS_MINIMIZEBOX
|
368 WS_MAXIMIZEBOX
| WS_VISIBLE
,
370 GetDesktopWindow(), NULL
, GetModuleHandleA(NULL
), NULL
);
378 static LRESULT WINAPI
tabSubclassProcess(HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
380 struct subclass_info
*info
= (struct subclass_info
*)GetWindowLongPtrA(hwnd
, GWLP_USERDATA
);
381 static long defwndproc_counter
= 0;
385 /* do not log painting messages */
386 if (message
!= WM_PAINT
&&
387 message
!= WM_ERASEBKGND
&&
388 message
!= WM_NCPAINT
&&
389 message
!= WM_NCHITTEST
&&
390 message
!= WM_GETTEXT
&&
391 message
!= WM_GETICON
&&
392 message
!= WM_DEVICECHANGE
)
394 trace("tab: %p, %04x, %08lx, %08lx\n", hwnd
, message
, wParam
, lParam
);
396 msg
.message
= message
;
397 msg
.flags
= sent
|wparam
|lparam
;
398 if (defwndproc_counter
) msg
.flags
|= defwinproc
;
401 add_message(sequences
, TAB_SEQ_INDEX
, &msg
);
404 defwndproc_counter
++;
405 ret
= CallWindowProcA(info
->oldproc
, hwnd
, message
, wParam
, lParam
);
406 defwndproc_counter
--;
411 static HWND
createFilledTabControl(HWND parent_wnd
, DWORD style
, DWORD mask
, INT nTabs
)
415 struct subclass_info
*info
;
419 info
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct subclass_info
));
423 GetClientRect(parent_wnd
, &rect
);
425 tabHandle
= CreateWindow (
428 WS_CLIPSIBLINGS
| WS_CLIPCHILDREN
| TCS_FOCUSNEVER
| style
,
429 0, 0, rect
.right
, rect
.bottom
,
430 parent_wnd
, NULL
, NULL
, 0);
434 info
->oldproc
= (WNDPROC
)SetWindowLongPtrA(tabHandle
, GWLP_WNDPROC
, (LONG_PTR
)tabSubclassProcess
);
435 SetWindowLongPtrA(tabHandle
, GWLP_USERDATA
, (LONG_PTR
)info
);
437 tcNewTab
.mask
= mask
;
439 for (i
= 0; i
< nTabs
; i
++)
441 char tabName
[MAX_TABLEN
];
443 sprintf(tabName
, "Tab %d", i
+1);
444 tcNewTab
.pszText
= tabName
;
446 SendMessage (tabHandle
, TCM_INSERTITEM
, i
, (LPARAM
) &tcNewTab
);
449 if (winetest_interactive
)
451 ShowWindow (tabHandle
, SW_SHOW
);
452 RedrawWindow (tabHandle
, NULL
, 0, RDW_UPDATENOW
);
459 static HWND
create_tooltip (HWND hTab
, char toolTipText
[])
464 LPTSTR lptstr
= toolTipText
;
467 /* Creating a tooltip window*/
468 hwndTT
= CreateWindowEx(
472 WS_POPUP
| TTS_NOPREFIX
| TTS_ALWAYSTIP
,
473 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
474 hTab
, NULL
, 0, NULL
);
480 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
482 GetClientRect (hTab
, &rect
);
484 /* Initialize members of toolinfo*/
485 ti
.cbSize
= sizeof(TOOLINFO
);
486 ti
.uFlags
= TTF_SUBCLASS
;
490 ti
.lpszText
= lptstr
;
494 /* Add toolinfo structure to the tooltip control */
495 SendMessage(hwndTT
, TTM_ADDTOOL
, 0, (LPARAM
) (LPTOOLINFO
) &ti
);
500 static void test_tab(INT nMinTabWidth
)
504 HIMAGELIST himl
= ImageList_Create(21, 21, ILC_COLOR
, 3, 4);
510 hwTab
= create_tabcontrol(TCS_FIXEDWIDTH
, TCIF_TEXT
|TCIF_IMAGE
);
511 SendMessage(hwTab
, TCM_SETMINTABWIDTH
, 0, nMinTabWidth
);
512 /* Get System default MinTabWidth */
513 if (nMinTabWidth
< 0)
514 nMinTabWidth
= SendMessage(hwTab
, TCM_SETMINTABWIDTH
, 0, nMinTabWidth
);
517 dpi
= GetDeviceCaps(hdc
, LOGPIXELSX
);
518 hOldFont
= SelectObject(hdc
, (HFONT
)SendMessage(hwTab
, WM_GETFONT
, 0, 0));
519 GetTextExtentPoint32A(hdc
, "Tab 1", strlen("Tab 1"), &size
);
520 trace("Tab1 text size: size.cx=%d size.cy=%d\n", size
.cx
, size
.cy
);
521 SelectObject(hdc
, hOldFont
);
522 ReleaseDC(hwTab
, hdc
);
524 trace (" TCS_FIXEDWIDTH tabs no icon...\n");
525 CheckSize(hwTab
, dpi
, -1, "default width");
526 TabCheckSetSize(hwTab
, 50, 20, 50, 20, "set size");
527 TabCheckSetSize(hwTab
, 0, 1, 0, 1, "min size");
529 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, (LPARAM
)himl
);
531 trace (" TCS_FIXEDWIDTH tabs with icon...\n");
532 TabCheckSetSize(hwTab
, 50, 30, 50, 30, "set size > icon");
533 TabCheckSetSize(hwTab
, 20, 20, 25, 20, "set size < icon");
534 TabCheckSetSize(hwTab
, 0, 1, 25, 1, "min size");
536 DestroyWindow (hwTab
);
538 hwTab
= create_tabcontrol(TCS_FIXEDWIDTH
| TCS_BUTTONS
, TCIF_TEXT
|TCIF_IMAGE
);
539 SendMessage(hwTab
, TCM_SETMINTABWIDTH
, 0, nMinTabWidth
);
542 dpi
= GetDeviceCaps(hdc
, LOGPIXELSX
);
543 ReleaseDC(hwTab
, hdc
);
544 trace (" TCS_FIXEDWIDTH buttons no icon...\n");
545 CheckSize(hwTab
, dpi
, -1, "default width");
546 TabCheckSetSize(hwTab
, 20, 20, 20, 20, "set size 1");
547 TabCheckSetSize(hwTab
, 10, 50, 10, 50, "set size 2");
548 TabCheckSetSize(hwTab
, 0, 1, 0, 1, "min size");
550 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, (LPARAM
)himl
);
552 trace (" TCS_FIXEDWIDTH buttons with icon...\n");
553 TabCheckSetSize(hwTab
, 50, 30, 50, 30, "set size > icon");
554 TabCheckSetSize(hwTab
, 20, 20, 25, 20, "set size < icon");
555 TabCheckSetSize(hwTab
, 0, 1, 25, 1, "min size");
556 SendMessage(hwTab
, TCM_SETPADDING
, 0, MAKELPARAM(4,4));
557 TabCheckSetSize(hwTab
, 0, 1, 25, 1, "set padding, min size");
559 DestroyWindow (hwTab
);
561 hwTab
= create_tabcontrol(TCS_FIXEDWIDTH
| TCS_BOTTOM
, TCIF_TEXT
|TCIF_IMAGE
);
562 SendMessage(hwTab
, TCM_SETMINTABWIDTH
, 0, nMinTabWidth
);
565 dpi
= GetDeviceCaps(hdc
, LOGPIXELSX
);
566 ReleaseDC(hwTab
, hdc
);
567 trace (" TCS_FIXEDWIDTH | TCS_BOTTOM tabs...\n");
568 CheckSize(hwTab
, dpi
, -1, "no icon, default width");
570 TabCheckSetSize(hwTab
, 20, 20, 20, 20, "no icon, set size 1");
571 TabCheckSetSize(hwTab
, 10, 50, 10, 50, "no icon, set size 2");
572 TabCheckSetSize(hwTab
, 0, 1, 0, 1, "no icon, min size");
574 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, (LPARAM
)himl
);
576 TabCheckSetSize(hwTab
, 50, 30, 50, 30, "with icon, set size > icon");
577 TabCheckSetSize(hwTab
, 20, 20, 25, 20, "with icon, set size < icon");
578 TabCheckSetSize(hwTab
, 0, 1, 25, 1, "with icon, min size");
579 SendMessage(hwTab
, TCM_SETPADDING
, 0, MAKELPARAM(4,4));
580 TabCheckSetSize(hwTab
, 0, 1, 25, 1, "set padding, min size");
582 DestroyWindow (hwTab
);
584 hwTab
= create_tabcontrol(0, TCIF_TEXT
|TCIF_IMAGE
);
585 SendMessage(hwTab
, TCM_SETMINTABWIDTH
, 0, nMinTabWidth
);
587 trace (" non fixed width, with text...\n");
588 CheckSize(hwTab
, max(size
.cx
+TAB_PADDING_X
*2, (nMinTabWidth
< 0) ? DEFAULT_MIN_TAB_WIDTH
: nMinTabWidth
), -1,
589 "no icon, default width");
592 INT nTabWidth
= (nMinTabWidth
< 0) ? TabWidthPadded(i
, 2) : nMinTabWidth
;
594 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, 0);
595 SendMessage(hwTab
, TCM_SETPADDING
, 0, MAKELPARAM(i
,i
));
597 TabCheckSetSize(hwTab
, 50, 20, max(size
.cx
+ i
*2, nTabWidth
), 20, "no icon, set size");
598 TabCheckSetSize(hwTab
, 0, 1, max(size
.cx
+ i
*2, nTabWidth
), 1, "no icon, min size");
600 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, (LPARAM
)himl
);
601 nTabWidth
= (nMinTabWidth
< 0) ? TabWidthPadded(i
, 3) : nMinTabWidth
;
603 TabCheckSetSize(hwTab
, 50, 30, max(size
.cx
+ 21 + i
*3, nTabWidth
), 30, "with icon, set size > icon");
604 TabCheckSetSize(hwTab
, 20, 20, max(size
.cx
+ 21 + i
*3, nTabWidth
), 20, "with icon, set size < icon");
605 TabCheckSetSize(hwTab
, 0, 1, max(size
.cx
+ 21 + i
*3, nTabWidth
), 1, "with icon, min size");
607 DestroyWindow (hwTab
);
609 hwTab
= create_tabcontrol(0, TCIF_IMAGE
);
610 SendMessage(hwTab
, TCM_SETMINTABWIDTH
, 0, nMinTabWidth
);
612 trace (" non fixed width, no text...\n");
613 CheckSize(hwTab
, (nMinTabWidth
< 0) ? DEFAULT_MIN_TAB_WIDTH
: nMinTabWidth
, -1, "no icon, default width");
616 INT nTabWidth
= (nMinTabWidth
< 0) ? TabWidthPadded(i
, 2) : nMinTabWidth
;
618 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, 0);
619 SendMessage(hwTab
, TCM_SETPADDING
, 0, MAKELPARAM(i
,i
));
621 TabCheckSetSize(hwTab
, 50, 20, nTabWidth
, 20, "no icon, set size");
622 TabCheckSetSize(hwTab
, 0, 1, nTabWidth
, 1, "no icon, min size");
624 SendMessage(hwTab
, TCM_SETIMAGELIST
, 0, (LPARAM
)himl
);
625 if (i
> 1 && nMinTabWidth
> 0 && nMinTabWidth
< DEFAULT_MIN_TAB_WIDTH
)
626 nTabWidth
+= EXTRA_ICON_PADDING
*(i
-1);
628 TabCheckSetSize(hwTab
, 50, 30, nTabWidth
, 30, "with icon, set size > icon");
629 TabCheckSetSize(hwTab
, 20, 20, nTabWidth
, 20, "with icon, set size < icon");
630 TabCheckSetSize(hwTab
, 0, 1, nTabWidth
, 1, "with icon, min size");
633 DestroyWindow (hwTab
);
635 ImageList_Destroy(himl
);
639 static void test_getters_setters(HWND parent_wnd
, INT nTabs
)
648 ok(parent_wnd
!= NULL
, "no parent window!\n");
649 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
651 hTab
= createFilledTabControl(parent_wnd
, TCS_FIXEDWIDTH
, TCIF_TEXT
|TCIF_IMAGE
, nTabs
);
652 ok(hTab
!= NULL
, "Failed to create tab control\n");
654 if(!winetest_interactive
)
655 ok_sequence(sequences
, TAB_SEQ_INDEX
, add_tab_to_parent
,
656 "Tab sequence, after adding tab control to parent", TRUE
);
658 ok_sequence(sequences
, TAB_SEQ_INDEX
, add_tab_to_parent_interactive
,
659 "Tab sequence, after adding tab control to parent", TRUE
);
661 if(!winetest_interactive
)
662 ok_sequence(sequences
, PARENT_SEQ_INDEX
, add_tab_control_parent_seq
,
663 "Parent after sequence, adding tab control to parent", TRUE
);
665 ok_sequence(sequences
, PARENT_SEQ_INDEX
, add_tab_control_parent_seq_interactive
,
666 "Parent after sequence, adding tab control to parent", TRUE
);
668 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
669 ok(SendMessage(hTab
, TCM_SETMINTABWIDTH
, 0, -1) > 0,"TCM_SETMINTABWIDTH returned < 0\n");
670 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Set minTabWidth test parent sequence", FALSE
);
672 /* Testing GetItemCount */
673 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
674 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
675 expect(nTabs
, nTabsRetrieved
);
676 ok_sequence(sequences
, TAB_SEQ_INDEX
, get_item_count_seq
, "Get itemCount test sequence", FALSE
);
677 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Getset itemCount test parent sequence", FALSE
);
679 /* Testing GetRowCount */
680 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
681 rowCount
= SendMessage(hTab
, TCM_GETROWCOUNT
, 0, 0);
683 ok_sequence(sequences
, TAB_SEQ_INDEX
, get_row_count_seq
, "Get rowCount test sequence", FALSE
);
684 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Get rowCount test parent sequence", FALSE
);
686 /* Testing GetItemRect */
687 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
688 ok(SendMessage(hTab
, TCM_GETITEMRECT
, 0, (LPARAM
) &rTab
), "GetItemRect failed.\n");
691 dpi
= GetDeviceCaps(hdc
, LOGPIXELSX
);
692 ReleaseDC(hTab
, hdc
);
693 CheckSize(hTab
, dpi
, -1 , "Default Width");
694 ok_sequence(sequences
, TAB_SEQ_INDEX
, get_item_rect_seq
, "Get itemRect test sequence", FALSE
);
695 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Get itemRect test parent sequence", FALSE
);
697 /* Testing CurFocus */
701 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
703 /* Testing CurFocus with largest appropriate value */
704 SendMessage(hTab
, TCM_SETCURFOCUS
, nTabs
-1, 0);
705 focusIndex
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
706 expect(nTabs
-1, focusIndex
);
708 /* Testing CurFocus with negative value */
709 SendMessage(hTab
, TCM_SETCURFOCUS
, -10, 0);
710 focusIndex
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
711 expect(-1, focusIndex
);
713 /* Testing CurFocus with value larger than number of tabs */
714 focusIndex
= SendMessage(hTab
, TCM_SETCURSEL
, 1, 0);
716 expect(-1, focusIndex
);
719 SendMessage(hTab
, TCM_SETCURFOCUS
, nTabs
+1, 0);
720 focusIndex
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
721 expect(1, focusIndex
);
723 ok_sequence(sequences
, TAB_SEQ_INDEX
, getset_cur_focus_seq
, "Getset curFoc test sequence", FALSE
);
731 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
733 /* Testing CurSel with largest appropriate value */
734 selectionIndex
= SendMessage(hTab
, TCM_SETCURSEL
, nTabs
-1, 0);
735 expect(1, selectionIndex
);
736 selectionIndex
= SendMessage(hTab
, TCM_GETCURSEL
, 0, 0);
737 expect(nTabs
-1, selectionIndex
);
739 /* Focus should switch with selection */
740 focusIndex
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
741 expect(nTabs
-1, focusIndex
);
743 /* Testing CurSel with negative value */
744 SendMessage(hTab
, TCM_SETCURSEL
, -10, 0);
745 selectionIndex
= SendMessage(hTab
, TCM_GETCURSEL
, 0, 0);
746 expect(-1, selectionIndex
);
748 /* Testing CurSel with value larger than number of tabs */
749 selectionIndex
= SendMessage(hTab
, TCM_SETCURSEL
, 1, 0);
750 expect(-1, selectionIndex
);
752 selectionIndex
= SendMessage(hTab
, TCM_SETCURSEL
, nTabs
+1, 0);
753 expect(-1, selectionIndex
);
754 selectionIndex
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
755 expect(1, selectionIndex
);
757 ok_sequence(sequences
, TAB_SEQ_INDEX
, getset_cur_sel_seq
, "Getset curSel test sequence", FALSE
);
758 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Getset curSel test parent sequence", FALSE
);
761 /* Testing ExtendedStyle */
763 DWORD prevExtendedStyle
;
766 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
768 /* Testing Flat Separators */
769 extendedStyle
= SendMessage(hTab
, TCM_GETEXTENDEDSTYLE
, 0, 0);
770 prevExtendedStyle
= SendMessage(hTab
, TCM_SETEXTENDEDSTYLE
, 0, TCS_EX_FLATSEPARATORS
);
771 expect(extendedStyle
, prevExtendedStyle
);
773 extendedStyle
= SendMessage(hTab
, TCM_GETEXTENDEDSTYLE
, 0, 0);
775 expect(TCS_EX_FLATSEPARATORS
, extendedStyle
);
778 /* Testing Register Drop */
779 prevExtendedStyle
= SendMessage(hTab
, TCM_SETEXTENDEDSTYLE
, 0, TCS_EX_REGISTERDROP
);
780 expect(extendedStyle
, prevExtendedStyle
);
782 extendedStyle
= SendMessage(hTab
, TCM_GETEXTENDEDSTYLE
, 0, 0);
784 expect(TCS_EX_REGISTERDROP
, extendedStyle
);
787 ok_sequence(sequences
, TAB_SEQ_INDEX
, getset_extended_style_seq
, "Getset extendedStyle test sequence", FALSE
);
788 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Getset extendedStyle test parent sequence", FALSE
);
791 /* Testing UnicodeFormat */
795 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
797 unicodeFormat
= SendMessage(hTab
, TCM_SETUNICODEFORMAT
, TRUE
, 0);
799 expect(0, unicodeFormat
);
801 unicodeFormat
= SendMessage(hTab
, TCM_GETUNICODEFORMAT
, 0, 0);
802 expect(1, unicodeFormat
);
804 unicodeFormat
= SendMessage(hTab
, TCM_SETUNICODEFORMAT
, FALSE
, 0);
805 expect(1, unicodeFormat
);
806 unicodeFormat
= SendMessage(hTab
, TCM_GETUNICODEFORMAT
, 0, 0);
807 expect(0, unicodeFormat
);
809 unicodeFormat
= SendMessage(hTab
, TCM_SETUNICODEFORMAT
, TRUE
, 0);
810 expect(0, unicodeFormat
);
812 ok_sequence(sequences
, TAB_SEQ_INDEX
, getset_unicode_format_seq
, "Getset unicodeFormat test sequence", FALSE
);
813 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Getset unicodeFormat test parent sequence", FALSE
);
816 /* Testing GetSet Item */
819 char szText
[32] = "New Label";
821 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
823 tcItem
.mask
= TCIF_TEXT
;
824 tcItem
.pszText
= &szText
[0];
825 tcItem
.cchTextMax
= sizeof(szText
);
827 ok ( SendMessage(hTab
, TCM_SETITEM
, 0, (LPARAM
) &tcItem
), "Setting new item failed.\n");
828 ok ( SendMessage(hTab
, TCM_GETITEM
, 0, (LPARAM
) &tcItem
), "Getting item failed.\n");
829 expect_str("New Label", tcItem
.pszText
);
831 ok ( SendMessage(hTab
, TCM_GETITEM
, 1, (LPARAM
) &tcItem
), "Getting item failed.\n");
832 expect_str("Tab 2", tcItem
.pszText
);
834 ok_sequence(sequences
, TAB_SEQ_INDEX
, getset_item_seq
, "Getset item test sequence", FALSE
);
835 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "Getset item test parent sequence", FALSE
);
838 /* Testing GetSet ToolTip */
841 char toolTipText
[32] = "ToolTip Text Test";
843 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
845 toolTip
= create_tooltip(hTab
, toolTipText
);
846 SendMessage(hTab
, TCM_SETTOOLTIPS
, (LPARAM
) toolTip
, 0);
847 ok (toolTip
== (HWND
) SendMessage(hTab
,TCM_GETTOOLTIPS
,0,0), "ToolTip was set incorrectly.\n");
849 SendMessage(hTab
, TCM_SETTOOLTIPS
, 0, 0);
850 ok (NULL
== (HWND
) SendMessage(hTab
,TCM_GETTOOLTIPS
,0,0), "ToolTip was set incorrectly.\n");
852 ok_sequence(sequences
, TAB_SEQ_INDEX
, getset_tooltip_seq
, "Getset tooltip test sequence", TRUE
);
853 ok_sequence(sequences
, PARENT_SEQ_INDEX
, getset_tooltip_parent_seq
, "Getset tooltip test parent sequence", TRUE
);
859 static void test_adjustrect(HWND parent_wnd
)
864 ok(parent_wnd
!= NULL
, "no parent window!\n");
866 hTab
= createFilledTabControl(parent_wnd
, TCS_FIXEDWIDTH
, 0, 0);
867 ok(hTab
!= NULL
, "Failed to create tab control\n");
869 r
= SendMessage(hTab
, TCM_ADJUSTRECT
, FALSE
, 0);
872 r
= SendMessage(hTab
, TCM_ADJUSTRECT
, TRUE
, 0);
875 static void test_insert_focus(HWND parent_wnd
)
881 DWORD mask
= TCIF_TEXT
|TCIF_IMAGE
;
882 static char tabName
[] = "TAB";
883 tcNewTab
.mask
= mask
;
884 tcNewTab
.pszText
= tabName
;
886 ok(parent_wnd
!= NULL
, "no parent window!\n");
888 hTab
= createFilledTabControl(parent_wnd
, TCS_FIXEDWIDTH
, mask
, 0);
889 ok(hTab
!= NULL
, "Failed to create tab control\n");
891 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
893 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
894 expect(0, nTabsRetrieved
);
896 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
900 r
= SendMessage(hTab
, TCM_INSERTITEM
, 1, (LPARAM
) &tcNewTab
);
903 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
904 expect(1, nTabsRetrieved
);
906 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
910 r
= SendMessage(hTab
, TCM_INSERTITEM
, 2, (LPARAM
) &tcNewTab
);
913 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
914 expect(2, nTabsRetrieved
);
916 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
919 r
= SendMessage(hTab
, TCM_SETCURFOCUS
, -1, 0);
922 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
926 r
= SendMessage(hTab
, TCM_INSERTITEM
, 3, (LPARAM
) &tcNewTab
);
929 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
932 ok_sequence(sequences
, TAB_SEQ_INDEX
, insert_focus_seq
, "insert_focus test sequence", TRUE
);
933 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "insert_focus parent test sequence", FALSE
);
938 static void test_delete_focus(HWND parent_wnd
)
944 ok(parent_wnd
!= NULL
, "no parent window!\n");
946 hTab
= createFilledTabControl(parent_wnd
, TCS_FIXEDWIDTH
, TCIF_TEXT
|TCIF_IMAGE
, 2);
947 ok(hTab
!= NULL
, "Failed to create tab control\n");
949 flush_sequences(sequences
, NUM_MSG_SEQUENCES
);
951 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
952 expect(2, nTabsRetrieved
);
954 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
957 r
= SendMessage(hTab
, TCM_DELETEITEM
, 1, 0);
960 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
961 expect(1, nTabsRetrieved
);
963 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
966 r
= SendMessage(hTab
, TCM_SETCURFOCUS
, -1, 0);
969 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
972 r
= SendMessage(hTab
, TCM_DELETEITEM
, 0, 0);
975 nTabsRetrieved
= SendMessage(hTab
, TCM_GETITEMCOUNT
, 0, 0);
976 expect(0, nTabsRetrieved
);
978 r
= SendMessage(hTab
, TCM_GETCURFOCUS
, 0, 0);
981 ok_sequence(sequences
, TAB_SEQ_INDEX
, delete_focus_seq
, "delete_focus test sequence", FALSE
);
982 ok_sequence(sequences
, PARENT_SEQ_INDEX
, empty_sequence
, "delete_focus parent test sequence", FALSE
);
992 lstrcpyA(logfont
.lfFaceName
, "Arial");
993 memset(&logfont
, 0, sizeof(logfont
));
994 logfont
.lfHeight
= -12;
995 logfont
.lfWeight
= FW_NORMAL
;
996 logfont
.lfCharSet
= ANSI_CHARSET
;
997 hFont
= CreateFontIndirectA(&logfont
);
999 InitCommonControls();
1001 trace ("Testing with default MinWidth\n");
1003 trace ("Testing with MinWidth set to -3\n");
1005 trace ("Testing with MinWidth set to 24\n");
1007 trace ("Testing with MinWidth set to 54\n");
1009 trace ("Testing with MinWidth set to 94\n");
1012 init_msg_sequences(sequences
, NUM_MSG_SEQUENCES
);
1014 parent_wnd
= createParentWindow();
1015 ok(parent_wnd
!= NULL
, "Failed to create parent window!\n");
1017 /* Testing getters and setters with 5 tabs */
1018 test_getters_setters(parent_wnd
, 5);
1020 test_adjustrect(parent_wnd
);
1022 test_insert_focus(parent_wnd
);
1023 test_delete_focus(parent_wnd
);
1025 DestroyWindow(parent_wnd
);