]> Pileus Git - ~andy/gtk/blob - gtk/gtkcurve.c
Apply a cleanup patch by Kjartan Maraas (#341812)
[~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_LINEAR,
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       if (c->point)
354         g_free (c->point);
355       c->point = g_malloc (c->num_points * sizeof (c->point[0]));
356     }
357
358   for (i = 0; i < width; ++i)
359     {
360       c->point[i].x = RADIUS + i;
361       c->point[i].y = RADIUS + height
362         - project (vector[i], c->min_y, c->max_y, height);
363     }
364
365   g_free (vector);
366 }
367
368 static void
369 gtk_curve_draw (GtkCurve *c, gint width, gint height)
370 {
371   GtkStateType state;
372   GtkStyle *style;
373   gint i;
374
375   if (!c->pixmap)
376     return;
377
378   if (c->height != height || c->num_points != width)
379     gtk_curve_interpolate (c, width, height);
380
381   state = GTK_STATE_NORMAL;
382   if (!GTK_WIDGET_IS_SENSITIVE (GTK_WIDGET (c)))
383     state = GTK_STATE_INSENSITIVE;
384
385   style = GTK_WIDGET (c)->style;
386
387   /* clear the pixmap: */
388   gtk_paint_flat_box (style, c->pixmap, GTK_STATE_NORMAL, GTK_SHADOW_NONE,
389                       NULL, GTK_WIDGET (c), "curve_bg",
390                       0, 0, width + RADIUS * 2, height + RADIUS * 2);
391   /* draw the grid lines: (XXX make more meaningful) */
392   for (i = 0; i < 5; i++)
393     {
394       gdk_draw_line (c->pixmap, style->dark_gc[state],
395                      RADIUS, i * (height / 4.0) + RADIUS,
396                      width + RADIUS, i * (height / 4.0) + RADIUS);
397       gdk_draw_line (c->pixmap, style->dark_gc[state],
398                      i * (width / 4.0) + RADIUS, RADIUS,
399                      i * (width / 4.0) + RADIUS, height + RADIUS);
400     }
401
402   gdk_draw_points (c->pixmap, style->fg_gc[state], c->point, c->num_points);
403   if (c->curve_type != GTK_CURVE_TYPE_FREE)
404     for (i = 0; i < c->num_ctlpoints; ++i)
405       {
406         gint x, y;
407
408         if (c->ctlpoint[i][0] < c->min_x)
409           continue;
410
411         x = project (c->ctlpoint[i][0], c->min_x, c->max_x,
412                      width);
413         y = height -
414           project (c->ctlpoint[i][1], c->min_y, c->max_y,
415                    height);
416
417         /* draw a bullet: */
418         gdk_draw_arc (c->pixmap, style->fg_gc[state], TRUE, x, y,
419                       RADIUS * 2, RADIUS*2, 0, 360*64);
420       }
421   gdk_draw_drawable (GTK_WIDGET (c)->window, style->fg_gc[state], c->pixmap,
422                      0, 0, 0, 0, width + RADIUS * 2, height + RADIUS * 2);
423 }
424
425 static gint
426 gtk_curve_graph_events (GtkWidget *widget, GdkEvent *event, GtkCurve *c)
427 {
428   GdkCursorType new_type = c->cursor_type;
429   gint i, src, dst, leftbound, rightbound;
430   GdkEventMotion *mevent;
431   GtkWidget *w;
432   gint tx, ty;
433   gint cx, x, y, width, height;
434   gint closest_point = 0;
435   gfloat rx, ry, min_x;
436   guint distance;
437   gint x1, x2, y1, y2;
438   gint retval = FALSE;
439
440   w = GTK_WIDGET (c);
441   width = w->allocation.width - RADIUS * 2;
442   height = w->allocation.height - RADIUS * 2;
443
444   if ((width < 0) || (height < 0))
445     return FALSE;
446
447   /*  get the pointer position  */
448   gdk_window_get_pointer (w->window, &tx, &ty, NULL);
449   x = CLAMP ((tx - RADIUS), 0, width-1);
450   y = CLAMP ((ty - RADIUS), 0, height-1);
451
452   min_x = c->min_x;
453
454   distance = ~0U;
455   for (i = 0; i < c->num_ctlpoints; ++i)
456     {
457       cx = project (c->ctlpoint[i][0], min_x, c->max_x, width);
458       if ((guint) abs (x - cx) < distance)
459         {
460           distance = abs (x - cx);
461           closest_point = i;
462         }
463     }
464
465   switch (event->type)
466     {
467     case GDK_CONFIGURE:
468       if (c->pixmap)
469         g_object_unref (c->pixmap);
470       c->pixmap = NULL;
471       /* fall through */
472     case GDK_EXPOSE:
473       if (!c->pixmap)
474         c->pixmap = gdk_pixmap_new (w->window,
475                                     w->allocation.width,
476                                     w->allocation.height, -1);
477       gtk_curve_draw (c, width, height);
478       break;
479
480     case GDK_BUTTON_PRESS:
481       gtk_grab_add (widget);
482
483       new_type = GDK_TCROSS;
484
485       switch (c->curve_type)
486         {
487         case GTK_CURVE_TYPE_LINEAR:
488         case GTK_CURVE_TYPE_SPLINE:
489           if (distance > MIN_DISTANCE)
490             {
491               /* insert a new control point */
492               if (c->num_ctlpoints > 0)
493                 {
494                   cx = project (c->ctlpoint[closest_point][0], min_x,
495                                 c->max_x, width);
496                   if (x > cx)
497                     ++closest_point;
498                 }
499               ++c->num_ctlpoints;
500               c->ctlpoint =
501                 g_realloc (c->ctlpoint,
502                            c->num_ctlpoints * sizeof (*c->ctlpoint));
503               for (i = c->num_ctlpoints - 1; i > closest_point; --i)
504                 memcpy (c->ctlpoint + i, c->ctlpoint + i - 1,
505                         sizeof (*c->ctlpoint));
506             }
507           c->grab_point = closest_point;
508           c->ctlpoint[c->grab_point][0] =
509             unproject (x, min_x, c->max_x, width);
510           c->ctlpoint[c->grab_point][1] =
511             unproject (height - y, c->min_y, c->max_y, height);
512
513           gtk_curve_interpolate (c, width, height);
514           break;
515
516         case GTK_CURVE_TYPE_FREE:
517           c->point[x].x = RADIUS + x;
518           c->point[x].y = RADIUS + y;
519           c->grab_point = x;
520           c->last = y;
521           break;
522         }
523       gtk_curve_draw (c, width, height);
524       retval = TRUE;
525       break;
526
527     case GDK_BUTTON_RELEASE:
528       gtk_grab_remove (widget);
529
530       /* delete inactive points: */
531       if (c->curve_type != GTK_CURVE_TYPE_FREE)
532         {
533           for (src = dst = 0; src < c->num_ctlpoints; ++src)
534             {
535               if (c->ctlpoint[src][0] >= min_x)
536                 {
537                   memcpy (c->ctlpoint + dst, c->ctlpoint + src,
538                           sizeof (*c->ctlpoint));
539                   ++dst;
540                 }
541             }
542           if (dst < src)
543             {
544               c->num_ctlpoints -= (src - dst);
545               if (c->num_ctlpoints <= 0)
546                 {
547                   c->num_ctlpoints = 1;
548                   c->ctlpoint[0][0] = min_x;
549                   c->ctlpoint[0][1] = c->min_y;
550                   gtk_curve_interpolate (c, width, height);
551                   gtk_curve_draw (c, width, height);
552                 }
553               c->ctlpoint =
554                 g_realloc (c->ctlpoint,
555                            c->num_ctlpoints * sizeof (*c->ctlpoint));
556             }
557         }
558       new_type = GDK_FLEUR;
559       c->grab_point = -1;
560       retval = TRUE;
561       break;
562
563     case GDK_MOTION_NOTIFY:
564       mevent = (GdkEventMotion *) event;
565
566       switch (c->curve_type)
567         {
568         case GTK_CURVE_TYPE_LINEAR:
569         case GTK_CURVE_TYPE_SPLINE:
570           if (c->grab_point == -1)
571             {
572               /* if no point is grabbed...  */
573               if (distance <= MIN_DISTANCE)
574                 new_type = GDK_FLEUR;
575               else
576                 new_type = GDK_TCROSS;
577             }
578           else
579             {
580               /* drag the grabbed point  */
581               new_type = GDK_TCROSS;
582
583               leftbound = -MIN_DISTANCE;
584               if (c->grab_point > 0)
585                 leftbound = project (c->ctlpoint[c->grab_point - 1][0],
586                                      min_x, c->max_x, width);
587
588               rightbound = width + RADIUS * 2 + MIN_DISTANCE;
589               if (c->grab_point + 1 < c->num_ctlpoints)
590                 rightbound = project (c->ctlpoint[c->grab_point + 1][0],
591                                       min_x, c->max_x, width);
592
593               if (tx <= leftbound || tx >= rightbound
594                   || ty > height + RADIUS * 2 + MIN_DISTANCE
595                   || ty < -MIN_DISTANCE)
596                 c->ctlpoint[c->grab_point][0] = min_x - 1.0;
597               else
598                 {
599                   rx = unproject (x, min_x, c->max_x, width);
600                   ry = unproject (height - y, c->min_y, c->max_y, height);
601                   c->ctlpoint[c->grab_point][0] = rx;
602                   c->ctlpoint[c->grab_point][1] = ry;
603                 }
604               gtk_curve_interpolate (c, width, height);
605               gtk_curve_draw (c, width, height);
606             }
607           break;
608
609         case GTK_CURVE_TYPE_FREE:
610           if (c->grab_point != -1)
611             {
612               if (c->grab_point > x)
613                 {
614                   x1 = x;
615                   x2 = c->grab_point;
616                   y1 = y;
617                   y2 = c->last;
618                 }
619               else
620                 {
621                   x1 = c->grab_point;
622                   x2 = x;
623                   y1 = c->last;
624                   y2 = y;
625                 }
626
627               if (x2 != x1)
628                 for (i = x1; i <= x2; i++)
629                   {
630                     c->point[i].x = RADIUS + i;
631                     c->point[i].y = RADIUS +
632                       (y1 + ((y2 - y1) * (i - x1)) / (x2 - x1));
633                   }
634               else
635                 {
636                   c->point[x].x = RADIUS + x;
637                   c->point[x].y = RADIUS + y;
638                 }
639               c->grab_point = x;
640               c->last = y;
641               gtk_curve_draw (c, width, height);
642             }
643           if (mevent->state & GDK_BUTTON1_MASK)
644             new_type = GDK_TCROSS;
645           else
646             new_type = GDK_PENCIL;
647           break;
648         }
649       if (new_type != (GdkCursorType) c->cursor_type)
650         {
651           GdkCursor *cursor;
652
653           c->cursor_type = new_type;
654
655           cursor = gdk_cursor_new_for_display (gtk_widget_get_display (w),
656                                               c->cursor_type);
657           gdk_window_set_cursor (w->window, cursor);
658           gdk_cursor_unref (cursor);
659         }
660       retval = TRUE;
661       break;
662
663     default:
664       break;
665     }
666
667   return retval;
668 }
669
670 void
671 gtk_curve_set_curve_type (GtkCurve *c, GtkCurveType new_type)
672 {
673   gfloat rx, dx;
674   gint x, i;
675
676   if (new_type != c->curve_type)
677     {
678       gint width, height;
679
680       width  = GTK_WIDGET (c)->allocation.width - RADIUS * 2;
681       height = GTK_WIDGET (c)->allocation.height - RADIUS * 2;
682
683       if (new_type == GTK_CURVE_TYPE_FREE)
684         {
685           gtk_curve_interpolate (c, width, height);
686           c->curve_type = new_type;
687         }
688       else if (c->curve_type == GTK_CURVE_TYPE_FREE)
689         {
690           if (c->ctlpoint)
691             g_free (c->ctlpoint);
692           c->num_ctlpoints = 9;
693           c->ctlpoint = g_malloc (c->num_ctlpoints * sizeof (*c->ctlpoint));
694
695           rx = 0.0;
696           dx = (width - 1) / (gfloat) (c->num_ctlpoints - 1);
697
698           for (i = 0; i < c->num_ctlpoints; ++i, rx += dx)
699             {
700               x = (int) (rx + 0.5);
701               c->ctlpoint[i][0] =
702                 unproject (x, c->min_x, c->max_x, width);
703               c->ctlpoint[i][1] =
704                 unproject (RADIUS + height - c->point[x].y,
705                            c->min_y, c->max_y, height);
706             }
707           c->curve_type = new_type;
708           gtk_curve_interpolate (c, width, height);
709         }
710       else
711         {
712           c->curve_type = new_type;
713           gtk_curve_interpolate (c, width, height);
714         }
715       g_signal_emit (c, curve_type_changed_signal, 0);
716       g_object_notify (G_OBJECT (c), "curve-type");
717       gtk_curve_draw (c, width, height);
718     }
719 }
720
721 static void
722 gtk_curve_size_graph (GtkCurve *curve)
723 {
724   gint width, height;
725   gfloat aspect;
726   GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (curve)); 
727
728   width  = (curve->max_x - curve->min_x) + 1;
729   height = (curve->max_y - curve->min_y) + 1;
730   aspect = width / (gfloat) height;
731   if (width > gdk_screen_get_width (screen) / 4)
732     width  = gdk_screen_get_width (screen) / 4;
733   if (height > gdk_screen_get_height (screen) / 4)
734     height = gdk_screen_get_height (screen) / 4;
735
736   if (aspect < 1.0)
737     width  = height * aspect;
738   else
739     height = width / aspect;
740
741   gtk_widget_set_size_request (GTK_WIDGET (curve),
742                                width + RADIUS * 2,
743                                height + RADIUS * 2);
744 }
745
746 static void
747 gtk_curve_reset_vector (GtkCurve *curve)
748 {
749   if (curve->ctlpoint)
750     g_free (curve->ctlpoint);
751
752   curve->num_ctlpoints = 2;
753   curve->ctlpoint = g_malloc (2 * sizeof (curve->ctlpoint[0]));
754   curve->ctlpoint[0][0] = curve->min_x;
755   curve->ctlpoint[0][1] = curve->min_y;
756   curve->ctlpoint[1][0] = curve->max_x;
757   curve->ctlpoint[1][1] = curve->max_y;
758
759   if (curve->pixmap)
760     {
761       gint width, height;
762
763       width = GTK_WIDGET (curve)->allocation.width - RADIUS * 2;
764       height = GTK_WIDGET (curve)->allocation.height - RADIUS * 2;
765
766       if (curve->curve_type == GTK_CURVE_TYPE_FREE)
767         {
768           curve->curve_type = GTK_CURVE_TYPE_LINEAR;
769           gtk_curve_interpolate (curve, width, height);
770           curve->curve_type = GTK_CURVE_TYPE_FREE;
771         }
772       else
773         gtk_curve_interpolate (curve, width, height);
774       gtk_curve_draw (curve, width, height);
775     }
776 }
777
778 void
779 gtk_curve_reset (GtkCurve *c)
780 {
781   GtkCurveType old_type;
782
783   old_type = c->curve_type;
784   c->curve_type = GTK_CURVE_TYPE_SPLINE;
785   gtk_curve_reset_vector (c);
786
787   if (old_type != GTK_CURVE_TYPE_SPLINE)
788     {
789        g_signal_emit (c, curve_type_changed_signal, 0);
790        g_object_notify (G_OBJECT (c), "curve-type");
791     }
792 }
793
794 void
795 gtk_curve_set_gamma (GtkCurve *c, gfloat gamma)
796 {
797   gfloat x, one_over_gamma, height;
798   GtkCurveType old_type;
799   gint i;
800
801   if (c->num_points < 2)
802     return;
803
804   old_type = c->curve_type;
805   c->curve_type = GTK_CURVE_TYPE_FREE;
806
807   if (gamma <= 0)
808     one_over_gamma = 1.0;
809   else
810     one_over_gamma = 1.0 / gamma;
811   height = c->height;
812   for (i = 0; i < c->num_points; ++i)
813     {
814       x = (gfloat) i / (c->num_points - 1);
815       c->point[i].x = RADIUS + i;
816       c->point[i].y =
817         RADIUS + (height * (1.0 - pow (x, one_over_gamma)) + 0.5);
818     }
819
820   if (old_type != GTK_CURVE_TYPE_FREE)
821     g_signal_emit (c, curve_type_changed_signal, 0);
822
823   gtk_curve_draw (c, c->num_points, c->height);
824 }
825
826 void
827 gtk_curve_set_range (GtkCurve *curve,
828                      gfloat    min_x,
829                      gfloat    max_x,
830                      gfloat    min_y,
831                      gfloat    max_y)
832 {
833   g_object_freeze_notify (G_OBJECT (curve));
834   if (curve->min_x != min_x) {
835      curve->min_x = min_x;
836      g_object_notify (G_OBJECT (curve), "min-x");
837   }
838   if (curve->max_x != max_x) {
839      curve->max_x = max_x;
840      g_object_notify (G_OBJECT (curve), "max-x");
841   }
842   if (curve->min_y != min_y) {
843      curve->min_y = min_y;
844      g_object_notify (G_OBJECT (curve), "min-y");
845   }
846   if (curve->max_y != max_y) {
847      curve->max_y = max_y;
848      g_object_notify (G_OBJECT (curve), "max-y");
849   }
850   g_object_thaw_notify (G_OBJECT (curve));
851
852   gtk_curve_size_graph (curve);
853   gtk_curve_reset_vector (curve);
854 }
855
856 void
857 gtk_curve_set_vector (GtkCurve *c, int veclen, gfloat vector[])
858 {
859   GtkCurveType old_type;
860   gfloat rx, dx, ry;
861   gint i, height;
862   GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (c));
863
864   old_type = c->curve_type;
865   c->curve_type = GTK_CURVE_TYPE_FREE;
866
867   if (c->point)
868     height = GTK_WIDGET (c)->allocation.height - RADIUS * 2;
869   else
870     {
871       height = (c->max_y - c->min_y);
872       if (height > gdk_screen_get_height (screen) / 4)
873         height = gdk_screen_get_height (screen) / 4;
874
875       c->height = height;
876       c->num_points = veclen;
877       c->point = g_malloc (c->num_points * sizeof (c->point[0]));
878     }
879   rx = 0;
880   dx = (veclen - 1.0) / (c->num_points - 1.0);
881
882   for (i = 0; i < c->num_points; ++i, rx += dx)
883     {
884       ry = vector[(int) (rx + 0.5)];
885       if (ry > c->max_y) ry = c->max_y;
886       if (ry < c->min_y) ry = c->min_y;
887       c->point[i].x = RADIUS + i;
888       c->point[i].y =
889         RADIUS + height - project (ry, c->min_y, c->max_y, height);
890     }
891   if (old_type != GTK_CURVE_TYPE_FREE)
892     {
893        g_signal_emit (c, curve_type_changed_signal, 0);
894        g_object_notify (G_OBJECT (c), "curve-type");
895     }
896
897   gtk_curve_draw (c, c->num_points, height);
898 }
899
900 void
901 gtk_curve_get_vector (GtkCurve *c, int veclen, gfloat vector[])
902 {
903   gfloat rx, ry, dx, dy, min_x, delta_x, *mem, *xv, *yv, *y2v, prev;
904   gint dst, i, x, next, num_active_ctlpoints = 0, first_active = -1;
905
906   min_x = c->min_x;
907
908   if (c->curve_type != GTK_CURVE_TYPE_FREE)
909     {
910       /* count active points: */
911       prev = min_x - 1.0;
912       for (i = num_active_ctlpoints = 0; i < c->num_ctlpoints; ++i)
913         if (c->ctlpoint[i][0] > prev)
914           {
915             if (first_active < 0)
916               first_active = i;
917             prev = c->ctlpoint[i][0];
918             ++num_active_ctlpoints;
919           }
920
921       /* handle degenerate case: */
922       if (num_active_ctlpoints < 2)
923         {
924           if (num_active_ctlpoints > 0)
925             ry = c->ctlpoint[first_active][1];
926           else
927             ry = c->min_y;
928           if (ry < c->min_y) ry = c->min_y;
929           if (ry > c->max_y) ry = c->max_y;
930           for (x = 0; x < veclen; ++x)
931             vector[x] = ry;
932           return;
933         }
934     }
935
936   switch (c->curve_type)
937     {
938     case GTK_CURVE_TYPE_SPLINE:
939       mem = g_malloc (3 * num_active_ctlpoints * sizeof (gfloat));
940       xv  = mem;
941       yv  = mem + num_active_ctlpoints;
942       y2v = mem + 2*num_active_ctlpoints;
943
944       prev = min_x - 1.0;
945       for (i = dst = 0; i < c->num_ctlpoints; ++i)
946         if (c->ctlpoint[i][0] > prev)
947           {
948             prev    = c->ctlpoint[i][0];
949             xv[dst] = c->ctlpoint[i][0];
950             yv[dst] = c->ctlpoint[i][1];
951             ++dst;
952           }
953
954       spline_solve (num_active_ctlpoints, xv, yv, y2v);
955
956       rx = min_x;
957       dx = (c->max_x - min_x) / (veclen - 1);
958       for (x = 0; x < veclen; ++x, rx += dx)
959         {
960           ry = spline_eval (num_active_ctlpoints, xv, yv, y2v, rx);
961           if (ry < c->min_y) ry = c->min_y;
962           if (ry > c->max_y) ry = c->max_y;
963           vector[x] = ry;
964         }
965
966       g_free (mem);
967       break;
968
969     case GTK_CURVE_TYPE_LINEAR:
970       dx = (c->max_x - min_x) / (veclen - 1);
971       rx = min_x;
972       ry = c->min_y;
973       dy = 0.0;
974       i  = first_active;
975       for (x = 0; x < veclen; ++x, rx += dx)
976         {
977           if (rx >= c->ctlpoint[i][0])
978             {
979               if (rx > c->ctlpoint[i][0])
980                 ry = c->min_y;
981               dy = 0.0;
982               next = i + 1;
983               while (next < c->num_ctlpoints
984                      && c->ctlpoint[next][0] <= c->ctlpoint[i][0])
985                 ++next;
986               if (next < c->num_ctlpoints)
987                 {
988                   delta_x = c->ctlpoint[next][0] - c->ctlpoint[i][0];
989                   dy = ((c->ctlpoint[next][1] - c->ctlpoint[i][1])
990                         / delta_x);
991                   dy *= dx;
992                   ry = c->ctlpoint[i][1];
993                   i = next;
994                 }
995             }
996           vector[x] = ry;
997           ry += dy;
998         }
999       break;
1000
1001     case GTK_CURVE_TYPE_FREE:
1002       if (c->point)
1003         {
1004           rx = 0.0;
1005           dx = c->num_points / (double) veclen;
1006           for (x = 0; x < veclen; ++x, rx += dx)
1007             vector[x] = unproject (RADIUS + c->height - c->point[(int) rx].y,
1008                                    c->min_y, c->max_y,
1009                                    c->height);
1010         }
1011       else
1012         memset (vector, 0, veclen * sizeof (vector[0]));
1013       break;
1014     }
1015 }
1016
1017 GtkWidget*
1018 gtk_curve_new (void)
1019 {
1020   return g_object_new (GTK_TYPE_CURVE, NULL);
1021 }
1022
1023 static void
1024 gtk_curve_finalize (GObject *object)
1025 {
1026   GtkCurve *curve;
1027
1028   g_return_if_fail (GTK_IS_CURVE (object));
1029
1030   curve = GTK_CURVE (object);
1031   if (curve->pixmap)
1032     g_object_unref (curve->pixmap);
1033   if (curve->point)
1034     g_free (curve->point);
1035   if (curve->ctlpoint)
1036     g_free (curve->ctlpoint);
1037
1038   G_OBJECT_CLASS (parent_class)->finalize (object);
1039 }
1040
1041 #define __GTK_CURVE_C__
1042 #include "gtkaliasdef.c"