]> Pileus Git - ~andy/gtk/blob - gdk/broadway/gdktestutils-broadway.c
ed6f25b1774b9127a437d68c1f9669604391ac8b
[~andy/gtk] / gdk / broadway / gdktestutils-broadway.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 "config.h"
21 #include <gdk/gdktestutils.h>
22 #include <gdk/gdkkeysyms.h>
23 #include <gdk/gdkinternals.h>
24
25 void
26 _gdk_broadway_window_sync_rendering (GdkWindow *window)
27 {
28   /* FIXME: Find out if there is a way to implement this on broadway. */
29 }
30
31 gboolean
32 _gdk_broadway_window_simulate_key (GdkWindow      *window,
33                                    gint            x,
34                                    gint            y,
35                                    guint           keyval,
36                                    GdkModifierType modifiers,
37                                    GdkEventType    key_pressrelease)
38 {
39   g_return_val_if_fail (key_pressrelease == GDK_KEY_PRESS || key_pressrelease == GDK_KEY_RELEASE, FALSE);
40   g_return_val_if_fail (window != NULL, FALSE);
41
42   if (!GDK_WINDOW_IS_MAPPED (window))
43     return FALSE;
44
45   /* FIXME: Implement. */
46
47   return FALSE;
48 }
49
50 gboolean
51 _gdk_broadway_window_simulate_button (GdkWindow      *window,
52                                       gint            x,
53                                       gint            y,
54                                       guint           button, /*1..3*/
55                                       GdkModifierType modifiers,
56                                       GdkEventType    button_pressrelease)
57 {
58   g_return_val_if_fail (button_pressrelease == GDK_BUTTON_PRESS || button_pressrelease == GDK_BUTTON_RELEASE, FALSE);
59   g_return_val_if_fail (window != NULL, FALSE);
60
61   if (!GDK_WINDOW_IS_MAPPED (window))
62     return FALSE;
63
64   /* FIXME: Implement. */
65
66   return FALSE;
67 }