gtk+ r20938 - in trunk: . gtk
- From: matthiasc svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk+ r20938 - in trunk: . gtk
- Date: Sat, 2 Aug 2008 04:48:48 +0000 (UTC)
Author: matthiasc
Date: Sat Aug 2 04:48:47 2008
New Revision: 20938
URL: http://svn.gnome.org/viewvc/gtk+?rev=20938&view=rev
Log:
2008-08-02 Matthias Clasen <mclasen redhat com>
Bug 429411 â add style properties to set minimum progressbar
width/height
* gtk/gtkprogressbar.c: Add style properties for minimum size.
Patch by Carlos Garnacho and Christian Dywan
Modified:
trunk/ChangeLog
trunk/gtk/gtkprogressbar.c
Modified: trunk/gtk/gtkprogressbar.c
==============================================================================
--- trunk/gtk/gtkprogressbar.c (original)
+++ trunk/gtk/gtkprogressbar.c Sat Aug 2 04:48:47 2008
@@ -38,7 +38,6 @@
#define MIN_HORIZONTAL_BAR_HEIGHT 20
#define MIN_VERTICAL_BAR_WIDTH 22
#define MIN_VERTICAL_BAR_HEIGHT 80
-#define MAX_TEXT_LENGTH 80
enum {
PROP_0,
@@ -215,10 +214,63 @@
G_PARAM_READWRITE));
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("yspacing",
- "YSpacing",
- "Extra spacing applied to the height of a progress bar.",
+ P_("YSpacing"),
+ P_("Extra spacing applied to the height of a progress bar."),
0, G_MAXINT, 7,
G_PARAM_READWRITE));
+
+ /**
+ * GtkProgressBar:min-horizontal-bar-width:
+ *
+ * The minimum horizontal width of the progress bar.
+ *
+ * Since: 2.14
+ */
+ gtk_widget_class_install_style_property (widget_class,
+ g_param_spec_int ("min-horizontal-bar-width",
+ P_("Min horizontal bar width"),
+ P_("The minimum horizontal width of the progress bar"),
+ 1, G_MAXINT, MIN_HORIZONTAL_BAR_WIDTH,
+ G_PARAM_READWRITE));
+ /**
+ * GtkProgressBar:min-horizontal-bar-height:
+ *
+ * Minimum horizontal height of the progress bar.
+ *
+ * Since: 2.14
+ */
+ gtk_widget_class_install_style_property (widget_class,
+ g_param_spec_int ("min-horizontal-bar-height",
+ P_("Min horizontal bar height"),
+ P_("Minimum horizontal height of the progress bar"),
+ 1, G_MAXINT, MIN_HORIZONTAL_BAR_HEIGHT,
+ G_PARAM_READWRITE));
+ /**
+ * GtkProgressBar:min-vertical-bar-width:
+ *
+ * The minimum vertical width of the progress bar.
+ *
+ * Since: 2.14
+ */
+ gtk_widget_class_install_style_property (widget_class,
+ g_param_spec_int ("min-vertical-bar-width",
+ P_("Min vertical bar width"),
+ P_("The minimum vertical width of the progress bar"),
+ 1, G_MAXINT, MIN_VERTICAL_BAR_WIDTH,
+ G_PARAM_READWRITE));
+ /**
+ * GtkProgressBar:min-vertical-bar-height:
+ *
+ * The minimum vertical height of the progress bar.
+ *
+ * Since: 2.14
+ */
+ gtk_widget_class_install_style_property (widget_class,
+ g_param_spec_int ("min-vertical-bar-height",
+ P_("Min vertical bar height"),
+ P_("The minimum vertical height of the progress bar"),
+ 1, G_MAXINT, MIN_VERTICAL_BAR_HEIGHT,
+ G_PARAM_READWRITE));
}
static void
@@ -485,6 +537,7 @@
PangoLayout *layout;
gint width, height;
gint xspacing, yspacing;
+ gint min_width, min_height;
g_return_if_fail (GTK_IS_PROGRESS_BAR (widget));
g_return_if_fail (requisition != NULL);
@@ -537,15 +590,18 @@
if (pbar->orientation == GTK_PROGRESS_LEFT_TO_RIGHT ||
pbar->orientation == GTK_PROGRESS_RIGHT_TO_LEFT)
- {
- requisition->width = MAX (MIN_HORIZONTAL_BAR_WIDTH, width);
- requisition->height = MAX (MIN_HORIZONTAL_BAR_HEIGHT, height);
- }
+ gtk_widget_style_get (widget,
+ "min-horizontal-bar-width", &min_width,
+ "min-horizontal-bar-height", &min_height,
+ NULL);
else
- {
- requisition->width = MAX (MIN_VERTICAL_BAR_WIDTH, width);
- requisition->height = MAX (MIN_VERTICAL_BAR_HEIGHT, height);
- }
+ gtk_widget_style_get (widget,
+ "min-vertical-bar-width", &min_width,
+ "min-vertical-bar-height", &min_height,
+ NULL);
+
+ requisition->width = MAX (min_width, width);
+ requisition->height = MAX (min_height, height);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]