Add WM_SETREDRAW test
Dmitry Timoshkov
dmitry at baikal.ru
Thu Apr 8 03:13:54 CDT 2004
Hello,
this new WM_SETREDRAW test succeeds on Wine. Good to know that our
implementation is compatible with an MS' one.
Changelog:
Dmitry Timoshkov <dmitry at codeweavers.com>
Add WM_SETREDRAW test.
--- cvs/hq/wine/dlls/user/tests/msg.c 2004-04-08 15:20:58.000000000 +0900
+++ wine/dlls/user/tests/msg.c 2004-04-08 16:50:09.000000000 +0900
@@ -401,6 +401,18 @@ static const struct message WmSetMenuVis
{ 0 }
};
+static const struct message WmSetRedrawFalseSeq[] =
+{
+ { WM_SETREDRAW, sent|wparam, 0 },
+ { 0 }
+};
+
+static const struct message WmSetRedrawTrueSeq[] =
+{
+ { WM_SETREDRAW, sent|wparam, 1 },
+ { 0 }
+};
+
static int sequence_cnt, sequence_size;
static struct message* sequence;
@@ -492,6 +504,31 @@ static void ok_sequence(const struct mes
flush_sequence();
}
+static void test_WM_SETREDRAW(HWND hwnd)
+{
+ DWORD style = GetWindowLongA(hwnd, GWL_STYLE);
+
+ flush_sequence();
+
+ SendMessageA(hwnd, WM_SETREDRAW, FALSE, 0);
+ ok_sequence(WmSetRedrawFalseSeq, "SetRedraw:FALSE");
+
+ ok(!(GetWindowLongA(hwnd, GWL_STYLE) & WS_VISIBLE), "WS_VISIBLE should NOT be set\n");
+ ok(!IsWindowVisible(hwnd), "IsWindowVisible() should return FALSE\n");
+
+ flush_sequence();
+ SendMessageA(hwnd, WM_SETREDRAW, TRUE, 0);
+ ok_sequence(WmSetRedrawTrueSeq, "SetRedraw:TRUE");
+
+ ok(GetWindowLongA(hwnd, GWL_STYLE) & WS_VISIBLE, "WS_VISIBLE should be set\n");
+ ok(IsWindowVisible(hwnd), "IsWindowVisible() should return TRUE");
+
+ /* restore original WS_VISIBLE state */
+ SetWindowLongA(hwnd, GWL_STYLE, style);
+
+ flush_sequence();
+}
+
/* test if we receive the right sequence of messages */
static void test_messages(void)
{
@@ -503,10 +540,16 @@ static void test_messages(void)
100, 100, 200, 200, 0, 0, 0, NULL);
ok (hwnd != 0, "Failed to create overlapped window\n");
ok_sequence(WmCreateOverlappedSeq, "CreateWindow:overlapped");
+
+ /* test WM_SETREDRAW on a not visible top level window */
+ test_WM_SETREDRAW(hwnd);
ShowWindow(hwnd, SW_SHOW);
ok_sequence(WmShowOverlappedSeq, "ShowWindow:overlapped");
+ /* test WM_SETREDRAW on a visible top level window */
+ test_WM_SETREDRAW(hwnd);
+
DestroyWindow(hwnd);
ok_sequence(WmDestroyOverlappedSeq, "DestroyWindow:overlapped");
@@ -528,11 +571,16 @@ static void test_messages(void)
hbutton = CreateWindowExA(0, "TestWindowClass", "Test button", WS_CHILDWINDOW,
0, 100, 50, 50, hchild, 0, 0, NULL);
ok (hbutton != 0, "Failed to create button window\n");
- flush_sequence();
+
+ /* test WM_SETREDRAW on a not visible child window */
+ test_WM_SETREDRAW(hchild);
ShowWindow(hchild, SW_SHOW);
ok_sequence(WmShowChildSeq, "ShowWindow:child");
+ /* test WM_SETREDRAW on a visible child window */
+ test_WM_SETREDRAW(hchild);
+
SetFocus(hchild);
flush_sequence();
More information about the wine-patches
mailing list