2007-11-20 15:03:26 +00:00
|
|
|
|
/* Gtk+ testing utilities
|
2007-11-20 17:44:06 +00:00
|
|
|
|
* Copyright (C) 2007 Imendio AB
|
|
|
|
|
* Authors: Tim Janik
|
2007-11-20 15:03:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2007-11-20 15:03:26 +00:00
|
|
|
|
*/
|
2008-02-15 23:13:30 +00:00
|
|
|
|
|
2008-06-17 09:58:09 +00:00
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2008-02-15 23:13:30 +00:00
|
|
|
|
|
2010-07-12 22:11:39 +00:00
|
|
|
|
#include "gtkspinbutton.h"
|
2011-11-02 05:15:21 +00:00
|
|
|
|
#include "gtkmain.h"
|
|
|
|
|
#include "gtkbox.h"
|
|
|
|
|
#include "gtklabel.h"
|
|
|
|
|
#include "gtkbutton.h"
|
|
|
|
|
#include "gtktextview.h"
|
|
|
|
|
#include "gtkrange.h"
|
2007-11-20 15:03:26 +00:00
|
|
|
|
|
|
|
|
|
#include <locale.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
2014-07-12 03:29:54 +00:00
|
|
|
|
/* This is a hack.
|
|
|
|
|
* We want to include the same headers as gtktypefuncs.c but we are not
|
|
|
|
|
* allowed to include gtkx.h directly during GTK compilation.
|
|
|
|
|
* So....
|
|
|
|
|
*/
|
|
|
|
|
#undef GTK_COMPILATION
|
2016-10-03 16:30:40 +00:00
|
|
|
|
#include <gtk/gtk.h>
|
2014-07-12 03:29:54 +00:00
|
|
|
|
#define GTK_COMPILATION
|
2007-11-20 15:03:26 +00:00
|
|
|
|
|
2010-04-28 02:20:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtktesting
|
|
|
|
|
* @Short_description: Utilities for testing GTK+ applications
|
|
|
|
|
* @Title: Testing
|
|
|
|
|
*/
|
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_test_init:
|
2014-02-04 23:30:46 +00:00
|
|
|
|
* @argcp: Address of the `argc` parameter of the
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* main() function. Changed if any arguments were handled.
|
2011-01-18 09:10:30 +00:00
|
|
|
|
* @argvp: (inout) (array length=argcp): Address of the
|
2014-02-04 23:30:46 +00:00
|
|
|
|
* `argv` parameter of main().
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* Any parameters understood by g_test_init() or gtk_init() are
|
|
|
|
|
* stripped before return.
|
2011-07-23 02:00:34 +00:00
|
|
|
|
* @...: currently unused
|
2008-07-21 23:23:41 +00:00
|
|
|
|
*
|
|
|
|
|
* This function is used to initialize a GTK+ test program.
|
2007-11-20 15:03:26 +00:00
|
|
|
|
*
|
|
|
|
|
* It will in turn call g_test_init() and gtk_init() to properly
|
2014-02-07 18:35:54 +00:00
|
|
|
|
* initialize the testing framework and graphical toolkit. It’ll
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* also set the program’s locale to “C” and prevent loading of rc
|
2008-07-21 23:23:41 +00:00
|
|
|
|
* files and Gtk+ modules. This is done to make tets program
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* environments as deterministic as possible.
|
2008-07-21 23:23:41 +00:00
|
|
|
|
*
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* Like gtk_init() and g_test_init(), any known arguments will be
|
|
|
|
|
* processed and stripped from @argc and @argv.
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
2007-11-20 15:03:26 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_test_init (int *argcp,
|
|
|
|
|
char ***argvp,
|
|
|
|
|
...)
|
|
|
|
|
{
|
call g_test_init() from gtk_test_init().
2007-11-22 15:39:40 Tim Janik <timj@imendio.com>
* gtk/gtktestutils.c: call g_test_init() from gtk_test_init().
* gtk/tests/testing.c: use g_test_add_func() to register tests and use
g_test_run() to run the tests to integrate with the testing framework.
* gtk/tests/Makefile.am: removed exemplary testing rules.
* Makefile.am, gtk/tests/Makefile.am, gtk/Makefile.am:
* gtk/xdgmime/Makefile.am, gtk/theme-bits/Makefile.am:
* tests/Makefile.am, docs/reference/gdk-pixbuf/Makefile.am:
* docs/reference/gdk/Makefile.am, docs/reference/gtk/Makefile.am:
* docs/reference/Makefile.am, docs/tools/Makefile.am:
* docs/tutorial/Makefile.am, docs/faq/Makefile.am, docs/Makefile.am:
* gdk-pixbuf/pixops/Makefile.am, gdk-pixbuf/Makefile.am:
* demos/gtk-demo/Makefile.am, demos/Makefile.am:
* modules/input/Makefile.am, modules/printbackends/file/Makefile.am:
* modules/printbackends/test/Makefile.am, modules/printbackends/Makefile.am:
* modules/printbackends/cups/Makefile.am, modules/printbackends/lpr/Makefile.am:
* modules/engines/ms-windows/Theme/gtk-2.0/Makefile.am:
* modules/engines/ms-windows/Theme/Makefile.am:
* modules/engines/ms-windows/Makefile.am:
* modules/engines/Makefile.am, modules/engines/pixbuf/Makefile.am:
* modules/Makefile.am, m4macros/Makefile.am, perf/Makefile.am:
* contrib/Makefile.am, contrib/gdk-pixbuf-xlib/Makefile.am:
* gdk/directfb/Makefile.am, gdk/linux-fb/Makefile.am:
* gdk/quartz/Makefile.am, gdk/win32/rc/Makefile.am:
* gdk/win32/Makefile.am, gdk/x11/Makefile.am, gdk/Makefile.am:
include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
svn path=/trunk/; revision=19033
2007-11-22 14:38:26 +00:00
|
|
|
|
g_test_init (argcp, argvp, NULL);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
/* - enter C locale
|
|
|
|
|
* - call g_test_init();
|
|
|
|
|
* - call gtk_init();
|
|
|
|
|
* - prevent RC files from loading;
|
|
|
|
|
* - prevent Gtk modules from loading;
|
|
|
|
|
* - supply mock object for GtkSettings
|
|
|
|
|
* FUTURE TODO:
|
|
|
|
|
* - this function could install a mock object around GtkSettings
|
|
|
|
|
*/
|
2008-01-25 18:42:16 +00:00
|
|
|
|
g_setenv ("GTK_MODULES", "", TRUE);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
gtk_disable_setlocale();
|
|
|
|
|
setlocale (LC_ALL, "C");
|
2007-12-13 14:05:04 +00:00
|
|
|
|
g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
|
2010-12-20 12:48:10 +00:00
|
|
|
|
|
|
|
|
|
/* XSendEvent() doesn't work yet on XI2 events.
|
|
|
|
|
* So at the moment gdk_test_simulate_* can only
|
|
|
|
|
* send events that GTK+ understands if XI2 is
|
|
|
|
|
* disabled, bummer.
|
|
|
|
|
*/
|
|
|
|
|
gdk_disable_multidevice ();
|
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
gtk_init (argcp, argvp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GSList*
|
|
|
|
|
test_find_widget_input_windows (GtkWidget *widget,
|
|
|
|
|
gboolean input_only)
|
|
|
|
|
{
|
2010-08-11 20:53:15 +00:00
|
|
|
|
GdkWindow *window;
|
2007-11-20 15:03:26 +00:00
|
|
|
|
GList *node, *children;
|
|
|
|
|
GSList *matches = NULL;
|
|
|
|
|
gpointer udata;
|
2010-08-11 20:53:15 +00:00
|
|
|
|
|
|
|
|
|
window = gtk_widget_get_window (widget);
|
|
|
|
|
|
|
|
|
|
gdk_window_get_user_data (window, &udata);
|
|
|
|
|
if (udata == widget && (!input_only || (GDK_IS_WINDOW (window) && gdk_window_is_input_only (GDK_WINDOW (window)))))
|
|
|
|
|
matches = g_slist_prepend (matches, window);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
children = gdk_window_get_children (gtk_widget_get_parent_window (widget));
|
|
|
|
|
for (node = children; node; node = node->next)
|
|
|
|
|
{
|
|
|
|
|
gdk_window_get_user_data (node->data, &udata);
|
2010-06-25 01:02:20 +00:00
|
|
|
|
if (udata == widget && (!input_only || (GDK_IS_WINDOW (node->data) && gdk_window_is_input_only (GDK_WINDOW (node->data)))))
|
2007-11-20 15:03:26 +00:00
|
|
|
|
matches = g_slist_prepend (matches, node->data);
|
|
|
|
|
}
|
|
|
|
|
return g_slist_reverse (matches);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-16 23:35:04 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
quit_main_loop_callback (GtkWidget *widget,
|
|
|
|
|
GdkFrameClock *frame_clock,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
gtk_main_quit ();
|
|
|
|
|
|
|
|
|
|
return G_SOURCE_REMOVE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_test_widget_wait_for_draw:
|
|
|
|
|
* @widget: the widget to wait for
|
|
|
|
|
*
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* Enters the main loop and waits for @widget to be “drawn”. In this
|
2013-05-16 23:35:04 +00:00
|
|
|
|
* context that means it waits for the frame clock of @widget to have
|
|
|
|
|
* run a full styling, layout and drawing cycle.
|
|
|
|
|
*
|
|
|
|
|
* This function is intended to be used for syncing with actions that
|
|
|
|
|
* depend on @widget relayouting or on interaction with the display
|
|
|
|
|
* server.
|
2013-05-27 18:49:43 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.10
|
2013-05-16 23:35:04 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_test_widget_wait_for_draw (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (widget));
|
|
|
|
|
|
|
|
|
|
/* We can do this here because the whole tick procedure does not
|
|
|
|
|
* reenter the main loop. Otherwise we'd need to manually get the
|
|
|
|
|
* frame clock and connect to the after-paint signal.
|
|
|
|
|
*/
|
|
|
|
|
gtk_widget_add_tick_callback (widget,
|
|
|
|
|
quit_main_loop_callback,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
gtk_main ();
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
/**
|
2011-01-20 14:08:11 +00:00
|
|
|
|
* gtk_test_widget_send_key:
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* @widget: Widget to generate a key press and release on.
|
|
|
|
|
* @keyval: A Gdk keyboard value.
|
|
|
|
|
* @modifiers: Keyboard modifiers the event is setup with.
|
|
|
|
|
*
|
|
|
|
|
* This function will generate keyboard press and release events in
|
|
|
|
|
* the middle of the first GdkWindow found that belongs to @widget.
|
2015-02-17 16:57:57 +00:00
|
|
|
|
* For windowless widgets like #GtkButton (which returns %FALSE from
|
|
|
|
|
* gtk_widget_get_has_window()), this will often be an
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* input-only event window. For other widgets, this is usually widget->window.
|
|
|
|
|
* Certain caveats should be considered when using this function, in
|
|
|
|
|
* particular because the mouse pointer is warped to the key press
|
2007-11-20 15:03:31 +00:00
|
|
|
|
* location, see gdk_test_simulate_key() for details.
|
2007-11-20 15:03:26 +00:00
|
|
|
|
*
|
2012-02-29 17:19:55 +00:00
|
|
|
|
* Returns: whether all actions neccessary for the key event simulation were carried out successfully.
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
2007-11-20 15:03:26 +00:00
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_test_widget_send_key (GtkWidget *widget,
|
|
|
|
|
guint keyval,
|
|
|
|
|
GdkModifierType modifiers)
|
|
|
|
|
{
|
|
|
|
|
gboolean k1res, k2res;
|
|
|
|
|
GSList *iwindows = test_find_widget_input_windows (widget, FALSE);
|
|
|
|
|
if (!iwindows)
|
|
|
|
|
iwindows = test_find_widget_input_windows (widget, TRUE);
|
|
|
|
|
if (!iwindows)
|
|
|
|
|
return FALSE;
|
2007-11-20 15:03:31 +00:00
|
|
|
|
k1res = gdk_test_simulate_key (iwindows->data, -1, -1, keyval, modifiers, GDK_KEY_PRESS);
|
|
|
|
|
k2res = gdk_test_simulate_key (iwindows->data, -1, -1, keyval, modifiers, GDK_KEY_RELEASE);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
g_slist_free (iwindows);
|
|
|
|
|
return k1res && k2res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-20 14:08:11 +00:00
|
|
|
|
* gtk_test_find_label:
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* @widget: Valid label or container widget.
|
|
|
|
|
* @label_pattern: Shell-glob pattern to match a label string.
|
|
|
|
|
*
|
|
|
|
|
* This function will search @widget and all its descendants for a GtkLabel
|
|
|
|
|
* widget with a text string matching @label_pattern.
|
2014-02-07 19:03:49 +00:00
|
|
|
|
* The @label_pattern may contain asterisks “*” and question marks “?” as
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* placeholders, g_pattern_match() is used for the matching.
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* Note that locales other than "C“ tend to alter (translate” label strings,
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* so this function is genrally only useful in test programs with
|
|
|
|
|
* predetermined locales, see gtk_test_init() for more details.
|
|
|
|
|
*
|
2011-01-18 09:01:17 +00:00
|
|
|
|
* Returns: (transfer none): a GtkLabel widget if any is found.
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
2007-11-20 15:03:26 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_test_find_label (GtkWidget *widget,
|
|
|
|
|
const gchar *label_pattern)
|
|
|
|
|
{
|
2014-09-26 22:00:19 +00:00
|
|
|
|
GtkWidget *label = NULL;
|
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
if (GTK_IS_LABEL (widget))
|
|
|
|
|
{
|
|
|
|
|
const gchar *text = gtk_label_get_text (GTK_LABEL (widget));
|
|
|
|
|
if (g_pattern_match_simple (label_pattern, text))
|
|
|
|
|
return widget;
|
|
|
|
|
}
|
2014-09-26 22:00:19 +00:00
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
if (GTK_IS_CONTAINER (widget))
|
|
|
|
|
{
|
2014-09-26 22:00:19 +00:00
|
|
|
|
GList *node, *list;
|
|
|
|
|
|
|
|
|
|
list = gtk_container_get_children (GTK_CONTAINER (widget));
|
2007-11-20 15:03:26 +00:00
|
|
|
|
for (node = list; node; node = node->next)
|
|
|
|
|
{
|
2014-09-26 22:00:19 +00:00
|
|
|
|
label = gtk_test_find_label (node->data, label_pattern);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
if (label)
|
2014-09-26 22:00:19 +00:00
|
|
|
|
break;
|
2007-11-20 15:03:26 +00:00
|
|
|
|
}
|
|
|
|
|
g_list_free (list);
|
|
|
|
|
}
|
2014-09-26 22:00:19 +00:00
|
|
|
|
return label;
|
2007-11-20 15:03:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GList*
|
|
|
|
|
test_list_descendants (GtkWidget *widget,
|
|
|
|
|
GType widget_type)
|
|
|
|
|
{
|
|
|
|
|
GList *results = NULL;
|
|
|
|
|
if (GTK_IS_CONTAINER (widget))
|
|
|
|
|
{
|
|
|
|
|
GList *node, *list = gtk_container_get_children (GTK_CONTAINER (widget));
|
|
|
|
|
for (node = list; node; node = node->next)
|
|
|
|
|
{
|
|
|
|
|
if (!widget_type || g_type_is_a (G_OBJECT_TYPE (node->data), widget_type))
|
|
|
|
|
results = g_list_prepend (results, node->data);
|
|
|
|
|
else
|
|
|
|
|
results = g_list_concat (results, test_list_descendants (node->data, widget_type));
|
|
|
|
|
}
|
|
|
|
|
g_list_free (list);
|
|
|
|
|
}
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
widget_geo_dist (GtkWidget *a,
|
|
|
|
|
GtkWidget *b,
|
|
|
|
|
GtkWidget *base)
|
|
|
|
|
{
|
2010-08-11 20:53:15 +00:00
|
|
|
|
GtkAllocation allocation;
|
2007-11-20 15:03:26 +00:00
|
|
|
|
int ax0, ay0, ax1, ay1, bx0, by0, bx1, by1, xdist = 0, ydist = 0;
|
2010-08-11 20:53:15 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_get_allocation (a, &allocation);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
if (!gtk_widget_translate_coordinates (a, base, 0, 0, &ax0, &ay0) ||
|
2010-08-11 20:53:15 +00:00
|
|
|
|
!gtk_widget_translate_coordinates (a, base, allocation.width, allocation.height, &ax1, &ay1))
|
2007-11-20 15:03:26 +00:00
|
|
|
|
return -G_MAXINT;
|
2010-08-11 20:53:15 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_get_allocation (b, &allocation);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
if (!gtk_widget_translate_coordinates (b, base, 0, 0, &bx0, &by0) ||
|
2010-08-11 20:53:15 +00:00
|
|
|
|
!gtk_widget_translate_coordinates (b, base, allocation.width, allocation.height, &bx1, &by1))
|
2007-11-20 15:03:26 +00:00
|
|
|
|
return +G_MAXINT;
|
2010-08-11 20:53:15 +00:00
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
if (bx0 >= ax1)
|
|
|
|
|
xdist = bx0 - ax1;
|
|
|
|
|
else if (ax0 >= bx1)
|
|
|
|
|
xdist = ax0 - bx1;
|
|
|
|
|
if (by0 >= ay1)
|
|
|
|
|
ydist = by0 - ay1;
|
|
|
|
|
else if (ay0 >= by1)
|
|
|
|
|
ydist = ay0 - by1;
|
2010-08-11 20:53:15 +00:00
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
return xdist + ydist;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
widget_geo_cmp (gconstpointer a,
|
|
|
|
|
gconstpointer b,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
gpointer *data = user_data;
|
|
|
|
|
GtkWidget *wa = (void*) a, *wb = (void*) b, *toplevel = data[0], *base_widget = data[1];
|
|
|
|
|
int adist = widget_geo_dist (wa, base_widget, toplevel);
|
|
|
|
|
int bdist = widget_geo_dist (wb, base_widget, toplevel);
|
|
|
|
|
return adist > bdist ? +1 : adist == bdist ? 0 : -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-20 14:08:11 +00:00
|
|
|
|
* gtk_test_find_sibling:
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* @base_widget: Valid widget, part of a widget hierarchy
|
|
|
|
|
* @widget_type: Type of a aearched for sibling widget
|
|
|
|
|
*
|
|
|
|
|
* This function will search siblings of @base_widget and siblings of its
|
|
|
|
|
* ancestors for all widgets matching @widget_type.
|
|
|
|
|
* Of the matching widgets, the one that is geometrically closest to
|
|
|
|
|
* @base_widget will be returned.
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* The general purpose of this function is to find the most likely “action”
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* widget, relative to another labeling widget. Such as finding a
|
2011-02-23 09:26:21 +00:00
|
|
|
|
* button or text entry widget, given its corresponding label widget.
|
2007-11-20 15:03:26 +00:00
|
|
|
|
*
|
2011-01-18 09:01:17 +00:00
|
|
|
|
* Returns: (transfer none): a widget of type @widget_type if any is found.
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
2007-11-20 15:03:26 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_test_find_sibling (GtkWidget *base_widget,
|
|
|
|
|
GType widget_type)
|
|
|
|
|
{
|
|
|
|
|
GList *siblings = NULL;
|
|
|
|
|
GtkWidget *tmpwidget = base_widget;
|
|
|
|
|
gpointer data[2];
|
|
|
|
|
/* find all sibling candidates */
|
|
|
|
|
while (tmpwidget)
|
|
|
|
|
{
|
2010-08-11 20:53:15 +00:00
|
|
|
|
tmpwidget = gtk_widget_get_parent (tmpwidget);
|
2007-11-20 15:03:26 +00:00
|
|
|
|
siblings = g_list_concat (siblings, test_list_descendants (tmpwidget, widget_type));
|
|
|
|
|
}
|
|
|
|
|
/* sort them by distance to base_widget */
|
|
|
|
|
data[0] = gtk_widget_get_toplevel (base_widget);
|
|
|
|
|
data[1] = base_widget;
|
|
|
|
|
siblings = g_list_sort_with_data (siblings, widget_geo_cmp, data);
|
|
|
|
|
/* pick nearest != base_widget */
|
|
|
|
|
siblings = g_list_remove (siblings, base_widget);
|
|
|
|
|
tmpwidget = siblings ? siblings->data : NULL;
|
|
|
|
|
g_list_free (siblings);
|
|
|
|
|
return tmpwidget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-20 14:08:11 +00:00
|
|
|
|
* gtk_test_find_widget:
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* @widget: Container widget, usually a GtkWindow.
|
|
|
|
|
* @label_pattern: Shell-glob pattern to match a label string.
|
|
|
|
|
* @widget_type: Type of a aearched for label sibling widget.
|
|
|
|
|
*
|
|
|
|
|
* This function will search the descendants of @widget for a widget
|
|
|
|
|
* of type @widget_type that has a label matching @label_pattern next
|
|
|
|
|
* to it. This is most useful for automated GUI testing, e.g. to find
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* the “OK” button in a dialog and synthesize clicks on it.
|
2007-11-20 15:03:26 +00:00
|
|
|
|
* However see gtk_test_find_label(), gtk_test_find_sibling() and
|
|
|
|
|
* gtk_test_widget_click() for possible caveats involving the search of
|
|
|
|
|
* such widgets and synthesizing widget events.
|
|
|
|
|
*
|
2015-12-28 20:14:08 +00:00
|
|
|
|
* Returns: (nullable) (transfer none): a valid widget if any is found or %NULL.
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
2007-11-20 15:03:26 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_test_find_widget (GtkWidget *widget,
|
|
|
|
|
const gchar *label_pattern,
|
|
|
|
|
GType widget_type)
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *label = gtk_test_find_label (widget, label_pattern);
|
|
|
|
|
if (!label)
|
|
|
|
|
label = gtk_test_find_label (gtk_widget_get_toplevel (widget), label_pattern);
|
|
|
|
|
if (label)
|
|
|
|
|
return gtk_test_find_sibling (label, widget_type);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-12-05 16:58:44 +00:00
|
|
|
|
static GType *all_registered_types = NULL;
|
|
|
|
|
static guint n_all_registered_types = 0;
|
|
|
|
|
|
|
|
|
|
/**
|
2011-01-20 14:08:11 +00:00
|
|
|
|
* gtk_test_list_all_types:
|
2007-12-05 16:58:44 +00:00
|
|
|
|
* @n_types: location to store number of types
|
|
|
|
|
*
|
|
|
|
|
* Return the type ids that have been registered after
|
|
|
|
|
* calling gtk_test_register_all_types().
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
2011-07-23 02:00:34 +00:00
|
|
|
|
* Returns: (array length=n_types zero-terminated=1) (transfer none):
|
|
|
|
|
* 0-terminated array of type ids
|
|
|
|
|
*
|
2008-08-15 18:01:00 +00:00
|
|
|
|
* Since: 2.14
|
2011-07-23 02:00:34 +00:00
|
|
|
|
*/
|
2007-12-05 16:58:44 +00:00
|
|
|
|
const GType*
|
|
|
|
|
gtk_test_list_all_types (guint *n_types)
|
|
|
|
|
{
|
|
|
|
|
if (n_types)
|
|
|
|
|
*n_types = n_all_registered_types;
|
|
|
|
|
return all_registered_types;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-20 15:03:26 +00:00
|
|
|
|
/**
|
2011-01-20 14:08:11 +00:00
|
|
|
|
* gtk_test_register_all_types:
|
2007-11-20 15:03:26 +00:00
|
|
|
|
*
|
|
|
|
|
* Force registration of all core Gtk+ and Gdk object types.
|
|
|
|
|
* This allowes to refer to any of those object types via
|
|
|
|
|
* g_type_from_name() after calling this function.
|
2008-08-15 18:01:00 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.14
|
2007-11-20 15:03:26 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_test_register_all_types (void)
|
|
|
|
|
{
|
2007-12-05 16:58:44 +00:00
|
|
|
|
if (!all_registered_types)
|
|
|
|
|
{
|
|
|
|
|
const guint max_gtk_types = 999;
|
|
|
|
|
GType *tp;
|
|
|
|
|
all_registered_types = g_new0 (GType, max_gtk_types);
|
|
|
|
|
tp = all_registered_types;
|
2007-11-20 15:03:26 +00:00
|
|
|
|
#include "gtktypefuncs.c"
|
2007-12-05 16:58:44 +00:00
|
|
|
|
n_all_registered_types = tp - all_registered_types;
|
|
|
|
|
g_assert (n_all_registered_types + 1 < max_gtk_types);
|
|
|
|
|
*tp = 0;
|
|
|
|
|
}
|
2007-11-20 15:03:26 +00:00
|
|
|
|
}
|