]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdktestutils-win32.c
Fix win32 build
[~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
24
25 gboolean
26 _gdk_win32_window_simulate_key (GdkWindow      *window,
27                        gint            x,
28                        gint            y,
29                        guint           keyval,
30                        GdkModifierType modifiers,
31                        GdkEventType    key_pressrelease)
32 {
33   g_return_val_if_fail (key_pressrelease == GDK_KEY_PRESS || key_pressrelease == GDK_KEY_RELEASE, FALSE);
34   g_return_val_if_fail (window != NULL, FALSE);
35   return FALSE;
36 }
37
38 gboolean
39 _gdk_win32_window_simulate_button (GdkWindow      *window,
40                           gint            x,
41                           gint            y,
42                           guint           button, /*1..3*/
43                           GdkModifierType modifiers,
44                           GdkEventType    button_pressrelease)
45 {
46   g_return_val_if_fail (button_pressrelease == GDK_BUTTON_PRESS || button_pressrelease == GDK_BUTTON_RELEASE, FALSE);
47   g_return_val_if_fail (window != NULL, FALSE);
48
49   return FALSE;
50 }