]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdktestutils-win32.c
68972d8cd470e78e91115fab8b8f4fe924e2eeaf
[~andy/gtk] / gdk / win32 / gdktestutils-win32.c
1 /* Gtk+ testing utilities
2  * Copyright (C) 2007 Imendio AB
3  * Authors: Tim Janik
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 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
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20 #include <gdk/gdktestutils.h>
21 #include <gdk/gdkkeysyms.h>
22 #include <win32/gdkwin32.h>
23 #include "gdkalias.h"
24
25 void
26 gdk_test_render_sync (GdkWindow *window)
27 {
28 }
29
30 gboolean
31 gdk_test_simulate_key (GdkWindow      *window,
32                        gint            x,
33                        gint            y,
34                        guint           keyval,
35                        GdkModifierType modifiers,
36                        GdkEventType    key_pressrelease)
37 {
38   g_return_val_if_fail (key_pressrelease == GDK_KEY_PRESS || key_pressrelease == GDK_KEY_RELEASE, FALSE);
39   g_return_val_if_fail (window != NULL, FALSE);
40   return FALSE;
41 }
42
43 gboolean
44 gdk_test_simulate_button (GdkWindow      *window,
45                           gint            x,
46                           gint            y,
47                           guint           button, /*1..3*/
48                           GdkModifierType modifiers,
49                           GdkEventType    button_pressrelease)
50 {
51   g_return_val_if_fail (button_pressrelease == GDK_BUTTON_PRESS || button_pressrelease == GDK_BUTTON_RELEASE, FALSE);
52   g_return_val_if_fail (window != NULL, FALSE);
53
54   return FALSE;
55 }