2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-09-30 14:20:30 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2008-09-30 14:20:30 +00:00
|
|
|
|
2011-01-30 08:12:49 +00:00
|
|
|
#include "gtkorientableprivate.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkseparator.h"
|
2008-09-30 14:20:30 +00:00
|
|
|
#include "gtkprivate.h"
|
2005-09-01 05:11:46 +00:00
|
|
|
#include "gtkintl.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-05-12 23:20:45 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkseparator
|
2010-06-03 05:21:18 +00:00
|
|
|
* @Short_description: Base class for GtkHSeparator and GtkVSeparator
|
2010-05-12 23:20:45 +00:00
|
|
|
* @Title: GtkSeparator
|
|
|
|
*
|
2010-06-03 05:21:18 +00:00
|
|
|
* The GtkSeparator widget is the base class for #GtkHSeparator and
|
|
|
|
* #GtkVSeparator. It can be used in the same way as these, by setting
|
|
|
|
* the "orientation" property suitably.
|
2010-05-12 23:20:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
struct _GtkSeparatorPrivate
|
2008-09-30 14:20:30 +00:00
|
|
|
{
|
|
|
|
GtkOrientation orientation;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-08-26 16:00:09 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_ORIENTATION
|
|
|
|
};
|
2008-09-30 14:20:30 +00:00
|
|
|
|
|
|
|
static void gtk_separator_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_separator_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2010-10-27 12:33:42 +00:00
|
|
|
static void gtk_separator_get_preferred_width
|
|
|
|
(GtkWidget *widget,
|
|
|
|
gint *minimum,
|
|
|
|
gint *natural);
|
|
|
|
static void gtk_separator_get_preferred_height
|
|
|
|
(GtkWidget *widget,
|
|
|
|
gint *minimum,
|
|
|
|
gint *natural);
|
2010-09-09 19:03:24 +00:00
|
|
|
static gboolean gtk_separator_draw (GtkWidget *widget,
|
|
|
|
cairo_t *cr);
|
2008-09-30 14:20:30 +00:00
|
|
|
|
|
|
|
|
2010-05-25 22:55:15 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkSeparator, gtk_separator, GTK_TYPE_WIDGET,
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE,
|
|
|
|
NULL))
|
2008-09-30 14:20:30 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_class_init (GtkSeparatorClass *class)
|
|
|
|
{
|
2008-09-30 14:20:30 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
|
|
|
|
|
|
|
|
object_class->set_property = gtk_separator_set_property;
|
|
|
|
object_class->get_property = gtk_separator_get_property;
|
|
|
|
|
2010-10-27 12:33:42 +00:00
|
|
|
widget_class->get_preferred_width = gtk_separator_get_preferred_width;
|
|
|
|
widget_class->get_preferred_height = gtk_separator_get_preferred_height;
|
|
|
|
|
2010-09-09 19:03:24 +00:00
|
|
|
widget_class->draw = gtk_separator_draw;
|
2008-09-30 14:20:30 +00:00
|
|
|
|
2010-10-27 12:33:42 +00:00
|
|
|
g_object_class_override_property (object_class, PROP_ORIENTATION, "orientation");
|
2008-09-30 14:20:30 +00:00
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
g_type_class_add_private (object_class, sizeof (GtkSeparatorPrivate));
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_init (GtkSeparator *separator)
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSeparatorPrivate *private;
|
2011-03-03 03:55:25 +00:00
|
|
|
GtkStyleContext *context;
|
2010-08-26 16:00:09 +00:00
|
|
|
|
|
|
|
separator->priv = G_TYPE_INSTANCE_GET_PRIVATE (separator,
|
|
|
|
GTK_TYPE_SEPARATOR,
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSeparatorPrivate);
|
2010-08-26 16:00:09 +00:00
|
|
|
private = separator->priv;
|
2008-09-30 14:20:30 +00:00
|
|
|
|
2010-03-06 10:29:31 +00:00
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (separator), FALSE);
|
2008-09-30 14:20:30 +00:00
|
|
|
|
|
|
|
private->orientation = GTK_ORIENTATION_HORIZONTAL;
|
2011-03-03 03:55:25 +00:00
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (GTK_WIDGET (separator));
|
|
|
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_SEPARATOR);
|
2008-09-30 14:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2010-08-26 16:00:09 +00:00
|
|
|
GtkSeparator *separator = GTK_SEPARATOR (object);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSeparatorPrivate *private = separator->priv;
|
2008-09-30 14:20:30 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_ORIENTATION:
|
|
|
|
private->orientation = g_value_get_enum (value);
|
2011-01-12 21:55:55 +00:00
|
|
|
_gtk_orientable_set_style_classes (GTK_ORIENTABLE (object));
|
2008-09-30 14:20:30 +00:00
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (object));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2010-08-26 16:00:09 +00:00
|
|
|
GtkSeparator *separator = GTK_SEPARATOR (object);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSeparatorPrivate *private = separator->priv;
|
2008-09-30 14:20:30 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_ORIENTATION:
|
|
|
|
g_value_set_enum (value, private->orientation);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-27 12:33:42 +00:00
|
|
|
gtk_separator_get_preferred_size (GtkWidget *widget,
|
|
|
|
GtkOrientation orientation,
|
|
|
|
gint *minimum,
|
|
|
|
gint *natural)
|
2008-09-30 14:20:30 +00:00
|
|
|
{
|
2010-08-26 16:00:09 +00:00
|
|
|
GtkSeparator *separator = GTK_SEPARATOR (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSeparatorPrivate *private = separator->priv;
|
2010-12-24 18:33:14 +00:00
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkStateFlags state;
|
|
|
|
GtkBorder border;
|
2010-10-27 12:33:42 +00:00
|
|
|
gboolean wide_sep;
|
|
|
|
gint sep_width;
|
|
|
|
gint sep_height;
|
2008-09-30 14:20:30 +00:00
|
|
|
|
2010-12-24 18:33:14 +00:00
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
state = gtk_widget_get_state_flags (widget);
|
|
|
|
gtk_style_context_get_border (context, state, &border);
|
|
|
|
|
2008-09-30 14:20:30 +00:00
|
|
|
gtk_widget_style_get (widget,
|
2010-10-27 12:33:42 +00:00
|
|
|
"wide-separators", &wide_sep,
|
|
|
|
"separator-width", &sep_width,
|
|
|
|
"separator-height", &sep_height,
|
2008-09-30 14:20:30 +00:00
|
|
|
NULL);
|
|
|
|
|
2010-10-27 12:33:42 +00:00
|
|
|
if (orientation == private->orientation)
|
2008-09-30 14:20:30 +00:00
|
|
|
{
|
2010-10-27 12:33:42 +00:00
|
|
|
*minimum = *natural = 1;
|
|
|
|
}
|
|
|
|
else if (orientation == GTK_ORIENTATION_VERTICAL)
|
|
|
|
{
|
2010-12-24 18:33:14 +00:00
|
|
|
*minimum = *natural = wide_sep ? sep_height : border.top;
|
2008-09-30 14:20:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-12-24 18:33:14 +00:00
|
|
|
*minimum = *natural = wide_sep ? sep_width : border.left;
|
2008-09-30 14:20:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-27 12:33:42 +00:00
|
|
|
static void
|
|
|
|
gtk_separator_get_preferred_width (GtkWidget *widget,
|
|
|
|
gint *minimum,
|
|
|
|
gint *natural)
|
|
|
|
{
|
|
|
|
gtk_separator_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, minimum, natural);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_get_preferred_height (GtkWidget *widget,
|
|
|
|
gint *minimum,
|
|
|
|
gint *natural)
|
|
|
|
{
|
|
|
|
gtk_separator_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, minimum, natural);
|
|
|
|
}
|
|
|
|
|
2008-09-30 14:20:30 +00:00
|
|
|
static gboolean
|
2011-01-24 02:50:39 +00:00
|
|
|
gtk_separator_draw (GtkWidget *widget,
|
|
|
|
cairo_t *cr)
|
2008-09-30 14:20:30 +00:00
|
|
|
{
|
2010-08-26 16:00:09 +00:00
|
|
|
GtkSeparator *separator = GTK_SEPARATOR (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSeparatorPrivate *private = separator->priv;
|
2010-12-24 18:33:14 +00:00
|
|
|
GtkStateFlags state;
|
|
|
|
GtkStyleContext *context;
|
|
|
|
GtkBorder padding;
|
2008-09-30 14:20:30 +00:00
|
|
|
gboolean wide_separators;
|
2010-09-09 19:03:24 +00:00
|
|
|
gint separator_width;
|
|
|
|
gint separator_height;
|
|
|
|
int width, height;
|
2008-09-30 14:20:30 +00:00
|
|
|
|
2010-12-24 18:33:14 +00:00
|
|
|
context = gtk_widget_get_style_context (widget);
|
2008-09-30 14:20:30 +00:00
|
|
|
gtk_widget_style_get (widget,
|
|
|
|
"wide-separators", &wide_separators,
|
|
|
|
"separator-width", &separator_width,
|
|
|
|
"separator-height", &separator_height,
|
|
|
|
NULL);
|
|
|
|
|
2010-12-24 18:33:14 +00:00
|
|
|
state = gtk_widget_get_state_flags (widget);
|
2010-09-09 19:03:24 +00:00
|
|
|
width = gtk_widget_get_allocated_width (widget);
|
|
|
|
height = gtk_widget_get_allocated_height (widget);
|
2010-08-11 21:01:16 +00:00
|
|
|
|
2010-12-24 18:33:14 +00:00
|
|
|
gtk_style_context_get_padding (context, state, &padding);
|
|
|
|
|
|
|
|
gtk_style_context_save (context);
|
|
|
|
gtk_style_context_set_state (context, state);
|
|
|
|
|
2008-09-30 14:20:30 +00:00
|
|
|
if (private->orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
|
|
{
|
|
|
|
if (wide_separators)
|
2010-12-24 18:33:14 +00:00
|
|
|
gtk_render_frame (context, cr,
|
|
|
|
0, (height - separator_height) / 2,
|
|
|
|
width, separator_height);
|
2008-09-30 14:20:30 +00:00
|
|
|
else
|
2010-12-24 18:33:14 +00:00
|
|
|
gtk_render_line (context, cr,
|
|
|
|
0, (height - padding.top) / 2,
|
|
|
|
width - 1, (height - padding.top) / 2);
|
2008-09-30 14:20:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (wide_separators)
|
2010-12-24 18:33:14 +00:00
|
|
|
gtk_render_frame (context, cr,
|
|
|
|
(width - separator_width) / 2, 0,
|
|
|
|
separator_width, height);
|
2008-09-30 14:20:30 +00:00
|
|
|
else
|
2010-12-24 18:33:14 +00:00
|
|
|
gtk_render_line (context, cr,
|
|
|
|
(width - padding.left) / 2, 0,
|
|
|
|
(width - padding.left) / 2, height - 1);
|
2008-09-30 14:20:30 +00:00
|
|
|
}
|
|
|
|
|
2011-04-07 19:21:51 +00:00
|
|
|
gtk_style_context_restore (context);
|
|
|
|
|
2008-09-30 14:20:30 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_separator_new:
|
|
|
|
* @orientation: the separator's orientation.
|
|
|
|
*
|
|
|
|
* Creates a new #GtkSeparator with the given orientation.
|
|
|
|
*
|
|
|
|
* Return value: a new #GtkSeparator.
|
|
|
|
*
|
2010-05-25 22:55:15 +00:00
|
|
|
* Since: 3.0
|
2011-01-24 02:50:39 +00:00
|
|
|
*/
|
2008-09-30 14:20:30 +00:00
|
|
|
GtkWidget *
|
|
|
|
gtk_separator_new (GtkOrientation orientation)
|
|
|
|
{
|
|
|
|
return g_object_new (GTK_TYPE_SEPARATOR,
|
|
|
|
"orientation", orientation,
|
|
|
|
NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|