]> Pileus Git - ~andy/gtk/blob - gdk/gdktestutils.h
Fixed copyright for newly submitted files.
[~andy/gtk] / gdk / gdktestutils.h
1 /* Gdk 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 #ifndef __GDK_TEST_UTILS_H__
21 #define __GDK_TEST_UTILS_H__
22
23 #include <gdk/gdkwindow.h>
24
25 G_BEGIN_DECLS;
26
27 /* --- Gdk Test Utility API --- */
28 void            gdk_test_render_sync            (GdkWindow      *window);
29 gboolean        gdk_test_simulate_key           (GdkWindow      *window,
30                                                  gint            x,
31                                                  gint            y,
32                                                  guint           keyval,
33                                                  GdkModifierType modifiers,
34                                                  GdkEventType    key_pressrelease);
35 gboolean        gdk_test_simulate_button        (GdkWindow      *window,
36                                                  gint            x,
37                                                  gint            y,
38                                                  guint           button, /*1..3*/
39                                                  GdkModifierType modifiers,
40                                                  GdkEventType    button_pressrelease);
41 G_END_DECLS;
42
43 #endif /* __GDK_TEST_UTILS_H__ */