use execvp() correctly (suggested by wwp; thanks!)
[claws.git] / src / gtkshruler.c
1 /* GtkSHRuler
2  *
3  *  Copyright (C) 2000 Alfons Hoogervorst
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20  
21 /* I derived this class from hruler. S in HRuler could be read as
22  * Sylpheed (sylpheed.good-day.net), but also [S]ettable HRuler.
23  * I basically ripped apart the draw_ticks member of HRuler; it
24  * now draws the ticks at ruler->max_size. so gtk_ruler_set_range's
25  * last parameter has the distance between two ticks (which is
26  * the width of the fixed font character!
27  * 
28  * -- Alfons (alfons@proteus.demon.nl)
29  */
30
31 #include <math.h>
32 #include <stdio.h>
33 #include <string.h>
34 #include <gtk/gtkhruler.h>
35 #include "gtkshruler.h"
36
37 #define RULER_HEIGHT          14
38 #define MINIMUM_INCR          5
39 #define MAXIMUM_SUBDIVIDE     5
40 #define MAXIMUM_SCALES        10
41
42 #define ROUND(x) ((int) ((x) + 0.5))
43
44 static void gtk_shruler_class_init      (GtkSHRulerClass *klass);
45 static void gtk_shruler_init            (GtkSHRuler      *hruler);
46 static gint gtk_shruler_motion_notify   (GtkWidget       *widget,
47                                          GdkEventMotion  *event);
48 static void gtk_shruler_draw_ticks      (GtkRuler        *ruler);
49 #if 0
50 static void gtk_shruler_draw_pos        (GtkRuler        *ruler);
51 #endif
52
53 guint
54 gtk_shruler_get_type(void)
55 {
56         static guint shruler_type = 0;
57
58         if ( !shruler_type ) {
59                 static const GtkTypeInfo shruler_info = {
60                         "GtkSHRuler",
61                         sizeof (GtkSHRuler),
62                         sizeof (GtkSHRulerClass),
63                         (GtkClassInitFunc) gtk_shruler_class_init,
64                         (GtkObjectInitFunc) gtk_shruler_init,
65                         /* reserved_1 */ NULL,
66                 /* reserved_2 */ NULL,
67                 (GtkClassInitFunc) NULL,
68          };
69                 /* inherit from GtkHRuler */
70         shruler_type = gtk_type_unique( gtk_hruler_get_type (), &shruler_info );
71         }
72         return shruler_type;
73 }
74
75 static void
76 gtk_shruler_class_init(GtkSHRulerClass * klass)
77 {
78         GtkWidgetClass * widget_class;
79         GtkRulerClass * hruler_class;
80
81         widget_class = (GtkWidgetClass*) klass;
82         hruler_class = (GtkRulerClass*) klass;
83
84         /* just neglect motion notify events */
85         widget_class->motion_notify_event = NULL /* gtk_shruler_motion_notify */;
86
87         /* we want the old ruler draw ticks... */
88         /* ruler_class->draw_ticks = gtk_hruler_draw_ticks; */
89         hruler_class->draw_ticks = gtk_shruler_draw_ticks;
90         
91         /* unimplemented draw pos */
92         hruler_class->draw_pos = NULL;
93 /*
94         hruler_class->draw_pos = gtk_shruler_draw_pos;
95 */
96 }
97
98 static void
99 gtk_shruler_init (GtkSHRuler * shruler)
100 {
101         GtkWidget * widget;
102         
103         widget = GTK_WIDGET (shruler);
104         widget->requisition.width = widget->style->klass->xthickness * 2 + 1;
105         widget->requisition.height = widget->style->klass->ythickness * 2 + RULER_HEIGHT;
106 }
107
108
109 GtkWidget*
110 gtk_shruler_new(void)
111 {
112         return GTK_WIDGET( gtk_type_new( gtk_shruler_get_type() ) );
113 }
114
115 static void
116 gtk_shruler_draw_ticks(GtkRuler *ruler)
117 {
118         GtkWidget *widget;
119         GdkGC *gc, *bg_gc;
120         GdkFont *font;
121         gint i;
122         gint width, height;
123         gint xthickness;
124         gint ythickness;
125         gint pos;
126
127         g_return_if_fail (ruler != NULL);
128         g_return_if_fail (GTK_IS_HRULER (ruler));
129
130         if (!GTK_WIDGET_DRAWABLE (ruler)) 
131                 return;
132
133         widget = GTK_WIDGET (ruler);
134         
135         gc = widget->style->fg_gc[GTK_STATE_NORMAL];
136         bg_gc = widget->style->bg_gc[GTK_STATE_NORMAL];
137         font = widget->style->font;
138
139         xthickness = widget->style->klass->xthickness;
140         ythickness = widget->style->klass->ythickness;
141
142         width = widget->allocation.width;
143         height = widget->allocation.height - ythickness * 2;
144   
145         gtk_paint_box (widget->style, ruler->backing_store,
146                        GTK_STATE_NORMAL, GTK_SHADOW_OUT, 
147                        NULL, widget, "hruler",
148                        0, 0, 
149                        widget->allocation.width, widget->allocation.height);
150
151 #if 0
152         gdk_draw_line (ruler->backing_store, gc,
153                        xthickness,
154                        height + ythickness,
155                        widget->allocation.width - xthickness,
156                        height + ythickness);
157 #endif
158
159         /* assume ruler->max_size has the char width */    
160         /* i is increment of char_width,  pos is label number */
161         for ( i = 0, pos = 0; i < widget->allocation.width - xthickness; i += ruler->max_size, pos++ ) {        
162                 int length = ythickness / 2;
163         
164                 if ( pos % 10 == 0 ) length = ( 4 * ythickness );
165                 else if (pos % 5 == 0 ) length = ( 2 * ythickness );
166                 
167                 gdk_draw_line(ruler->backing_store, gc,
168                               i, height + ythickness, 
169                               i, height - length);                      
170                 
171                 if ( pos % 10 == 0 ) {
172                         char buf[8];
173                         /* draw label */
174                         sprintf(buf, "%d", (int) pos);
175                         gdk_draw_string(ruler->backing_store, font, gc,
176                                         i + 2, ythickness + font->ascent - 1,
177                                         buf);
178             }
179         }
180 }
181
182 /* gtk_ruler_set_pos() - does not work yet, need to reimplement 
183  * gtk_ruler_draw_pos(). */
184 void
185 gtk_shruler_set_pos(GtkSHRuler * ruler, gfloat pos)
186 {
187         GtkRuler * ruler_;
188         g_return_if_fail( ruler != NULL );
189         
190         ruler_ = GTK_RULER(ruler);
191         
192         if ( pos < ruler_->lower ) 
193                 pos = ruler_->lower;
194         if ( pos > ruler_->upper )
195                 pos = ruler_->upper;
196         
197         ruler_->position = pos; 
198         
199         /*  Make sure the ruler has been allocated already  */
200         if ( ruler_->backing_store != NULL )
201                 gtk_ruler_draw_pos(ruler_);
202 }