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