]> git.sur5r.net Git - glabels/blob - glabels1/src/prop_line.c
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels1 / src / prop_line.c
1 /*
2  *  (GLABELS) Label and Business Card Creation program for GNOME
3  *
4  *  prop_line.c:  line properties widget module
5  *
6  *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  */
22
23 #include <config.h>
24
25 #include "prop_line.h"
26
27 #include "debug.h"
28
29 #define RED(x)   ( ((x)>>24) & 0xff )
30 #define GREEN(x) ( ((x)>>16) & 0xff )
31 #define BLUE(x)  ( ((x)>>8)  & 0xff )
32 #define ALPHA(x) (  (x)      & 0xff )
33
34 /*===========================================*/
35 /* Private types                             */
36 /*===========================================*/
37
38 enum {
39         CHANGED,
40         LAST_SIGNAL
41 };
42
43 typedef void (*glPropLineSignal) (GtkObject * object, gpointer data);
44
45 /*===========================================*/
46 /* Private globals                           */
47 /*===========================================*/
48
49 static GtkContainerClass *parent_class;
50
51 static gint prop_line_signals[LAST_SIGNAL] = { 0 };
52
53 /*===========================================*/
54 /* Local function prototypes                 */
55 /*===========================================*/
56
57 static void gl_prop_line_class_init (glPropLineClass * class);
58 static void gl_prop_line_init (glPropLine * line);
59 static void gl_prop_line_destroy (GtkObject * object);
60 static void gl_prop_line_construct (glPropLine * line, gchar * label);
61 static void changed_cb (glPropLine * line);
62 \f
63 /*================================================================*/
64 /* Boilerplate Object stuff.                                      */
65 /*================================================================*/
66 guint
67 gl_prop_line_get_type (void)
68 {
69         static guint prop_line_type = 0;
70
71         if (!prop_line_type) {
72                 GtkTypeInfo prop_line_info = {
73                         "glPropLine",
74                         sizeof (glPropLine),
75                         sizeof (glPropLineClass),
76                         (GtkClassInitFunc) gl_prop_line_class_init,
77                         (GtkObjectInitFunc) gl_prop_line_init,
78                         (GtkArgSetFunc) NULL,
79                         (GtkArgGetFunc) NULL,
80                 };
81
82                 prop_line_type =
83                     gtk_type_unique (gtk_vbox_get_type (), &prop_line_info);
84         }
85
86         return prop_line_type;
87 }
88
89 static void
90 gl_prop_line_class_init (glPropLineClass * class)
91 {
92         GtkObjectClass *object_class;
93         GtkWidgetClass *widget_class;
94
95         object_class = (GtkObjectClass *) class;
96         widget_class = (GtkWidgetClass *) class;
97
98         parent_class = gtk_type_class (gtk_vbox_get_type ());
99
100         object_class->destroy = gl_prop_line_destroy;
101
102         prop_line_signals[CHANGED] =
103             gtk_signal_new ("changed", GTK_RUN_LAST, object_class->type,
104                             GTK_SIGNAL_OFFSET (glPropLineClass, changed),
105                             gtk_signal_default_marshaller, GTK_TYPE_NONE, 0);
106         gtk_object_class_add_signals (object_class, prop_line_signals,
107                                       LAST_SIGNAL);
108
109         class->changed = NULL;
110 }
111
112 static void
113 gl_prop_line_init (glPropLine * line)
114 {
115         line->width_spin = NULL;
116         line->color_picker = NULL;
117         line->units_label = NULL;
118 }
119
120 static void
121 gl_prop_line_destroy (GtkObject * object)
122 {
123         glPropLine *line;
124         glPropLineClass *class;
125
126         g_return_if_fail (object != NULL);
127         g_return_if_fail (GL_IS_PROP_LINE (object));
128
129         line = GL_PROP_LINE (object);
130         class = GL_PROP_LINE_CLASS (GTK_OBJECT (line)->klass);
131
132         GTK_OBJECT_CLASS (parent_class)->destroy (object);
133 }
134
135 GtkWidget *
136 gl_prop_line_new (gchar * label)
137 {
138         glPropLine *line;
139
140         line = gtk_type_new (gl_prop_line_get_type ());
141
142         gl_prop_line_construct (line, label);
143
144         return GTK_WIDGET (line);
145 }
146 \f
147 /*============================================================*/
148 /* Construct composite widget.                                */
149 /*============================================================*/
150 static void
151 gl_prop_line_construct (glPropLine * line,
152                         gchar * label)
153 {
154         GtkWidget *wvbox, *wframe, *wtable, *wlabel;
155         GtkObject *adjust;
156
157         wvbox = GTK_WIDGET (line);
158
159         wframe = gtk_frame_new (label);
160         gtk_box_pack_start (GTK_BOX (wvbox), wframe, FALSE, FALSE, 0);
161
162         wtable = gtk_table_new (2, 3, TRUE);
163         gtk_container_set_border_width (GTK_CONTAINER (wtable), 10);
164         gtk_table_set_row_spacings (GTK_TABLE (wtable), 5);
165         gtk_table_set_col_spacings (GTK_TABLE (wtable), 5);
166         gtk_container_add (GTK_CONTAINER (wframe), wtable);
167
168         /* Line Width Label */
169         wlabel = gtk_label_new (_("Width:"));
170         gtk_misc_set_alignment (GTK_MISC (wlabel), 0, 0.5);
171         gtk_label_set_justify (GTK_LABEL (wlabel), GTK_JUSTIFY_RIGHT);
172         gtk_table_attach_defaults (GTK_TABLE (wtable), wlabel, 0, 1, 0, 1);
173         /* Line Width widget */
174         adjust = gtk_adjustment_new (1.0, 0.25, 4.0, 0.25, 1.0, 1.0);
175         line->width_spin =
176             gtk_spin_button_new (GTK_ADJUSTMENT (adjust), 0.25, 2);
177         gtk_signal_connect_object (GTK_OBJECT (line->width_spin), "changed",
178                                    GTK_SIGNAL_FUNC (changed_cb),
179                                    GTK_OBJECT (line));
180         gtk_table_attach_defaults (GTK_TABLE (wtable), line->width_spin, 1, 2,
181                                    0, 1);
182         /* Line Width units */
183         line->units_label = gtk_label_new (_("points"));
184         gtk_misc_set_alignment (GTK_MISC (line->units_label), 0, 0.5);
185         gtk_table_attach_defaults (GTK_TABLE (wtable), line->units_label,
186                                    2, 3, 0, 1);
187
188         /* Line Color Label */
189         wlabel = gtk_label_new (_("Color:"));
190         gtk_misc_set_alignment (GTK_MISC (wlabel), 0, 0.5);
191         gtk_table_attach_defaults (GTK_TABLE (wtable), wlabel, 0, 1, 1, 2);
192         /* Line Color picker widget */
193         line->color_picker = gnome_color_picker_new ();
194         gtk_signal_connect_object (GTK_OBJECT (line->color_picker), "color_set",
195                                    GTK_SIGNAL_FUNC (changed_cb),
196                                    GTK_OBJECT (line));
197         gtk_table_attach_defaults (GTK_TABLE (wtable), line->color_picker, 1, 3,
198                                    1, 2);
199
200 }
201
202 /*--------------------------------------------------------------------------*/
203 /* PRIVATE.  Callback for when any control in the widget has changed.       */
204 /*--------------------------------------------------------------------------*/
205 static void
206 changed_cb (glPropLine * line)
207 {
208         /* Emit our "changed" signal */
209         gtk_signal_emit (GTK_OBJECT (line), prop_line_signals[CHANGED]);
210 }
211 \f
212 /*====================================================================*/
213 /* query values from controls.                                        */
214 /*====================================================================*/
215 void
216 gl_prop_line_get_params (glPropLine * line,
217                          gdouble * width,
218                          guint * color)
219 {
220         guint8 r, g, b, a;
221
222         *width =
223             gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON
224                                               (line->width_spin));
225
226         gnome_color_picker_get_i8 (GNOME_COLOR_PICKER (line->color_picker),
227                                    &r, &g, &b, &a);
228         *color = GNOME_CANVAS_COLOR_A (r, g, b, a);
229 }
230
231 /*====================================================================*/
232 /* fill in values and ranges for controls.                            */
233 /*====================================================================*/
234 void
235 gl_prop_line_set_params (glPropLine * line,
236                          gdouble width,
237                          guint color)
238 {
239         gtk_spin_button_set_value (GTK_SPIN_BUTTON (line->width_spin), width);
240
241         gnome_color_picker_set_i8 (GNOME_COLOR_PICKER (line->color_picker),
242                                    RED (color), GREEN (color), BLUE (color),
243                                    ALPHA (color));
244 }