X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkvseparator.c;h=e401ec7e7c386d1113e22784f0fa258fbe6d322e;hb=a8698a24c7a53fe4d34211053529f14747f7ce5f;hp=bf537a1bb06eae76a297698ba6bb04ccfc091c73;hpb=df4fc3672127660c1d47e4225297d00abbee84eb;p=~andy%2Fgtk diff --git a/gtk/gtkvseparator.c b/gtk/gtkvseparator.c index bf537a1bb..e401ec7e7 100644 --- a/gtk/gtkvseparator.c +++ b/gtk/gtkvseparator.c @@ -2,61 +2,41 @@ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public + * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * Lesser General Public License for more details. * - * You should have received a copy of the GNU Library General Public + * 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. */ /* - * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS + * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS * file for a list of people on the GTK+ Team. See the ChangeLog * files for a list of changes. These files are distributed with * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ +#include #include "gtkvseparator.h" +#include "gtkintl.h" +#include "gtkalias.h" -static void gtk_vseparator_class_init (GtkVSeparatorClass *klass); -static void gtk_vseparator_init (GtkVSeparator *vseparator); -static gint gtk_vseparator_expose (GtkWidget *widget, - GdkEventExpose *event); +static void gtk_vseparator_size_request (GtkWidget *widget, + GtkRequisition *requisition); +static gint gtk_vseparator_expose (GtkWidget *widget, + GdkEventExpose *event); -GtkType -gtk_vseparator_get_type (void) -{ - static GtkType vseparator_type = 0; - - if (!vseparator_type) - { - static const GtkTypeInfo vseparator_info = - { - "GtkVSeparator", - sizeof (GtkVSeparator), - sizeof (GtkVSeparatorClass), - (GtkClassInitFunc) gtk_vseparator_class_init, - (GtkObjectInitFunc) gtk_vseparator_init, - /* reserved_1 */ NULL, - /* reserved_2 */ NULL, - (GtkClassInitFunc) NULL, - }; - - vseparator_type = gtk_type_unique (GTK_TYPE_SEPARATOR, &vseparator_info); - } - - return vseparator_type; -} +G_DEFINE_TYPE (GtkVSeparator, gtk_vseparator, GTK_TYPE_SEPARATOR) static void gtk_vseparator_class_init (GtkVSeparatorClass *klass) @@ -65,6 +45,7 @@ gtk_vseparator_class_init (GtkVSeparatorClass *klass) widget_class = (GtkWidgetClass*) klass; + widget_class->size_request = gtk_vseparator_size_request; widget_class->expose_event = gtk_vseparator_expose; } @@ -78,25 +59,62 @@ gtk_vseparator_init (GtkVSeparator *vseparator) GtkWidget* gtk_vseparator_new (void) { - return GTK_WIDGET (gtk_type_new (GTK_TYPE_VSEPARATOR)); + return g_object_new (GTK_TYPE_VSEPARATOR, NULL); } +static void +gtk_vseparator_size_request (GtkWidget *widget, + GtkRequisition *requisition) +{ + gboolean wide_separators; + gint separator_width; + + gtk_widget_style_get (widget, + "wide-separators", &wide_separators, + "separator-width", &separator_width, + NULL); + + if (wide_separators) + requisition->height = separator_width; + else + requisition->height = widget->style->xthickness; +} static gint gtk_vseparator_expose (GtkWidget *widget, GdkEventExpose *event) { - g_return_val_if_fail (widget != NULL, FALSE); - g_return_val_if_fail (GTK_IS_VSEPARATOR (widget), FALSE); - g_return_val_if_fail (event != NULL, FALSE); - if (GTK_WIDGET_DRAWABLE (widget)) - gtk_paint_vline (widget->style, widget->window, GTK_STATE_NORMAL, - &event->area, widget, "vseparator", - widget->allocation.y, - widget->allocation.y + widget->allocation.height, - widget->allocation.x + (widget->allocation.width - - widget->style->xthickness) / 2); + { + gboolean wide_separators; + gint separator_width; + + gtk_widget_style_get (widget, + "wide-separators", &wide_separators, + "separator-width", &separator_width, + NULL); + + if (wide_separators) + gtk_paint_box (widget->style, widget->window, + GTK_WIDGET_STATE (widget), GTK_SHADOW_ETCHED_OUT, + &event->area, widget, "vseparator", + widget->allocation.x + (widget->allocation.width - + separator_width) / 2, + widget->allocation.y, + separator_width, + widget->allocation.height); + else + gtk_paint_vline (widget->style, widget->window, + GTK_WIDGET_STATE (widget), + &event->area, widget, "vseparator", + widget->allocation.y, + widget->allocation.y + widget->allocation.height - 1, + widget->allocation.x + (widget->allocation.width - + widget->style->xthickness) / 2); + } return FALSE; } + +#define __GTK_VSEPARATOR_C__ +#include "gtkaliasdef.c"