summaryrefslogtreecommitdiff
path: root/gtk/gtkprogressbar.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-11-16 06:16:31 -0500
committerMatthias Clasen <mclasen@redhat.com>2015-11-16 07:20:18 -0500
commitc6d5accf9c9dbf2163b04355f69f600017b45b7f (patch)
treed38c68eae98b095726344cdd905daf1df8c7408b /gtk/gtkprogressbar.c
parentbab98a842700ef4bea7be862061ff57362dbee00 (diff)
downloadgtk+-c6d5accf9c9dbf2163b04355f69f600017b45b7f.tar.gz
progressbar: Ignore x/yspacing style properties
These are not really useful, so ignore and deprecate them.
Diffstat (limited to 'gtk/gtkprogressbar.c')
-rw-r--r--gtk/gtkprogressbar.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c
index 4a7a9165a6..ee8a07a30d 100644
--- a/gtk/gtkprogressbar.c
+++ b/gtk/gtkprogressbar.c
@@ -257,6 +257,14 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
g_object_class_install_properties (gobject_class, NUM_PROPERTIES, progress_props);
+ /**
+ * GtkProgressBar:xspacing:
+ *
+ * Extra spacing applied to the width of a progress bar.
+ *
+ * Deprecated: 3.20: Use the standard CSS padding and margins; the
+ * value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("xspacing",
P_("X spacing"),
@@ -264,6 +272,14 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
0, G_MAXINT, 2,
G_PARAM_READWRITE));
+ /**
+ * GtkProgressBar:yspacing:
+ *
+ * Extra spacing applied to the height of a progress bar.
+ *
+ * Deprecated: 3.20: Use the standard CSS padding and margins; the
+ * value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("yspacing",
P_("Y spacing"),
@@ -606,7 +622,6 @@ gtk_progress_bar_get_preferred_width (GtkWidget *widget,
PangoRectangle logical_rect;
PangoLayout *layout;
gint width;
- gint xspacing;
gint bar_width;
g_return_if_fail (GTK_IS_PROGRESS_BAR (widget));
@@ -621,11 +636,6 @@ gtk_progress_bar_get_preferred_width (GtkWidget *widget,
if (priv->show_text)
{
- gtk_widget_style_get (widget,
- "xspacing", &xspacing,
- NULL);
- width += xspacing;
-
buf = get_current_text (pbar);
layout = gtk_widget_create_pango_layout (widget, buf);
@@ -680,7 +690,6 @@ gtk_progress_bar_get_preferred_height (GtkWidget *widget,
PangoRectangle logical_rect;
PangoLayout *layout;
gint height;
- gint yspacing;
gint bar_height;
g_return_if_fail (GTK_IS_PROGRESS_BAR (widget));
@@ -695,11 +704,6 @@ gtk_progress_bar_get_preferred_height (GtkWidget *widget,
if (priv->show_text)
{
- gtk_widget_style_get (widget,
- "yspacing", &yspacing,
- NULL);
- height += yspacing;
-
buf = get_current_text (pbar);
layout = gtk_widget_create_pango_layout (widget, buf);