]> Pileus Git - ~andy/gtk/blob - gtk/gtkseparator.c
all: add a "separator" style class
[~andy/gtk] / gtk / gtkseparator.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #include "config.h"
28
29 #include "gtkorientableprivate.h"
30 #include "gtkseparator.h"
31 #include "gtkprivate.h"
32 #include "gtkintl.h"
33
34 /**
35  * SECTION:gtkseparator
36  * @Short_description: Base class for GtkHSeparator and GtkVSeparator
37  * @Title: GtkSeparator
38  *
39  * The GtkSeparator widget is the base class for #GtkHSeparator and
40  * #GtkVSeparator. It can be used in the same way as these, by setting
41  * the "orientation" property suitably.
42  */
43
44
45 struct _GtkSeparatorPrivate
46 {
47   GtkOrientation orientation;
48 };
49
50
51 enum {
52   PROP_0,
53   PROP_ORIENTATION
54 };
55
56 static void       gtk_separator_set_property (GObject        *object,
57                                               guint           prop_id,
58                                               const GValue   *value,
59                                               GParamSpec     *pspec);
60 static void       gtk_separator_get_property (GObject        *object,
61                                               guint           prop_id,
62                                               GValue         *value,
63                                               GParamSpec     *pspec);
64 static void       gtk_separator_get_preferred_width
65                                              (GtkWidget      *widget,
66                                               gint           *minimum,
67                                               gint           *natural);
68 static void       gtk_separator_get_preferred_height
69                                              (GtkWidget      *widget,
70                                               gint           *minimum,
71                                               gint           *natural);
72 static gboolean   gtk_separator_draw         (GtkWidget      *widget,
73                                               cairo_t        *cr);
74
75
76 G_DEFINE_TYPE_WITH_CODE (GtkSeparator, gtk_separator, GTK_TYPE_WIDGET,
77                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE,
78                                                 NULL))
79
80
81 static void
82 gtk_separator_class_init (GtkSeparatorClass *class)
83 {
84   GObjectClass *object_class = G_OBJECT_CLASS (class);
85   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
86
87   object_class->set_property = gtk_separator_set_property;
88   object_class->get_property = gtk_separator_get_property;
89
90   widget_class->get_preferred_width = gtk_separator_get_preferred_width;
91   widget_class->get_preferred_height = gtk_separator_get_preferred_height;
92
93   widget_class->draw         = gtk_separator_draw;
94
95   g_object_class_override_property (object_class, PROP_ORIENTATION, "orientation");
96
97   g_type_class_add_private (object_class, sizeof (GtkSeparatorPrivate));
98 }
99
100 static void
101 gtk_separator_init (GtkSeparator *separator)
102 {
103   GtkSeparatorPrivate *private;
104   GtkStyleContext *context;
105
106   separator->priv = G_TYPE_INSTANCE_GET_PRIVATE (separator,
107                                                  GTK_TYPE_SEPARATOR,
108                                                  GtkSeparatorPrivate);
109   private = separator->priv;
110
111   gtk_widget_set_has_window (GTK_WIDGET (separator), FALSE);
112
113   private->orientation = GTK_ORIENTATION_HORIZONTAL;
114
115   context = gtk_widget_get_style_context (GTK_WIDGET (separator));
116   gtk_style_context_add_class (context, GTK_STYLE_CLASS_SEPARATOR);
117 }
118
119 static void
120 gtk_separator_set_property (GObject      *object,
121                             guint         prop_id,
122                             const GValue *value,
123                             GParamSpec   *pspec)
124 {
125   GtkSeparator *separator = GTK_SEPARATOR (object);
126   GtkSeparatorPrivate *private = separator->priv;
127
128   switch (prop_id)
129     {
130     case PROP_ORIENTATION:
131       private->orientation = g_value_get_enum (value);
132       _gtk_orientable_set_style_classes (GTK_ORIENTABLE (object));
133       gtk_widget_queue_resize (GTK_WIDGET (object));
134       break;
135     default:
136       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
137       break;
138     }
139 }
140
141 static void
142 gtk_separator_get_property (GObject    *object,
143                             guint       prop_id,
144                             GValue     *value,
145                             GParamSpec *pspec)
146 {
147   GtkSeparator *separator = GTK_SEPARATOR (object);
148   GtkSeparatorPrivate *private = separator->priv;
149
150   switch (prop_id)
151     {
152     case PROP_ORIENTATION:
153       g_value_set_enum (value, private->orientation);
154       break;
155     default:
156       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
157       break;
158     }
159 }
160
161 static void
162 gtk_separator_get_preferred_size (GtkWidget      *widget,
163                                   GtkOrientation  orientation,
164                                   gint           *minimum,
165                                   gint           *natural)
166 {
167   GtkSeparator *separator = GTK_SEPARATOR (widget);
168   GtkSeparatorPrivate *private = separator->priv;
169   GtkStyleContext *context;
170   GtkStateFlags state;
171   GtkBorder border;
172   gboolean wide_sep;
173   gint     sep_width;
174   gint     sep_height;
175
176   context = gtk_widget_get_style_context (widget);
177   state = gtk_widget_get_state_flags (widget);
178   gtk_style_context_get_border (context, state, &border);
179
180   gtk_widget_style_get (widget,
181                         "wide-separators",  &wide_sep,
182                         "separator-width",  &sep_width,
183                         "separator-height", &sep_height,
184                         NULL);
185
186   if (orientation == private->orientation)
187     {
188       *minimum = *natural = 1;
189     }
190   else if (orientation == GTK_ORIENTATION_VERTICAL)
191     {
192       *minimum = *natural = wide_sep ? sep_height : border.top;
193     }
194   else
195     {
196       *minimum = *natural = wide_sep ? sep_width : border.left;
197     }
198 }
199
200 static void
201 gtk_separator_get_preferred_width (GtkWidget *widget,
202                                    gint      *minimum,
203                                    gint      *natural)
204 {
205   gtk_separator_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, minimum, natural);
206 }
207
208 static void
209 gtk_separator_get_preferred_height (GtkWidget *widget,
210                                     gint      *minimum,
211                                     gint      *natural)
212 {
213   gtk_separator_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, minimum, natural);
214 }
215
216 static gboolean
217 gtk_separator_draw (GtkWidget *widget,
218                     cairo_t   *cr)
219 {
220   GtkSeparator *separator = GTK_SEPARATOR (widget);
221   GtkSeparatorPrivate *private = separator->priv;
222   GtkStateFlags state;
223   GtkStyleContext *context;
224   GtkBorder padding;
225   gboolean wide_separators;
226   gint separator_width;
227   gint separator_height;
228   int width, height;
229
230   context = gtk_widget_get_style_context (widget);
231   gtk_widget_style_get (widget,
232                         "wide-separators",  &wide_separators,
233                         "separator-width",  &separator_width,
234                         "separator-height", &separator_height,
235                         NULL);
236
237   state = gtk_widget_get_state_flags (widget);
238   width = gtk_widget_get_allocated_width (widget);
239   height = gtk_widget_get_allocated_height (widget);
240
241   gtk_style_context_get_padding (context, state, &padding);
242
243   gtk_style_context_save (context);
244   gtk_style_context_set_state (context, state);
245
246   if (private->orientation == GTK_ORIENTATION_HORIZONTAL)
247     {
248       if (wide_separators)
249         gtk_render_frame (context, cr,
250                           0, (height - separator_height) / 2,
251                           width, separator_height);
252       else
253         gtk_render_line (context, cr,
254                          0, (height - padding.top) / 2,
255                          width - 1, (height - padding.top) / 2);
256     }
257   else
258     {
259       if (wide_separators)
260         gtk_render_frame (context, cr,
261                           (width - separator_width) / 2, 0,
262                           separator_width, height);
263       else
264         gtk_render_line (context, cr,
265                          (width - padding.left) / 2, 0,
266                          (width - padding.left) / 2, height - 1);
267     }
268
269   return FALSE;
270 }
271
272 /**
273  * gtk_separator_new:
274  * @orientation: the separator's orientation.
275  *
276  * Creates a new #GtkSeparator with the given orientation.
277  *
278  * Return value: a new #GtkSeparator.
279  *
280  * Since: 3.0
281  */
282 GtkWidget *
283 gtk_separator_new (GtkOrientation orientation)
284 {
285   return g_object_new (GTK_TYPE_SEPARATOR,
286                        "orientation", orientation,
287                        NULL);
288 }