]> Pileus Git - ~andy/gtk/blob - gtk/gtkcurve.c
Add GtkSpinner::animation-duration style property
[~andy/gtk] / gtk / gtkcurve.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1997 David Mosberger
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 #include <stdlib.h>
29 #include <string.h>
30 #include <math.h>
31
32 #include "gtkcurve.h"
33 #include "gtkdrawingarea.h"
34 #include "gtkmain.h"
35 #include "gtkmarshalers.h"
36 #include "gtkradiobutton.h"
37 #include "gtktable.h"
38 #include "gtkprivate.h"
39 #include "gtkintl.h"
40 #include "gtkalias.h"
41
42 #define RADIUS          3       /* radius of the control points */
43 #define MIN_DISTANCE    8       /* min distance between control points */
44
45 #define GRAPH_MASK      (GDK_EXPOSURE_MASK |            \
46                          GDK_POINTER_MOTION_MASK |      \
47                          GDK_POINTER_MOTION_HINT_MASK | \
48                          GDK_ENTER_NOTIFY_MASK |        \
49                          GDK_BUTTON_PRESS_MASK |        \
50                          GDK_BUTTON_RELEASE_MASK |      \
51                          GDK_BUTTON1_MOTION_MASK)
52
53 enum {
54   PROP_0,
55   PROP_CURVE_TYPE,
56   PROP_MIN_X,
57   PROP_MAX_X,
58   PROP_MIN_Y,
59   PROP_MAX_Y
60 };
61
62 static GtkDrawingAreaClass *parent_class = NULL;
63 static guint curve_type_changed_signal = 0;
64
65
66 /* forward declarations: */
67 static void gtk_curve_class_init   (GtkCurveClass *class);
68 static void gtk_curve_init         (GtkCurve      *curve);
69 static void gtk_curve_get_property  (GObject              *object,
70                                      guint                 param_id,
71                                      GValue               *value,
72                                      GParamSpec           *pspec);
73 static void gtk_curve_set_property  (GObject              *object,
74                                      guint                 param_id,
75                                      const GValue         *value,
76                                      GParamSpec           *pspec);
77 static void gtk_curve_finalize     (GObject       *object);
78 static gint gtk_curve_graph_events (GtkWidget     *widget, 
79                                     GdkEvent      *event, 
80                                     GtkCurve      *c);
81 static void gtk_curve_size_graph   (GtkCurve      *curve);
82
83 GType
84 gtk_curve_get_type (void)
85 {
86   static GType curve_type = 0;
87
88   if (!curve_type)
89     {
90       const GTypeInfo curve_info =
91       {
92         sizeof (GtkCurveClass),
93         NULL,           /* base_init */
94         NULL,           /* base_finalize */
95         (GClassInitFunc) gtk_curve_class_init,
96         NULL,           /* class_finalize */
97         NULL,           /* class_data */
98         sizeof (GtkCurve),
99         0,              /* n_preallocs */
100         (GInstanceInitFunc) gtk_curve_init,
101       };
102
103       curve_type = g_type_register_static (GTK_TYPE_DRAWING_AREA, I_("GtkCurve"),
104                                            &curve_info, 0);
105     }
106   return curve_type;
107 }
108
109 static void
110 gtk_curve_class_init (GtkCurveClass *class)
111 {
112   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
113   
114   parent_class = g_type_class_peek_parent (class);
115   
116   gobject_class->finalize = gtk_curve_finalize;
117
118   gobject_class->set_property = gtk_curve_set_property;
119   gobject_class->get_property = gtk_curve_get_property;
120   
121   g_object_class_install_property (gobject_class,
122                                    PROP_CURVE_TYPE,
123                                    g_param_spec_enum ("curve-type",
124                                                       P_("Curve type"),
125                                                       P_("Is this curve linear, spline interpolated, or free-form"),
126                                                       GTK_TYPE_CURVE_TYPE,
127                                                       GTK_CURVE_TYPE_SPLINE,
128                                                       GTK_PARAM_READWRITE));
129   g_object_class_install_property (gobject_class,
130                                    PROP_MIN_X,
131                                    g_param_spec_float ("min-x",
132                                                        P_("Minimum X"),
133                                                        P_("Minimum possible value for X"),
134                                                        -G_MAXFLOAT,
135                                                        G_MAXFLOAT,
136                                                        0.0,
137                                                        GTK_PARAM_READWRITE));
138   g_object_class_install_property (gobject_class,
139                                    PROP_MAX_X,
140                                    g_param_spec_float ("max-x",
141                                                        P_("Maximum X"),
142                                                        P_("Maximum possible X value"),
143                                                        -G_MAXFLOAT,
144                                                        G_MAXFLOAT,
145                                                        1.0,
146                                                        GTK_PARAM_READWRITE));
147   g_object_class_install_property (gobject_class,
148                                    PROP_MIN_Y,
149                                    g_param_spec_float ("min-y",
150                                                        P_("Minimum Y"),
151                                                        P_("Minimum possible value for Y"),
152                                                        -G_MAXFLOAT,
153                                                        G_MAXFLOAT,
154                                                        0.0,
155                                                        GTK_PARAM_READWRITE));  
156   g_object_class_install_property (gobject_class,
157                                    PROP_MAX_Y,
158                                    g_param_spec_float ("max-y",
159                                                        P_("Maximum Y"),
160                                                        P_("Maximum possible value for Y"),
161                                                        -G_MAXFLOAT,
162                                                        G_MAXFLOAT,
163                                                        1.0,
164                                                        GTK_PARAM_READWRITE));
165
166   curve_type_changed_signal =
167     g_signal_new (I_("curve-type-changed"),
168                    G_OBJECT_CLASS_TYPE (gobject_class),
169                    G_SIGNAL_RUN_FIRST,
170                    G_STRUCT_OFFSET (GtkCurveClass, curve_type_changed),
171                    NULL, NULL,
172                    _gtk_marshal_VOID__VOID,
173                    G_TYPE_NONE, 0);
174 }
175
176 static void
177 gtk_curve_init (GtkCurve *curve)
178 {
179   gint old_mask;
180
181   curve->cursor_type = GDK_TOP_LEFT_ARROW;
182   curve->pixmap = NULL;
183   curve->curve_type = GTK_CURVE_TYPE_SPLINE;
184   curve->height = 0;
185   curve->grab_point = -1;
186
187   curve->num_points = 0;
188   curve->point = NULL;
189
190   curve->num_ctlpoints = 0;
191   curve->ctlpoint = NULL;
192
193   curve->min_x = 0.0;
194   curve->max_x = 1.0;
195   curve->min_y = 0.0;
196   curve->max_y = 1.0;
197
198   old_mask = gtk_widget_get_events (GTK_WIDGET (curve));
199   gtk_widget_set_events (GTK_WIDGET (curve), old_mask | GRAPH_MASK);
200   g_signal_connect (curve, "event",
201                     G_CALLBACK (gtk_curve_graph_events), curve);
202   gtk_curve_size_graph (curve);
203 }
204
205 static void
206 gtk_curve_set_property (GObject              *object,
207                         guint                 prop_id,
208                         const GValue         *value,
209                         GParamSpec           *pspec)
210 {
211   GtkCurve *curve = GTK_CURVE (object);
212   
213   switch (prop_id)
214     {
215     case PROP_CURVE_TYPE:
216       gtk_curve_set_curve_type (curve, g_value_get_enum (value));
217       break;
218     case PROP_MIN_X:
219       gtk_curve_set_range (curve, g_value_get_float (value), curve->max_x,
220                            curve->min_y, curve->max_y);
221       break;
222     case PROP_MAX_X:
223       gtk_curve_set_range (curve, curve->min_x, g_value_get_float (value),
224                            curve->min_y, curve->max_y);
225       break;    
226     case PROP_MIN_Y:
227       gtk_curve_set_range (curve, curve->min_x, curve->max_x,
228                            g_value_get_float (value), curve->max_y);
229       break;
230     case PROP_MAX_Y:
231       gtk_curve_set_range (curve, curve->min_x, curve->max_x,
232                            curve->min_y, g_value_get_float (value));
233       break;
234     default:
235       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
236       break;
237     }
238 }
239
240 static void
241 gtk_curve_get_property (GObject              *object,
242                         guint                 prop_id,
243                         GValue               *value,
244                         GParamSpec           *pspec)
245 {
246   GtkCurve *curve = GTK_CURVE (object);
247
248   switch (prop_id)
249     {
250     case PROP_CURVE_TYPE:
251       g_value_set_enum (value, curve->curve_type);
252       break;
253     case PROP_MIN_X:
254       g_value_set_float (value, curve->min_x);
255       break;
256     case PROP_MAX_X:
257       g_value_set_float (value, curve->max_x);
258       break;
259     case PROP_MIN_Y:
260       g_value_set_float (value, curve->min_y);
261       break;
262     case PROP_MAX_Y:
263       g_value_set_float (value, curve->max_y);
264       break;
265     default:
266       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
267       break;
268     }
269 }
270
271 static int
272 project (gfloat value, gfloat min, gfloat max, int norm)
273 {
274   return (norm - 1) * ((value - min) / (max - min)) + 0.5;
275 }
276
277 static gfloat
278 unproject (gint value, gfloat min, gfloat max, int norm)
279 {
280   return value / (gfloat) (norm - 1) * (max - min) + min;
281 }
282
283 /* Solve the tridiagonal equation system that determines the second
284    derivatives for the interpolation points.  (Based on Numerical
285    Recipies 2nd Edition.) */
286 static void
287 spline_solve (int n, gfloat x[], gfloat y[], gfloat y2[])
288 {
289   gfloat p, sig, *u;
290   gint i, k;
291
292   u = g_malloc ((n - 1) * sizeof (u[0]));
293
294   y2[0] = u[0] = 0.0;   /* set lower boundary condition to "natural" */
295
296   for (i = 1; i < n - 1; ++i)
297     {
298       sig = (x[i] - x[i - 1]) / (x[i + 1] - x[i - 1]);
299       p = sig * y2[i - 1] + 2.0;
300       y2[i] = (sig - 1.0) / p;
301       u[i] = ((y[i + 1] - y[i])
302               / (x[i + 1] - x[i]) - (y[i] - y[i - 1]) / (x[i] - x[i - 1]));
303       u[i] = (6.0 * u[i] / (x[i + 1] - x[i - 1]) - sig * u[i - 1]) / p;
304     }
305
306   y2[n - 1] = 0.0;
307   for (k = n - 2; k >= 0; --k)
308     y2[k] = y2[k] * y2[k + 1] + u[k];
309
310   g_free (u);
311 }
312
313 static gfloat
314 spline_eval (int n, gfloat x[], gfloat y[], gfloat y2[], gfloat val)
315 {
316   gint k_lo, k_hi, k;
317   gfloat h, b, a;
318
319   /* do a binary search for the right interval: */
320   k_lo = 0; k_hi = n - 1;
321   while (k_hi - k_lo > 1)
322     {
323       k = (k_hi + k_lo) / 2;
324       if (x[k] > val)
325         k_hi = k;
326       else
327         k_lo = k;
328     }
329
330   h = x[k_hi] - x[k_lo];
331   g_assert (h > 0.0);
332
333   a = (x[k_hi] - val) / h;
334   b = (val - x[k_lo]) / h;
335   return a*y[k_lo] + b*y[k_hi] +
336     ((a*a*a - a)*y2[k_lo] + (b*b*b - b)*y2[k_hi]) * (h*h)/6.0;
337 }
338
339 static void
340 gtk_curve_interpolate (GtkCurve *c, gint width, gint height)
341 {
342   gfloat *vector;
343   int i;
344
345   vector = g_malloc (width * sizeof (vector[0]));
346
347   gtk_curve_get_vector (c, width, vector);
348
349   c->height = height;
350   if (c->num_points != width)
351     {
352       c->num_points = width;
353       g_free (c->point);
354       c->point = g_malloc (c->num_points * sizeof (c->point[0]));
355     }
356
357   for (i = 0; i < width; ++i)
358     {
359       c->point[i].x = RADIUS + i;
360       c->point[i].y = RADIUS + height
361         - project (vector[i], c->min_y, c->max_y, height);
362     }
363
364   g_free (vector);
365 }
366
367 static void
368 gtk_curve_draw (GtkCurve *c, gint width, gint height)
369 {
370   GtkStateType state;
371   GtkStyle *style;
372   gint i;
373
374   if (!c->pixmap)
375     return;
376
377   if (c->height != height || c->num_points != width)
378     gtk_curve_interpolate (c, width, height);
379
380   state = GTK_STATE_NORMAL;
381   if (!GTK_WIDGET_IS_SENSITIVE (GTK_WIDGET (c)))
382     state = GTK_STATE_INSENSITIVE;
383
384   style = GTK_WIDGET (c)->style;
385
386   /* clear the pixmap: */
387   gtk_paint_flat_box (style, c->pixmap, GTK_STATE_NORMAL, GTK_SHADOW_NONE,
388                       NULL, GTK_WIDGET (c), "curve_bg",
389                       0, 0, width + RADIUS * 2, height + RADIUS * 2);
390   /* draw the grid lines: (XXX make more meaningful) */
391   for (i = 0; i < 5; i++)
392     {
393       gdk_draw_line (c->pixmap, style->dark_gc[state],
394                      RADIUS, i * (height / 4.0) + RADIUS,
395                      width + RADIUS, i * (height / 4.0) + RADIUS);
396       gdk_draw_line (c->pixmap, style->dark_gc[state],
397                      i * (width / 4.0) + RADIUS, RADIUS,
398                      i * (width / 4.0) + RADIUS, height + RADIUS);
399     }
400
401   gdk_draw_points (c->pixmap, style->fg_gc[state], c->point, c->num_points);
402   if (c->curve_type != GTK_CURVE_TYPE_FREE)
403     for (i = 0; i < c->num_ctlpoints; ++i)
404       {
405         gint x, y;
406
407         if (c->ctlpoint[i][0] < c->min_x)
408           continue;
409
410         x = project (c->ctlpoint[i][0], c->min_x, c->max_x,
411                      width);
412         y = height -
413           project (c->ctlpoint[i][1], c->min_y, c->max_y,
414                    height);
415
416         /* draw a bullet: */
417         gdk_draw_arc (c->pixmap, style->fg_gc[state], TRUE, x, y,
418                       RADIUS * 2, RADIUS*2, 0, 360*64);
419       }
420   gdk_draw_drawable (GTK_WIDGET (c)->window, style->fg_gc[state], c->pixmap,
421                      0, 0, 0, 0, width + RADIUS * 2, height + RADIUS * 2);
422 }
423
424 static gint
425 gtk_curve_graph_events (GtkWidget *widget, GdkEvent *event, GtkCurve *c)
426 {
427   GdkCursorType new_type = c->cursor_type;
428   gint i, src, dst, leftbound, rightbound;
429   GdkEventMotion *mevent;
430   GtkWidget *w;
431   gint tx, ty;
432   gint cx, x, y, width, height;
433   gint closest_point = 0;
434   gfloat rx, ry, min_x;
435   guint distance;
436   gint x1, x2, y1, y2;
437   gint retval = FALSE;
438
439   w = GTK_WIDGET (c);
440   width = w->allocation.width - RADIUS * 2;
441   height = w->allocation.height - RADIUS * 2;
442
443   if ((width < 0) || (height < 0))
444     return FALSE;
445
446   /*  get the pointer position  */
447   gdk_window_get_pointer (w->window, &tx, &ty, NULL);
448   x = CLAMP ((tx - RADIUS), 0, width-1);
449   y = CLAMP ((ty - RADIUS), 0, height-1);
450
451   min_x = c->min_x;
452
453   distance = ~0U;
454   for (i = 0; i < c->num_ctlpoints; ++i)
455     {
456       cx = project (c->ctlpoint[i][0], min_x, c->max_x, width);
457       if ((guint) abs (x - cx) < distance)
458         {
459           distance = abs (x - cx);
460           closest_point = i;
461         }
462     }
463
464   switch (event->type)
465     {
466     case GDK_CONFIGURE:
467       if (c->pixmap)
468         g_object_unref (c->pixmap);
469       c->pixmap = NULL;
470       /* fall through */
471     case GDK_EXPOSE:
472       if (!c->pixmap)
473         c->pixmap = gdk_pixmap_new (w->window,
474                                     w->allocation.width,
475                                     w->allocation.height, -1);
476       gtk_curve_draw (c, width, height);
477       break;
478
479     case GDK_BUTTON_PRESS:
480       gtk_grab_add (widget);
481
482       new_type = GDK_TCROSS;
483
484       switch (c->curve_type)
485         {
486         case GTK_CURVE_TYPE_LINEAR:
487         case GTK_CURVE_TYPE_SPLINE:
488           if (distance > MIN_DISTANCE)
489             {
490               /* insert a new control point */
491               if (c->num_ctlpoints > 0)
492                 {
493                   cx = project (c->ctlpoint[closest_point][0], min_x,
494                                 c->max_x, width);
495                   if (x > cx)
496                     ++closest_point;
497                 }
498               ++c->num_ctlpoints;
499               c->ctlpoint =
500                 g_realloc (c->ctlpoint,
501                            c->num_ctlpoints * sizeof (*c->ctlpoint));
502               for (i = c->num_ctlpoints - 1; i > closest_point; --i)
503                 memcpy (c->ctlpoint + i, c->ctlpoint + i - 1,
504                         sizeof (*c->ctlpoint));
505             }
506           c->grab_point = closest_point;
507           c->ctlpoint[c->grab_point][0] =
508             unproject (x, min_x, c->max_x, width);
509           c->ctlpoint[c->grab_point][1] =
510             unproject (height - y, c->min_y, c->max_y, height);
511
512           gtk_curve_interpolate (c, width, height);
513           break;
514
515         case GTK_CURVE_TYPE_FREE:
516           c->point[x].x = RADIUS + x;
517           c->point[x].y = RADIUS + y;
518           c->grab_point = x;
519           c->last = y;
520           break;
521         }
522       gtk_curve_draw (c, width, height);
523       retval = TRUE;
524       break;
525
526     case GDK_BUTTON_RELEASE:
527       gtk_grab_remove (widget);
528
529       /* delete inactive points: */
530       if (c->curve_type != GTK_CURVE_TYPE_FREE)
531         {
532           for (src = dst = 0; src < c->num_ctlpoints; ++src)
533             {
534               if (c->ctlpoint[src][0] >= min_x)
535                 {
536                   memcpy (c->ctlpoint + dst, c->ctlpoint + src,
537                           sizeof (*c->ctlpoint));
538                   ++dst;
539                 }
540             }
541           if (dst < src)
542             {
543               c->num_ctlpoints -= (src - dst);
544               if (c->num_ctlpoints <= 0)
545                 {
546                   c->num_ctlpoints = 1;
547                   c->ctlpoint[0][0] = min_x;
548                   c->ctlpoint[0][1] = c->min_y;
549                   gtk_curve_interpolate (c, width, height);
550                   gtk_curve_draw (c, width, height);
551                 }
552               c->ctlpoint =
553                 g_realloc (c->ctlpoint,
554                            c->num_ctlpoints * sizeof (*c->ctlpoint));
555             }
556         }
557       new_type = GDK_FLEUR;
558       c->grab_point = -1;
559       retval = TRUE;
560       break;
561
562     case GDK_MOTION_NOTIFY:
563       mevent = (GdkEventMotion *) event;
564
565       switch (c->curve_type)
566         {
567         case GTK_CURVE_TYPE_LINEAR:
568         case GTK_CURVE_TYPE_SPLINE:
569           if (c->grab_point == -1)
570             {
571               /* if no point is grabbed...  */
572               if (distance <= MIN_DISTANCE)
573                 new_type = GDK_FLEUR;
574               else
575                 new_type = GDK_TCROSS;
576             }
577           else
578             {
579               /* drag the grabbed point  */
580               new_type = GDK_TCROSS;
581
582               leftbound = -MIN_DISTANCE;
583               if (c->grab_point > 0)
584                 leftbound = project (c->ctlpoint[c->grab_point - 1][0],
585                                      min_x, c->max_x, width);
586
587               rightbound = width + RADIUS * 2 + MIN_DISTANCE;
588               if (c->grab_point + 1 < c->num_ctlpoints)
589                 rightbound = project (c->ctlpoint[c->grab_point + 1][0],
590                                       min_x, c->max_x, width);
591
592               if (tx <= leftbound || tx >= rightbound
593                   || ty > height + RADIUS * 2 + MIN_DISTANCE
594                   || ty < -MIN_DISTANCE)
595                 c->ctlpoint[c->grab_point][0] = min_x - 1.0;
596               else
597                 {
598                   rx = unproject (x, min_x, c->max_x, width);
599                   ry = unproject (height - y, c->min_y, c->max_y, height);
600                   c->ctlpoint[c->grab_point][0] = rx;
601                   c->ctlpoint[c->grab_point][1] = ry;
602                 }
603               gtk_curve_interpolate (c, width, height);
604               gtk_curve_draw (c, width, height);
605             }
606           break;
607
608         case GTK_CURVE_TYPE_FREE:
609           if (c->grab_point != -1)
610             {
611               if (c->grab_point > x)
612                 {
613                   x1 = x;
614                   x2 = c->grab_point;
615                   y1 = y;
616                   y2 = c->last;
617                 }
618               else
619                 {
620                   x1 = c->grab_point;
621                   x2 = x;
622                   y1 = c->last;
623                   y2 = y;
624                 }
625
626               if (x2 != x1)
627                 for (i = x1; i <= x2; i++)
628                   {
629                     c->point[i].x = RADIUS + i;
630                     c->point[i].y = RADIUS +
631                       (y1 + ((y2 - y1) * (i - x1)) / (x2 - x1));
632                   }
633               else
634                 {
635                   c->point[x].x = RADIUS + x;
636                   c->point[x].y = RADIUS + y;
637                 }
638               c->grab_point = x;
639               c->last = y;
640               gtk_curve_draw (c, width, height);
641             }
642           if (mevent->state & GDK_BUTTON1_MASK)
643             new_type = GDK_TCROSS;
644           else
645             new_type = GDK_PENCIL;
646           break;
647         }
648       if (new_type != (GdkCursorType) c->cursor_type)
649         {
650           GdkCursor *cursor;
651
652           c->cursor_type = new_type;
653
654           cursor = gdk_cursor_new_for_display (gtk_widget_get_display (w),
655                                               c->cursor_type);
656           gdk_window_set_cursor (w->window, cursor);
657           gdk_cursor_unref (cursor);
658         }
659       retval = TRUE;
660       break;
661
662     default:
663       break;
664     }
665
666   return retval;
667 }
668
669 void
670 gtk_curve_set_curve_type (GtkCurve *c, GtkCurveType new_type)
671 {
672   gfloat rx, dx;
673   gint x, i;
674
675   if (new_type != c->curve_type)
676     {
677       gint width, height;
678
679       width  = GTK_WIDGET (c)->allocation.width - RADIUS * 2;
680       height = GTK_WIDGET (c)->allocation.height - RADIUS * 2;
681
682       if (new_type == GTK_CURVE_TYPE_FREE)
683         {
684           gtk_curve_interpolate (c, width, height);
685           c->curve_type = new_type;
686         }
687       else if (c->curve_type == GTK_CURVE_TYPE_FREE)
688         {
689           g_free (c->ctlpoint);
690           c->num_ctlpoints = 9;
691           c->ctlpoint = g_malloc (c->num_ctlpoints * sizeof (*c->ctlpoint));
692
693           rx = 0.0;
694           dx = (width - 1) / (gfloat) (c->num_ctlpoints - 1);
695
696           for (i = 0; i < c->num_ctlpoints; ++i, rx += dx)
697             {
698               x = (int) (rx + 0.5);
699               c->ctlpoint[i][0] =
700                 unproject (x, c->min_x, c->max_x, width);
701               c->ctlpoint[i][1] =
702                 unproject (RADIUS + height - c->point[x].y,
703                            c->min_y, c->max_y, height);
704             }
705           c->curve_type = new_type;
706           gtk_curve_interpolate (c, width, height);
707         }
708       else
709         {
710           c->curve_type = new_type;
711           gtk_curve_interpolate (c, width, height);
712         }
713       g_signal_emit (c, curve_type_changed_signal, 0);
714       g_object_notify (G_OBJECT (c), "curve-type");
715       gtk_curve_draw (c, width, height);
716     }
717 }
718
719 static void
720 gtk_curve_size_graph (GtkCurve *curve)
721 {
722   gint width, height;
723   gfloat aspect;
724   GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (curve)); 
725
726   width  = (curve->max_x - curve->min_x) + 1;
727   height = (curve->max_y - curve->min_y) + 1;
728   aspect = width / (gfloat) height;
729   if (width > gdk_screen_get_width (screen) / 4)
730     width  = gdk_screen_get_width (screen) / 4;
731   if (height > gdk_screen_get_height (screen) / 4)
732     height = gdk_screen_get_height (screen) / 4;
733
734   if (aspect < 1.0)
735     width  = height * aspect;
736   else
737     height = width / aspect;
738
739   gtk_widget_set_size_request (GTK_WIDGET (curve),
740                                width + RADIUS * 2,
741                                height + RADIUS * 2);
742 }
743
744 static void
745 gtk_curve_reset_vector (GtkCurve *curve)
746 {
747   g_free (curve->ctlpoint);
748
749   curve->num_ctlpoints = 2;
750   curve->ctlpoint = g_malloc (2 * sizeof (curve->ctlpoint[0]));
751   curve->ctlpoint[0][0] = curve->min_x;
752   curve->ctlpoint[0][1] = curve->min_y;
753   curve->ctlpoint[1][0] = curve->max_x;
754   curve->ctlpoint[1][1] = curve->max_y;
755
756   if (curve->pixmap)
757     {
758       gint width, height;
759
760       width = GTK_WIDGET (curve)->allocation.width - RADIUS * 2;
761       height = GTK_WIDGET (curve)->allocation.height - RADIUS * 2;
762
763       if (curve->curve_type == GTK_CURVE_TYPE_FREE)
764         {
765           curve->curve_type = GTK_CURVE_TYPE_LINEAR;
766           gtk_curve_interpolate (curve, width, height);
767           curve->curve_type = GTK_CURVE_TYPE_FREE;
768         }
769       else
770         gtk_curve_interpolate (curve, width, height);
771       gtk_curve_draw (curve, width, height);
772     }
773 }
774
775 void
776 gtk_curve_reset (GtkCurve *c)
777 {
778   GtkCurveType old_type;
779
780   old_type = c->curve_type;
781   c->curve_type = GTK_CURVE_TYPE_SPLINE;
782   gtk_curve_reset_vector (c);
783
784   if (old_type != GTK_CURVE_TYPE_SPLINE)
785     {
786        g_signal_emit (c, curve_type_changed_signal, 0);
787        g_object_notify (G_OBJECT (c), "curve-type");
788     }
789 }
790
791 void
792 gtk_curve_set_gamma (GtkCurve *c, gfloat gamma)
793 {
794   gfloat x, one_over_gamma, height;
795   GtkCurveType old_type;
796   gint i;
797
798   if (c->num_points < 2)
799     return;
800
801   old_type = c->curve_type;
802   c->curve_type = GTK_CURVE_TYPE_FREE;
803
804   if (gamma <= 0)
805     one_over_gamma = 1.0;
806   else
807     one_over_gamma = 1.0 / gamma;
808   height = c->height;
809   for (i = 0; i < c->num_points; ++i)
810     {
811       x = (gfloat) i / (c->num_points - 1);
812       c->point[i].x = RADIUS + i;
813       c->point[i].y =
814         RADIUS + (height * (1.0 - pow (x, one_over_gamma)) + 0.5);
815     }
816
817   if (old_type != GTK_CURVE_TYPE_FREE)
818     g_signal_emit (c, curve_type_changed_signal, 0);
819
820   gtk_curve_draw (c, c->num_points, c->height);
821 }
822
823 void
824 gtk_curve_set_range (GtkCurve *curve,
825                      gfloat    min_x,
826                      gfloat    max_x,
827                      gfloat    min_y,
828                      gfloat    max_y)
829 {
830   g_object_freeze_notify (G_OBJECT (curve));
831   if (curve->min_x != min_x) {
832      curve->min_x = min_x;
833      g_object_notify (G_OBJECT (curve), "min-x");
834   }
835   if (curve->max_x != max_x) {
836      curve->max_x = max_x;
837      g_object_notify (G_OBJECT (curve), "max-x");
838   }
839   if (curve->min_y != min_y) {
840      curve->min_y = min_y;
841      g_object_notify (G_OBJECT (curve), "min-y");
842   }
843   if (curve->max_y != max_y) {
844      curve->max_y = max_y;
845      g_object_notify (G_OBJECT (curve), "max-y");
846   }
847   g_object_thaw_notify (G_OBJECT (curve));
848
849   gtk_curve_size_graph (curve);
850   gtk_curve_reset_vector (curve);
851 }
852
853 void
854 gtk_curve_set_vector (GtkCurve *c, int veclen, gfloat vector[])
855 {
856   GtkCurveType old_type;
857   gfloat rx, dx, ry;
858   gint i, height;
859   GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (c));
860
861   old_type = c->curve_type;
862   c->curve_type = GTK_CURVE_TYPE_FREE;
863
864   if (c->point)
865     height = GTK_WIDGET (c)->allocation.height - RADIUS * 2;
866   else
867     {
868       height = (c->max_y - c->min_y);
869       if (height > gdk_screen_get_height (screen) / 4)
870         height = gdk_screen_get_height (screen) / 4;
871
872       c->height = height;
873       c->num_points = veclen;
874       c->point = g_malloc (c->num_points * sizeof (c->point[0]));
875     }
876   rx = 0;
877   dx = (veclen - 1.0) / (c->num_points - 1.0);
878
879   for (i = 0; i < c->num_points; ++i, rx += dx)
880     {
881       ry = vector[(int) (rx + 0.5)];
882       if (ry > c->max_y) ry = c->max_y;
883       if (ry < c->min_y) ry = c->min_y;
884       c->point[i].x = RADIUS + i;
885       c->point[i].y =
886         RADIUS + height - project (ry, c->min_y, c->max_y, height);
887     }
888   if (old_type != GTK_CURVE_TYPE_FREE)
889     {
890        g_signal_emit (c, curve_type_changed_signal, 0);
891        g_object_notify (G_OBJECT (c), "curve-type");
892     }
893
894   gtk_curve_draw (c, c->num_points, height);
895 }
896
897 void
898 gtk_curve_get_vector (GtkCurve *c, int veclen, gfloat vector[])
899 {
900   gfloat rx, ry, dx, dy, min_x, delta_x, *mem, *xv, *yv, *y2v, prev;
901   gint dst, i, x, next, num_active_ctlpoints = 0, first_active = -1;
902
903   min_x = c->min_x;
904
905   if (c->curve_type != GTK_CURVE_TYPE_FREE)
906     {
907       /* count active points: */
908       prev = min_x - 1.0;
909       for (i = num_active_ctlpoints = 0; i < c->num_ctlpoints; ++i)
910         if (c->ctlpoint[i][0] > prev)
911           {
912             if (first_active < 0)
913               first_active = i;
914             prev = c->ctlpoint[i][0];
915             ++num_active_ctlpoints;
916           }
917
918       /* handle degenerate case: */
919       if (num_active_ctlpoints < 2)
920         {
921           if (num_active_ctlpoints > 0)
922             ry = c->ctlpoint[first_active][1];
923           else
924             ry = c->min_y;
925           if (ry < c->min_y) ry = c->min_y;
926           if (ry > c->max_y) ry = c->max_y;
927           for (x = 0; x < veclen; ++x)
928             vector[x] = ry;
929           return;
930         }
931     }
932
933   switch (c->curve_type)
934     {
935     case GTK_CURVE_TYPE_SPLINE:
936       mem = g_malloc (3 * num_active_ctlpoints * sizeof (gfloat));
937       xv  = mem;
938       yv  = mem + num_active_ctlpoints;
939       y2v = mem + 2*num_active_ctlpoints;
940
941       prev = min_x - 1.0;
942       for (i = dst = 0; i < c->num_ctlpoints; ++i)
943         if (c->ctlpoint[i][0] > prev)
944           {
945             prev    = c->ctlpoint[i][0];
946             xv[dst] = c->ctlpoint[i][0];
947             yv[dst] = c->ctlpoint[i][1];
948             ++dst;
949           }
950
951       spline_solve (num_active_ctlpoints, xv, yv, y2v);
952
953       rx = min_x;
954       dx = (c->max_x - min_x) / (veclen - 1);
955       for (x = 0; x < veclen; ++x, rx += dx)
956         {
957           ry = spline_eval (num_active_ctlpoints, xv, yv, y2v, rx);
958           if (ry < c->min_y) ry = c->min_y;
959           if (ry > c->max_y) ry = c->max_y;
960           vector[x] = ry;
961         }
962
963       g_free (mem);
964       break;
965
966     case GTK_CURVE_TYPE_LINEAR:
967       dx = (c->max_x - min_x) / (veclen - 1);
968       rx = min_x;
969       ry = c->min_y;
970       dy = 0.0;
971       i  = first_active;
972       for (x = 0; x < veclen; ++x, rx += dx)
973         {
974           if (rx >= c->ctlpoint[i][0])
975             {
976               if (rx > c->ctlpoint[i][0])
977                 ry = c->min_y;
978               dy = 0.0;
979               next = i + 1;
980               while (next < c->num_ctlpoints
981                      && c->ctlpoint[next][0] <= c->ctlpoint[i][0])
982                 ++next;
983               if (next < c->num_ctlpoints)
984                 {
985                   delta_x = c->ctlpoint[next][0] - c->ctlpoint[i][0];
986                   dy = ((c->ctlpoint[next][1] - c->ctlpoint[i][1])
987                         / delta_x);
988                   dy *= dx;
989                   ry = c->ctlpoint[i][1];
990                   i = next;
991                 }
992             }
993           vector[x] = ry;
994           ry += dy;
995         }
996       break;
997
998     case GTK_CURVE_TYPE_FREE:
999       if (c->point)
1000         {
1001           rx = 0.0;
1002           dx = c->num_points / (double) veclen;
1003           for (x = 0; x < veclen; ++x, rx += dx)
1004             vector[x] = unproject (RADIUS + c->height - c->point[(int) rx].y,
1005                                    c->min_y, c->max_y,
1006                                    c->height);
1007         }
1008       else
1009         memset (vector, 0, veclen * sizeof (vector[0]));
1010       break;
1011     }
1012 }
1013
1014 GtkWidget*
1015 gtk_curve_new (void)
1016 {
1017   return g_object_new (GTK_TYPE_CURVE, NULL);
1018 }
1019
1020 static void
1021 gtk_curve_finalize (GObject *object)
1022 {
1023   GtkCurve *curve;
1024
1025   g_return_if_fail (GTK_IS_CURVE (object));
1026
1027   curve = GTK_CURVE (object);
1028   if (curve->pixmap)
1029     g_object_unref (curve->pixmap);
1030   g_free (curve->point);
1031   g_free (curve->ctlpoint);
1032
1033   G_OBJECT_CLASS (parent_class)->finalize (object);
1034 }
1035
1036 #define __GTK_CURVE_C__
1037 #include "gtkaliasdef.c"