diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-02-05 20:13:20 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-02-06 01:16:32 -0500 |
commit | 4c150d8eb518c35c484802e5cd7da572e4030f25 (patch) | |
tree | 8867f973fd6c9737b5d7f05d6945817f354a37e2 /gtk/gtkwidgetpath.h | |
parent | 2616e6857cc136c654b64dd16839ddf89f4b5c62 (diff) | |
download | gtk+-4c150d8eb518c35c484802e5cd7da572e4030f25.tar.gz |
The big versioning cleanup
Remove all the old 2.x and 3.x version annotations.
GTK+ 4 is a new start, and from the perspective of a
GTK+ 4 developer all these APIs have been around since
the beginning.
Diffstat (limited to 'gtk/gtkwidgetpath.h')
-rw-r--r-- | gtk/gtkwidgetpath.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkwidgetpath.h b/gtk/gtkwidgetpath.h index 6fcc49bc0c..5a03775985 100644 --- a/gtk/gtkwidgetpath.h +++ b/gtk/gtkwidgetpath.h @@ -38,14 +38,14 @@ GtkWidgetPath * gtk_widget_path_new (void); GDK_AVAILABLE_IN_ALL GtkWidgetPath * gtk_widget_path_copy (const GtkWidgetPath *path); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL GtkWidgetPath * gtk_widget_path_ref (GtkWidgetPath *path); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL void gtk_widget_path_unref (GtkWidgetPath *path); GDK_AVAILABLE_IN_ALL void gtk_widget_path_free (GtkWidgetPath *path); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL char * gtk_widget_path_to_string (const GtkWidgetPath *path); GDK_AVAILABLE_IN_ALL gint gtk_widget_path_length (const GtkWidgetPath *path); @@ -56,12 +56,12 @@ gint gtk_widget_path_append_type (GtkWidgetPath *path, GDK_AVAILABLE_IN_ALL void gtk_widget_path_prepend_type (GtkWidgetPath *path, GType type); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL gint gtk_widget_path_append_with_siblings(GtkWidgetPath *path, GtkWidgetPath *siblings, guint sibling_index); /* gtk_widget_path_append_for_widget() is declared in gtkwidget.c */ -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL gint gtk_widget_path_append_for_widget (GtkWidgetPath *path, GtkWidget *widget); @@ -72,10 +72,10 @@ GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_set_object_type (GtkWidgetPath *path, gint pos, GType type); -GDK_AVAILABLE_IN_3_20 +GDK_AVAILABLE_IN_ALL const char * gtk_widget_path_iter_get_object_name (const GtkWidgetPath *path, gint pos); -GDK_AVAILABLE_IN_3_20 +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_set_object_name (GtkWidgetPath *path, gint pos, const char *name); @@ -102,10 +102,10 @@ GDK_AVAILABLE_IN_ALL gboolean gtk_widget_path_iter_has_qname (const GtkWidgetPath *path, gint pos, GQuark qname); -GDK_AVAILABLE_IN_3_14 +GDK_AVAILABLE_IN_ALL GtkStateFlags gtk_widget_path_iter_get_state (const GtkWidgetPath *path, gint pos); -GDK_AVAILABLE_IN_3_14 +GDK_AVAILABLE_IN_ALL void gtk_widget_path_iter_set_state (GtkWidgetPath *path, gint pos, GtkStateFlags state); |