X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkmisc.c;h=4bd162ccda0b4b5b3e538ffd33f6f406fe31ed51;hb=b2340254109d8599244c875fe7bc5e234f64da08;hp=fc711aade067c6d022e8ddd6b040d1a7946e842e;hpb=1ca6edf6bf038fe3545c1ea8485bcedd9e86be8c;p=~andy%2Fgtk diff --git a/gtk/gtkmisc.c b/gtk/gtkmisc.c index fc711aade..4bd162ccd 100644 --- a/gtk/gtkmisc.c +++ b/gtk/gtkmisc.c @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ /* @@ -31,7 +29,31 @@ #include "gtkprivate.h" -struct _GtkMiscPriv +/** + * SECTION:gtkmisc + * @Short_description: Base class for widgets with alignments and padding + * @Title: GtkMisc + * + * The #GtkMisc widget is an abstract widget which is not useful itself, but + * is used to derive subclasses which have alignment and padding attributes. + * + * The horizontal and vertical padding attributes allows extra space to be + * added around the widget. + * + * The horizontal and vertical alignment attributes enable the widget to be + * positioned within its allocated area. Note that if the widget is added to + * a container in such a way that it expands automatically to fill its + * allocated area, the alignment settings will not alter the widgets position. + * + * + * Note that the desired effect can in most cases be achieved by using the + * #GtkWidget:halign, #GtkWidget:valign and #GtkWidget:margin properties + * on the child widget, so GtkMisc should not be used in new code. + * + */ + + +struct _GtkMiscPrivate { gfloat xalign; gfloat yalign; @@ -115,17 +137,17 @@ gtk_misc_class_init (GtkMiscClass *class) 0, GTK_PARAM_READWRITE)); - g_type_class_add_private (class, sizeof (GtkMiscPriv)); + g_type_class_add_private (class, sizeof (GtkMiscPrivate)); } static void gtk_misc_init (GtkMisc *misc) { - GtkMiscPriv *priv; + GtkMiscPrivate *priv; misc->priv = G_TYPE_INSTANCE_GET_PRIVATE (misc, GTK_TYPE_MISC, - GtkMiscPriv); + GtkMiscPrivate); priv = misc->priv; priv->xalign = 0.5; @@ -141,7 +163,7 @@ gtk_misc_set_property (GObject *object, GParamSpec *pspec) { GtkMisc *misc = GTK_MISC (object); - GtkMiscPriv *priv = misc->priv; + GtkMiscPrivate *priv = misc->priv; switch (prop_id) { @@ -170,7 +192,7 @@ gtk_misc_get_property (GObject *object, GParamSpec *pspec) { GtkMisc *misc = GTK_MISC (object); - GtkMiscPriv *priv = misc->priv; + GtkMiscPrivate *priv = misc->priv; switch (prop_id) { @@ -192,12 +214,20 @@ gtk_misc_get_property (GObject *object, } } +/** + * gtk_misc_set_alignment: + * @misc: a #GtkMisc. + * @xalign: the horizontal alignment, from 0 (left) to 1 (right). + * @yalign: the vertical alignment, from 0 (top) to 1 (bottom). + * + * Sets the alignment of the widget. + */ void gtk_misc_set_alignment (GtkMisc *misc, gfloat xalign, gfloat yalign) { - GtkMiscPriv *priv; + GtkMiscPrivate *priv; GtkWidget *widget; g_return_if_fail (GTK_IS_MISC (misc)); @@ -239,8 +269,8 @@ gtk_misc_set_alignment (GtkMisc *misc, /** * gtk_misc_get_alignment: * @misc: a #GtkMisc - * @xalign: (allow-none): location to store X alignment of @misc, or %NULL - * @yalign: (allow-none): location to store Y alignment of @misc, or %NULL + * @xalign: (out) (allow-none): location to store X alignment of @misc, or %NULL + * @yalign: (out) (allow-none): location to store Y alignment of @misc, or %NULL * * Gets the X and Y alignment of the widget within its allocation. * See gtk_misc_set_alignment(). @@ -250,7 +280,7 @@ gtk_misc_get_alignment (GtkMisc *misc, gfloat *xalign, gfloat *yalign) { - GtkMiscPriv *priv; + GtkMiscPrivate *priv; g_return_if_fail (GTK_IS_MISC (misc)); @@ -262,13 +292,22 @@ gtk_misc_get_alignment (GtkMisc *misc, *yalign = priv->yalign; } +/** + * gtk_misc_set_padding: + * @misc: a #GtkMisc. + * @xpad: the amount of space to add on the left and right of the widget, + * in pixels. + * @ypad: the amount of space to add on the top and bottom of the widget, + * in pixels. + * + * Sets the amount of space to add around the widget. + */ void gtk_misc_set_padding (GtkMisc *misc, gint xpad, gint ypad) { - GtkMiscPriv *priv; - GtkRequisition *requisition; + GtkMiscPrivate *priv; g_return_if_fail (GTK_IS_MISC (misc)); @@ -288,16 +327,9 @@ gtk_misc_set_padding (GtkMisc *misc, if (ypad != priv->ypad) g_object_notify (G_OBJECT (misc), "ypad"); - requisition = &(GTK_WIDGET (misc)->requisition); - requisition->width -= priv->xpad * 2; - requisition->height -= priv->ypad * 2; - priv->xpad = xpad; priv->ypad = ypad; - requisition->width += priv->xpad * 2; - requisition->height += priv->ypad * 2; - if (gtk_widget_is_drawable (GTK_WIDGET (misc))) gtk_widget_queue_resize (GTK_WIDGET (misc)); @@ -308,8 +340,10 @@ gtk_misc_set_padding (GtkMisc *misc, /** * gtk_misc_get_padding: * @misc: a #GtkMisc - * @xpad: (allow-none): location to store padding in the X direction, or %NULL - * @ypad: (allow-none): location to store padding in the Y direction, or %NULL + * @xpad: (out) (allow-none): location to store padding in the X + * direction, or %NULL + * @ypad: (out) (allow-none): location to store padding in the Y + * direction, or %NULL * * Gets the padding in the X and Y directions of the widget. * See gtk_misc_set_padding(). @@ -319,7 +353,7 @@ gtk_misc_get_padding (GtkMisc *misc, gint *xpad, gint *ypad) { - GtkMiscPriv *priv; + GtkMiscPrivate *priv; g_return_if_fail (GTK_IS_MISC (misc)); @@ -334,6 +368,8 @@ gtk_misc_get_padding (GtkMisc *misc, static void gtk_misc_realize (GtkWidget *widget) { + GtkAllocation allocation; + GdkWindow *window; GdkWindowAttr attributes; gint attributes_mask; @@ -341,27 +377,61 @@ gtk_misc_realize (GtkWidget *widget) if (!gtk_widget_get_has_window (widget)) { - widget->window = gtk_widget_get_parent_window (widget); - g_object_ref (widget->window); - widget->style = gtk_style_attach (widget->style, widget->window); + window = gtk_widget_get_parent_window (widget); + gtk_widget_set_window (widget, window); + g_object_ref (window); } else { + gtk_widget_get_allocation (widget, &allocation); + attributes.window_type = GDK_WINDOW_CHILD; - attributes.x = widget->allocation.x; - attributes.y = widget->allocation.y; - attributes.width = widget->allocation.width; - attributes.height = widget->allocation.height; + attributes.x = allocation.x; + attributes.y = allocation.y; + attributes.width = allocation.width; + attributes.height = allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.visual = gtk_widget_get_visual (widget); - attributes.colormap = gtk_widget_get_colormap (widget); attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK; - attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; + attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL; - widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask); - gdk_window_set_user_data (widget->window, widget); - - widget->style = gtk_style_attach (widget->style, widget->window); - gdk_window_set_back_pixmap (widget->window, NULL, TRUE); + window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask); + gtk_widget_set_window (widget, window); + gtk_widget_register_window (widget, window); + gdk_window_set_background_pattern (window, NULL); } } + +/* Semi-private function used by gtk widgets inheriting from + * GtkMisc that takes into account both css padding and border + * and the padding specified with the GtkMisc properties. + */ +void +_gtk_misc_get_padding_and_border (GtkMisc *misc, + GtkBorder *border) +{ + GtkStyleContext *context; + GtkStateFlags state; + GtkBorder tmp; + gint xpad, ypad; + + g_return_if_fail (GTK_IS_MISC (misc)); + + context = gtk_widget_get_style_context (GTK_WIDGET (misc)); + state = gtk_widget_get_state_flags (GTK_WIDGET (misc)); + + gtk_style_context_get_padding (context, state, border); + + gtk_misc_get_padding (misc, &xpad, &ypad); + border->top += ypad; + border->left += xpad; + border->bottom += ypad; + border->right += xpad; + + gtk_style_context_get_border (context, state, &tmp); + border->top += tmp.top; + border->right += tmp.right; + border->bottom += tmp.bottom; + border->left += tmp.left; +} +