| 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 | GDK_AVAILABLE_IN_ALL |
| 43 | void gdk_test_render_sync (GdkWindow *window); |
| 44 | GDK_AVAILABLE_IN_ALL |
| 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 | GDK_AVAILABLE_IN_ALL |
| 52 | gboolean gdk_test_simulate_button (GdkWindow *window, |
| 53 | gint x, |
| 54 | gint y, |
| 55 | guint button, /*1..3*/ |
| 56 | GdkModifierType modifiers, |
| 57 | GdkEventType button_pressrelease); |
| 58 | |
| 59 | G_END_DECLS |
| 60 | |
| 61 | #endif /* __GDK_TEST_UTILS_H__ */ |
| 62 | |