]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdktestutils-win32.c
Fix up for newer draft of wm-spec
[~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, see <http://www.gnu.org/licenses/>.
17  */
18 #include <gdk/gdktestutils.h>
19 #include <gdk/gdkkeysyms.h>
20 #include <win32/gdkwin32.h>
21
22
23 gboolean
24 _gdk_win32_window_simulate_key (GdkWindow      *window,
25                        gint            x,
26                        gint            y,
27                        guint           keyval,
28                        GdkModifierType modifiers,
29                        GdkEventType    key_pressrelease)
30 {
31   g_return_val_if_fail (key_pressrelease == GDK_KEY_PRESS || key_pressrelease == GDK_KEY_RELEASE, FALSE);
32   g_return_val_if_fail (window != NULL, FALSE);
33   return FALSE;
34 }
35
36 gboolean
37 _gdk_win32_window_simulate_button (GdkWindow      *window,
38                           gint            x,
39                           gint            y,
40                           guint           button, /*1..3*/
41                           GdkModifierType modifiers,
42                           GdkEventType    button_pressrelease)
43 {
44   g_return_val_if_fail (button_pressrelease == GDK_BUTTON_PRESS || button_pressrelease == GDK_BUTTON_RELEASE, FALSE);
45   g_return_val_if_fail (window != NULL, FALSE);
46
47   return FALSE;
48 }