summaryrefslogtreecommitdiff
path: root/gtk/gtkiconview.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-11-16 06:13:31 -0500
committerMatthias Clasen <mclasen@redhat.com>2015-11-16 07:20:18 -0500
commitaf04390b29f01f977b0373c9f3b5e5bce4d76c84 (patch)
tree80b51cb5e621ce26fcdff111200a7417fd21bf41 /gtk/gtkiconview.c
parent46b7b0ac9f757aa27845d06f1c6a09d834d0c619 (diff)
downloadgtk+-af04390b29f01f977b0373c9f3b5e5bce4d76c84.tar.gz
icon view: Document some style properties as deprecated
No code change.
Diffstat (limited to 'gtk/gtkiconview.c')
-rw-r--r--gtk/gtkiconview.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c
index 797b2e1e88..019ab0ec28 100644
--- a/gtk/gtkiconview.c
+++ b/gtk/gtkiconview.c
@@ -674,6 +674,14 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
g_object_class_override_property (gobject_class, PROP_VSCROLL_POLICY, "vscroll-policy");
/* Style properties */
+ /**
+ * GtkIconView:selection-box-color:
+ *
+ * The color of the selection box.
+ *
+ * Deprecated: 3.20: The color of the selection box is determined by CSS;
+ * the value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_boxed ("selection-box-color",
P_("Selection Box Color"),
@@ -681,6 +689,15 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
g_type_from_name ("GdkColor"),
GTK_PARAM_READABLE));
+
+ /**
+ * GtkIconView:selection-box-alpha:
+ *
+ * The opacity of the selection box.
+ *
+ * Deprecated: 3.20: The opacity of the selection box is determined by CSS;
+ * the value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_uchar ("selection-box-alpha",
P_("Selection Box Alpha"),