From 0d81a39f5b8b45f2542171bf24a55e39d9a67e68 Mon Sep 17 00:00:00 2001 From: Richard Hult Date: Wed, 21 Nov 2007 11:29:03 +0000 Subject: [PATCH] * gdk/quartz/gdktestutils-quartz.c: Add stubs for the testing functions to 2007-11-21 Richard Hult * gdk/quartz/Makefile.am: * gdk/quartz/gdktestutils-quartz.c: Add stubs for the testing functions to fix the build. svn path=/trunk/; revision=19023 --- ChangeLog | 5 ++ gdk/quartz/Makefile.am | 1 + gdk/quartz/gdktestutils-quartz.c | 125 +++++++++++++++++++++++++++++++ 3 files changed, 131 insertions(+) create mode 100644 gdk/quartz/gdktestutils-quartz.c diff --git a/ChangeLog b/ChangeLog index 373075fcf1..8619f33f0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-11-21 Richard Hult + + * gdk/quartz/Makefile.am: * gdk/quartz/gdktestutils-quartz.c: Add + stubs for the testing functions to fix the build. + 2007-11-21 Behdad Esfahbod * tests/testrichtext.c (setup_buffer): Fix C89 compilation issue. diff --git a/gdk/quartz/Makefile.am b/gdk/quartz/Makefile.am index 1ec7dc8600..c56203eb1b 100644 --- a/gdk/quartz/Makefile.am +++ b/gdk/quartz/Makefile.am @@ -45,6 +45,7 @@ libgdk_quartz_la_SOURCES = \ gdkscreen-quartz.c \ gdkselection-quartz.c \ gdkspawn-quartz.c \ + gdktestutils-quartz.c \ gdkvisual-quartz.c \ gdkwindow-quartz.c \ gdkwindow-quartz.h \ diff --git a/gdk/quartz/gdktestutils-quartz.c b/gdk/quartz/gdktestutils-quartz.c new file mode 100644 index 0000000000..596eccf57a --- /dev/null +++ b/gdk/quartz/gdktestutils-quartz.c @@ -0,0 +1,125 @@ +/* Gtk+ testing utilities + * Copyright (C) 2007 Imendio AB + * Authors: Tim Janik + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ +#include +#include +#include +#include + +/** + * gdk_test_render_sync + * @window: a mapped GdkWindow + * + * This function retrives a pixel from @window to force the windowing + * system to carry out any pending rendering commands. + * This function is intended to be used to syncronize with rendering + * pipelines, to benchmark windowing system rendering operations. + **/ +void +gdk_test_render_sync (GdkWindow *window) +{ + /* FIXME: Find out if there is a way to implement this on quartz. */ +} + +/** + * gdk_test_simulate_key + * @window: Gdk window to simulate a key event for. + * @x: x coordinate within @window for the key event. + * @y: y coordinate within @window for the key event. + * @keyval: A Gdk keyboard value. + * @modifiers: Keyboard modifiers the event is setup with. + * @key_pressrelease: either %GDK_KEY_PRESS or %GDK_KEY_RELEASE + * + * This function is intended to be used in Gtk+ test programs. + * If (@x,@y) are > (-1,-1), it will warp the mouse pointer to + * the given (@x,@y) corrdinates within @window and simulate a + * key press or release event. + * When the mouse pointer is warped to the target location, use + * of this function outside of test programs that run in their + * own virtual windowing system (e.g. Xvfb) is not recommended. + * If (@x,@y) are passed as (-1,-1), the mouse pointer will not + * be warped and @window origin will be used as mouse pointer + * location for the event. + * Also, gtk_test_simulate_key() is a fairly low level function, + * for most testing purposes, gtk_test_widget_send_key() is the + * right function to call which will generate a key press event + * followed by its accompanying key release event. + * + * Returns: wether all actions neccessary for a key event simulation were carried out successfully. + **/ +gboolean +gdk_test_simulate_key (GdkWindow *window, + gint x, + gint y, + guint keyval, + GdkModifierType modifiers, + GdkEventType key_pressrelease) +{ + g_return_val_if_fail (key_pressrelease == GDK_KEY_PRESS || key_pressrelease == GDK_KEY_RELEASE, FALSE); + g_return_val_if_fail (window != NULL, FALSE); + + if (!GDK_WINDOW_IS_MAPPED (window)) + return FALSE; + + /* FIXME: Implement. */ + + return FALSE; +} + +/** + * gdk_test_simulate_button + * @window: Gdk window to simulate a button event for. + * @x: x coordinate within @window for the button event. + * @y: y coordinate within @window for the button event. + * @button: Number of the pointer button for the event, usually 1, 2 or 3. + * @modifiers: Keyboard modifiers the event is setup with. + * @button_pressrelease: either %GDK_BUTTON_PRESS or %GDK_BUTTON_RELEASE + * + * This function is intended to be used in Gtk+ test programs. + * It will warp the mouse pointer to the given (@x,@y) corrdinates + * within @window and simulate a button press or release event. + * Because the mouse pointer needs to be warped to the target + * location, use of this function outside of test programs that + * run in their own virtual windowing system (e.g. Xvfb) is not + * recommended. + * Also, gtk_test_simulate_button() is a fairly low level function, + * for most testing purposes, gtk_test_widget_click() is the right + * function to call which will generate a button press event followed + * by its accompanying button release event. + * + * Returns: wether all actions neccessary for a button event simulation were carried out successfully. + **/ +gboolean +gdk_test_simulate_button (GdkWindow *window, + gint x, + gint y, + guint button, /*1..3*/ + GdkModifierType modifiers, + GdkEventType button_pressrelease) +{ + g_return_val_if_fail (button_pressrelease == GDK_BUTTON_PRESS || button_pressrelease == GDK_BUTTON_RELEASE, FALSE); + g_return_val_if_fail (window != NULL, FALSE); + + if (!GDK_WINDOW_IS_MAPPED (window)) + return FALSE; + + /* FIXME: Implement. */ + + return FALSE; +}