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#ifndef __GDK_TEST_UTILS_H__
22#define __GDK_TEST_UTILS_H__
23
24#if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
25#error "Only <gdk/gdk.h> can be included directly."
26#endif
27
28#include <gdk/gdkwindow.h>
29
30G_BEGIN_DECLS
31
32/* --- Gdk Test Utility API --- */
33void gdk_test_render_sync (GdkWindow *window);
34gboolean gdk_test_simulate_key (GdkWindow *window,
35 gint x,
36 gint y,
37 guint keyval,
38 GdkModifierType modifiers,
39 GdkEventType key_pressrelease);
40gboolean gdk_test_simulate_button (GdkWindow *window,
41 gint x,
42 gint y,
43 guint button, /*1..3*/
44 GdkModifierType modifiers,
45 GdkEventType button_pressrelease);
46
47G_END_DECLS
48
49#endif /* __GDK_TEST_UTILS_H__ */
50