]> Pileus Git - ~andy/gtk/blob - gtk/gtkseparator.c
Silence new gcc warnings
[~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 "gtkorientable.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
105   separator->priv = G_TYPE_INSTANCE_GET_PRIVATE (separator,
106                                                  GTK_TYPE_SEPARATOR,
107                                                  GtkSeparatorPrivate);
108   private = separator->priv;
109
110   gtk_widget_set_has_window (GTK_WIDGET (separator), FALSE);
111
112   private->orientation = GTK_ORIENTATION_HORIZONTAL;
113 }
114
115 static void
116 gtk_separator_set_property (GObject      *object,
117                             guint         prop_id,
118                             const GValue *value,
119                             GParamSpec   *pspec)
120 {
121   GtkSeparator *separator = GTK_SEPARATOR (object);
122   GtkSeparatorPrivate *private = separator->priv;
123
124   switch (prop_id)
125     {
126     case PROP_ORIENTATION:
127       private->orientation = g_value_get_enum (value);
128       _gtk_orientable_set_style_classes (GTK_ORIENTABLE (object));
129       gtk_widget_queue_resize (GTK_WIDGET (object));
130       break;
131     default:
132       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
133       break;
134     }
135 }
136
137 static void
138 gtk_separator_get_property (GObject    *object,
139                             guint       prop_id,
140                             GValue     *value,
141                             GParamSpec *pspec)
142 {
143   GtkSeparator *separator = GTK_SEPARATOR (object);
144   GtkSeparatorPrivate *private = separator->priv;
145
146   switch (prop_id)
147     {
148     case PROP_ORIENTATION:
149       g_value_set_enum (value, private->orientation);
150       break;
151     default:
152       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
153       break;
154     }
155 }
156
157 static void
158 gtk_separator_get_preferred_size (GtkWidget      *widget,
159                                   GtkOrientation  orientation,
160                                   gint           *minimum,
161                                   gint           *natural)
162 {
163   GtkSeparator *separator = GTK_SEPARATOR (widget);
164   GtkSeparatorPrivate *private = separator->priv;
165   GtkStyleContext *context;
166   GtkStateFlags state;
167   GtkBorder border;
168   gboolean wide_sep;
169   gint     sep_width;
170   gint     sep_height;
171
172   context = gtk_widget_get_style_context (widget);
173   state = gtk_widget_get_state_flags (widget);
174   gtk_style_context_get_border (context, state, &border);
175
176   gtk_widget_style_get (widget,
177                         "wide-separators",  &wide_sep,
178                         "separator-width",  &sep_width,
179                         "separator-height", &sep_height,
180                         NULL);
181
182   if (orientation == private->orientation)
183     {
184       *minimum = *natural = 1;
185     }
186   else if (orientation == GTK_ORIENTATION_VERTICAL)
187     {
188       *minimum = *natural = wide_sep ? sep_height : border.top;
189     }
190   else
191     {
192       *minimum = *natural = wide_sep ? sep_width : border.left;
193     }
194 }
195
196 static void
197 gtk_separator_get_preferred_width (GtkWidget *widget,
198                                    gint      *minimum,
199                                    gint      *natural)
200 {
201   gtk_separator_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, minimum, natural);
202 }
203
204 static void
205 gtk_separator_get_preferred_height (GtkWidget *widget,
206                                     gint      *minimum,
207                                     gint      *natural)
208 {
209   gtk_separator_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, minimum, natural);
210 }
211
212 static gboolean
213 gtk_separator_draw (GtkWidget *widget,
214                     cairo_t   *cr)
215 {
216   GtkSeparator *separator = GTK_SEPARATOR (widget);
217   GtkSeparatorPrivate *private = separator->priv;
218   GtkStateFlags state;
219   GtkStyleContext *context;
220   GtkBorder padding;
221   gboolean wide_separators;
222   gint separator_width;
223   gint separator_height;
224   int width, height;
225
226   context = gtk_widget_get_style_context (widget);
227   gtk_widget_style_get (widget,
228                         "wide-separators",  &wide_separators,
229                         "separator-width",  &separator_width,
230                         "separator-height", &separator_height,
231                         NULL);
232
233   state = gtk_widget_get_state_flags (widget);
234   width = gtk_widget_get_allocated_width (widget);
235   height = gtk_widget_get_allocated_height (widget);
236
237   gtk_style_context_get_padding (context, state, &padding);
238
239   gtk_style_context_save (context);
240   gtk_style_context_set_state (context, state);
241
242   if (private->orientation == GTK_ORIENTATION_HORIZONTAL)
243     {
244       if (wide_separators)
245         gtk_render_frame (context, cr,
246                           0, (height - separator_height) / 2,
247                           width, separator_height);
248       else
249         gtk_render_line (context, cr,
250                          0, (height - padding.top) / 2,
251                          width - 1, (height - padding.top) / 2);
252     }
253   else
254     {
255       if (wide_separators)
256         gtk_render_frame (context, cr,
257                           (width - separator_width) / 2, 0,
258                           separator_width, height);
259       else
260         gtk_render_line (context, cr,
261                          (width - padding.left) / 2, 0,
262                          (width - padding.left) / 2, height - 1);
263     }
264
265   return FALSE;
266 }
267
268 /**
269  * gtk_separator_new:
270  * @orientation: the separator's orientation.
271  *
272  * Creates a new #GtkSeparator with the given orientation.
273  *
274  * Return value: a new #GtkSeparator.
275  *
276  * Since: 3.0
277  */
278 GtkWidget *
279 gtk_separator_new (GtkOrientation orientation)
280 {
281   return g_object_new (GTK_TYPE_SEPARATOR,
282                        "orientation", orientation,
283                        NULL);
284 }