comctl32/updown: Specify all styles explicitly in tests.
This commit is contained in:
parent
8151963f4e
commit
b2d89f4823
|
@ -287,7 +287,7 @@ static HWND create_updown_control(DWORD style)
|
||||||
RECT rect;
|
RECT rect;
|
||||||
|
|
||||||
GetClientRect(parent_wnd, &rect);
|
GetClientRect(parent_wnd, &rect);
|
||||||
updown = CreateUpDownControl(WS_CHILD | WS_BORDER | WS_VISIBLE | UDS_ALIGNRIGHT | style,
|
updown = CreateUpDownControl(WS_CHILD | WS_BORDER | WS_VISIBLE | style,
|
||||||
0, 0, rect.right, rect.bottom, parent_wnd, 1, GetModuleHandleA(NULL), edit,
|
0, 0, rect.right, rect.bottom, parent_wnd, 1, GetModuleHandleA(NULL), edit,
|
||||||
100, 0, 50);
|
100, 0, 50);
|
||||||
if (!updown) return NULL;
|
if (!updown) return NULL;
|
||||||
|
@ -304,7 +304,7 @@ static void test_updown_pos(void)
|
||||||
HWND updown;
|
HWND updown;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
|
|
||||||
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
||||||
|
|
||||||
|
@ -365,7 +365,7 @@ static void test_updown_pos32(void)
|
||||||
int r;
|
int r;
|
||||||
int low, high;
|
int low, high;
|
||||||
|
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
|
|
||||||
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
||||||
|
|
||||||
|
@ -437,7 +437,7 @@ static void test_updown_buddy(void)
|
||||||
{
|
{
|
||||||
HWND updown, buddyReturn;
|
HWND updown, buddyReturn;
|
||||||
|
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
|
|
||||||
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ static void test_updown_base(void)
|
||||||
int r;
|
int r;
|
||||||
CHAR text[10];
|
CHAR text[10];
|
||||||
|
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
|
|
||||||
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
||||||
|
|
||||||
|
@ -499,7 +499,7 @@ static void test_updown_base(void)
|
||||||
DestroyWindow(updown);
|
DestroyWindow(updown);
|
||||||
|
|
||||||
/* switch base with buddy attached */
|
/* switch base with buddy attached */
|
||||||
updown = create_updown_control(UDS_SETBUDDYINT);
|
updown = create_updown_control(UDS_SETBUDDYINT | UDS_ALIGNRIGHT);
|
||||||
|
|
||||||
r = SendMessage(updown, UDM_SETPOS, 0, 10);
|
r = SendMessage(updown, UDM_SETPOS, 0, 10);
|
||||||
expect(50, r);
|
expect(50, r);
|
||||||
|
@ -523,7 +523,7 @@ static void test_updown_unicode(void)
|
||||||
HWND updown;
|
HWND updown;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
|
|
||||||
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
||||||
|
|
||||||
|
@ -562,7 +562,7 @@ static void test_updown_create(void)
|
||||||
|
|
||||||
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
flush_sequences(sequences, NUM_MSG_SEQUENCES);
|
||||||
|
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
ok(updown != NULL, "Failed to create updown control\n");
|
ok(updown != NULL, "Failed to create updown control\n");
|
||||||
ok_sequence(sequences, PARENT_SEQ_INDEX, add_updown_to_parent_seq, "add updown control to parent", TRUE);
|
ok_sequence(sequences, PARENT_SEQ_INDEX, add_updown_to_parent_seq, "add updown control to parent", TRUE);
|
||||||
ok_sequence(sequences, EDIT_SEQ_INDEX, add_updown_with_edit_seq, "add updown control with edit", FALSE);
|
ok_sequence(sequences, EDIT_SEQ_INDEX, add_updown_with_edit_seq, "add updown control with edit", FALSE);
|
||||||
|
@ -587,7 +587,7 @@ static void test_UDS_SETBUDDYINT(void)
|
||||||
SetWindowTextA(edit, text);
|
SetWindowTextA(edit, text);
|
||||||
|
|
||||||
/* creating without UDS_SETBUDDYINT */
|
/* creating without UDS_SETBUDDYINT */
|
||||||
updown = create_updown_control(0);
|
updown = create_updown_control(UDS_ALIGNRIGHT);
|
||||||
/* try to set UDS_SETBUDDYINT after creation */
|
/* try to set UDS_SETBUDDYINT after creation */
|
||||||
style = GetWindowLongA(updown, GWL_STYLE);
|
style = GetWindowLongA(updown, GWL_STYLE);
|
||||||
SetWindowLongA(updown, GWL_STYLE, style | UDS_SETBUDDYINT);
|
SetWindowLongA(updown, GWL_STYLE, style | UDS_SETBUDDYINT);
|
||||||
|
@ -599,7 +599,7 @@ static void test_UDS_SETBUDDYINT(void)
|
||||||
DestroyWindow(updown);
|
DestroyWindow(updown);
|
||||||
|
|
||||||
/* creating with UDS_SETBUDDYINT */
|
/* creating with UDS_SETBUDDYINT */
|
||||||
updown = create_updown_control(UDS_SETBUDDYINT);
|
updown = create_updown_control(UDS_SETBUDDYINT | UDS_ALIGNRIGHT);
|
||||||
GetWindowTextA(edit, text, sizeof(text)/sizeof(CHAR));
|
GetWindowTextA(edit, text, sizeof(text)/sizeof(CHAR));
|
||||||
/* 50 is initial value here */
|
/* 50 is initial value here */
|
||||||
ok(lstrcmpA(text, "50") == 0, "Expected '50', got '%s'\n", text);
|
ok(lstrcmpA(text, "50") == 0, "Expected '50', got '%s'\n", text);
|
||||||
|
|
Loading…
Reference in New Issue