[gtk+] progressbar: Ignore x/yspacing style properties



commit c6d5accf9c9dbf2163b04355f69f600017b45b7f
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Nov 16 06:16:31 2015 -0500

    progressbar: Ignore x/yspacing style properties
    
    These are not really useful, so ignore and deprecate them.

 gtk/gtkprogressbar.c |   28 ++++++++++++++++------------
 1 files changed, 16 insertions(+), 12 deletions(-)
---
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c
index 4a7a916..ee8a07a 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);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]