diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2010-10-11 00:23:40 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2010-12-04 15:38:19 +0100 |
commit | 88b78953b68b01d9ac2f46b088322e4188fb9f38 (patch) | |
tree | 11e147b8e6d3ed606e822ad4cce0640ffe6c2b93 /gtk/gtkwidgetpath.h | |
parent | c575733edab533c7e36062e06a4a8a9e2382685b (diff) | |
download | gtk+-88b78953b68b01d9ac2f46b088322e4188fb9f38.tar.gz |
GtkContainer: Add method to get the GtkWidgetPath for a child.
This is now used throughout in order to have the full path for a given widget,
including intermediate named regions, the default implementation just returns
the GtkContainer's path copy, no intermediate regions between.
Diffstat (limited to 'gtk/gtkwidgetpath.h')
-rw-r--r-- | gtk/gtkwidgetpath.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkwidgetpath.h b/gtk/gtkwidgetpath.h index 234f79b937..4e5c4769cb 100644 --- a/gtk/gtkwidgetpath.h +++ b/gtk/gtkwidgetpath.h @@ -35,6 +35,8 @@ void gtk_widget_path_free (GtkWidgetPath *path); guint gtk_widget_path_length (const GtkWidgetPath *path); +guint gtk_widget_path_append_type (GtkWidgetPath *path, + GType type); guint gtk_widget_path_prepend_type (GtkWidgetPath *path, GType type); |