]> Pileus Git - ~andy/gtk/blob - gdk/gdktestutils.h
wayland: Add a few more cursors
[~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
21 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
22 #error "Only <gdk/gdk.h> can be included directly."
23 #endif
24
25 #ifndef __GDK_TEST_UTILS_H__
26 #define __GDK_TEST_UTILS_H__
27
28 #include <gdk/gdkwindow.h>
29
30 G_BEGIN_DECLS
31
32
33 /**
34  * SECTION:gdktesting
35  * @Short_description: Test utilities
36  * @Title: Testing
37  *
38  * The functions in this section are intended to be used in test programs.
39  * They allow to simulate some user input.
40  */
41
42
43 /* --- Gdk Test Utility API --- */
44 void            gdk_test_render_sync            (GdkWindow      *window);
45 gboolean        gdk_test_simulate_key           (GdkWindow      *window,
46                                                  gint            x,
47                                                  gint            y,
48                                                  guint           keyval,
49                                                  GdkModifierType modifiers,
50                                                  GdkEventType    key_pressrelease);
51 gboolean        gdk_test_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_END_DECLS
59
60 #endif /* __GDK_TEST_UTILS_H__ */