diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-05-07 06:34:23 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-05-10 22:04:21 -0400 |
commit | 5fa71c69d8aaef0b937bbd184b2c004cd64b811c (patch) | |
tree | 659d145bbd97846afa63bd1b15d3e3ccd0e8afd3 /modules | |
parent | a3713b51ff674be6621a0dde5e3bbf648d5a8a64 (diff) | |
download | gtk+-5fa71c69d8aaef0b937bbd184b2c004cd64b811c.tar.gz |
inspector: Select a window initially
The list of toplevels also includes hidden combobox popups
and the like, so we have to be a little careful. To ensure
the right choice, we now pick the first visible window
that is not a GtkInspectorWindow.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/inspector/window.c | 40 |
1 files changed, 38 insertions, 2 deletions
diff --git a/modules/inspector/window.c b/modules/inspector/window.c index db420befe8..fb9fa9e216 100644 --- a/modules/inspector/window.c +++ b/modules/inspector/window.c @@ -105,8 +105,8 @@ on_send_widget_to_shell_activate (GtkWidget *menuitem, str = g_strdup_printf ("gtk_inspector.gobj(%p)", object); gtk_inspector_python_shell_append_text (GTK_INSPECTOR_PYTHON_SHELL (iw->python_shell), - str, - NULL); + str, + NULL); g_free (str); gtk_inspector_python_shell_focus (GTK_INSPECTOR_PYTHON_SHELL (iw->python_shell)); @@ -134,10 +134,46 @@ gtk_inspector_window_init (GtkInspectorWindow *iw) } static void +gtk_inspector_window_select_initially (GtkInspectorWindow *iw) +{ + GList *toplevels, *l; + GtkWidget *widget; + + toplevels = gtk_window_list_toplevels (); + widget = NULL; + for (l = toplevels; l; l = l->next) + { + if (gtk_widget_get_mapped (GTK_WIDGET (l->data)) && + GTK_IS_WINDOW (l->data) && + !GTK_INSPECTOR_IS_WINDOW (l->data)) + { + widget = l->data; + break; + } + } + g_list_free (toplevels); + + if (widget) + { + gtk_inspector_widget_tree_scan (GTK_INSPECTOR_WIDGET_TREE (iw->widget_tree), widget); + gtk_inspector_widget_tree_select_object (GTK_INSPECTOR_WIDGET_TREE (iw->widget_tree), G_OBJECT (widget)); + } +} + +static void +gtk_inspector_window_constructed (GObject *object) +{ + gtk_inspector_window_select_initially (GTK_INSPECTOR_WINDOW (object)); +} + +static void gtk_inspector_window_class_init (GtkInspectorWindowClass *klass) { + GObjectClass *object_class = G_OBJECT_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); + object_class->constructed = gtk_inspector_window_constructed; + gtk_widget_class_set_template_from_resource (widget_class, "/org/gtk/inspector/window.ui"); gtk_widget_class_bind_template_child (widget_class, GtkInspectorWindow, widget_tree); |