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