diff options
Diffstat (limited to 'gtk/gtkwidgetpath.h')
-rw-r--r-- | gtk/gtkwidgetpath.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gtk/gtkwidgetpath.h b/gtk/gtkwidgetpath.h index 73bf7c0e19..ea40469cee 100644 --- a/gtk/gtkwidgetpath.h +++ b/gtk/gtkwidgetpath.h @@ -31,22 +31,29 @@ G_BEGIN_DECLS #define GTK_TYPE_WIDGET_PATH (gtk_widget_path_get_type ()) +GDK_AVAILABLE_IN_ALL GType gtk_widget_path_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_ALL GtkWidgetPath * gtk_widget_path_new (void); +GDK_AVAILABLE_IN_ALL GtkWidgetPath * gtk_widget_path_copy (const GtkWidgetPath *path); GDK_AVAILABLE_IN_3_2 GtkWidgetPath * gtk_widget_path_ref (GtkWidgetPath *path); GDK_AVAILABLE_IN_3_2 void gtk_widget_path_unref (GtkWidgetPath *path); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_free (GtkWidgetPath *path); GDK_AVAILABLE_IN_3_2 char * gtk_widget_path_to_string (const GtkWidgetPath *path); +GDK_AVAILABLE_IN_ALL gint gtk_widget_path_length (const GtkWidgetPath *path); +GDK_AVAILABLE_IN_ALL gint gtk_widget_path_append_type (GtkWidgetPath *path, GType type); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_prepend_type (GtkWidgetPath *path, GType type); GDK_AVAILABLE_IN_3_2 @@ -58,72 +65,95 @@ GDK_AVAILABLE_IN_3_2 gint gtk_widget_path_append_for_widget (GtkWidgetPath *path, GtkWidget *widget); +GDK_AVAILABLE_IN_ALL GType gtk_widget_path_iter_get_object_type (const GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_set_object_type (GtkWidgetPath *path, gint pos, GType type); +GDK_AVAILABLE_IN_ALL const GtkWidgetPath * gtk_widget_path_iter_get_siblings (const GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL guint gtk_widget_path_iter_get_sibling_index(const GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL const gchar * gtk_widget_path_iter_get_name (const GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_set_name (GtkWidgetPath *path, gint pos, const gchar *name); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_name (const GtkWidgetPath *path, gint pos, const gchar *name); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_qname (const GtkWidgetPath *path, gint pos, GQuark qname); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_add_class (GtkWidgetPath *path, gint pos, const gchar *name); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_remove_class (GtkWidgetPath *path, gint pos, const gchar *name); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_clear_classes (GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL GSList * gtk_widget_path_iter_list_classes (const GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_class (const GtkWidgetPath *path, gint pos, const gchar *name); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_qclass (const GtkWidgetPath *path, gint pos, GQuark qname); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_add_region (GtkWidgetPath *path, gint pos, const gchar *name, GtkRegionFlags flags); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_remove_region (GtkWidgetPath *path, gint pos, const gchar *name); +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_clear_regions (GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL GSList * gtk_widget_path_iter_list_regions (const GtkWidgetPath *path, gint pos); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_region (const GtkWidgetPath *path, gint pos, const gchar *name, GtkRegionFlags *flags); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_qregion (const GtkWidgetPath *path, gint pos, GQuark qname, GtkRegionFlags *flags); +GDK_AVAILABLE_IN_ALL GType gtk_widget_path_get_object_type (const GtkWidgetPath *path); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_is_type (const GtkWidgetPath *path, GType type); +GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_has_parent (const GtkWidgetPath *path, GType type); |