]> git.tdb.fi Git - ext/subsurface.git/blob - profile.c
Tweak plot scaling a bit
[ext/subsurface.git] / profile.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include <string.h>
5 #include <time.h>
6
7 #include "dive.h"
8 #include "display.h"
9 #include "divelist.h"
10
11 int selected_dive = 0;
12
13 /* Plot info with smoothing and one-, two- and three-minute minimums and maximums */
14 struct plot_info {
15         int nr;
16         int maxtime;
17         int meandepth, maxdepth;
18         int minpressure, maxpressure;
19         int mintemp, maxtemp;
20         struct plot_data {
21                 int sec;
22                 int pressure, temperature;
23                 /* Depth info */
24                 int val;
25                 int smoothed;
26                 struct plot_data *min[3];
27                 struct plot_data *max[3];
28                 int avg[3];
29         } entry[];
30 };
31 #define plot_info_size(nr) (sizeof(struct plot_info) + (nr)*sizeof(struct plot_data))
32
33 /* Scale to 0,0 -> maxx,maxy */
34 #define SCALEX(gc,x)  (((x)-gc->leftx)/(gc->rightx-gc->leftx)*gc->maxx)
35 #define SCALEY(gc,y)  (((y)-gc->topy)/(gc->bottomy-gc->topy)*gc->maxy)
36 #define SCALE(gc,x,y) SCALEX(gc,x),SCALEY(gc,y)
37
38 static void move_to(struct graphics_context *gc, double x, double y)
39 {
40         cairo_move_to(gc->cr, SCALE(gc, x, y));
41 }
42
43 static void line_to(struct graphics_context *gc, double x, double y)
44 {
45         cairo_line_to(gc->cr, SCALE(gc, x, y));
46 }
47
48 static void set_source_rgba(struct graphics_context *gc, double r, double g, double b, double a)
49 {
50         if (gc->printer) {
51                 /* Black is white and white is black */
52                 double sum = r+g+b;
53                 if (sum > 2)
54                         r = g = b = 0;
55                 else if (sum < 1)
56                         r = g = b = 1;
57         }
58         cairo_set_source_rgba(gc->cr, r, g, b, a);
59 }
60
61 static void set_source_rgb(struct graphics_context *gc, double r, double g, double b)
62 {
63         set_source_rgba(gc, r, g, b, 1);
64 }
65
66 #define ROUND_UP(x,y) ((((x)+(y)-1)/(y))*(y))
67
68 /*
69  * When showing dive profiles, we scale things to the
70  * current dive. However, we don't scale past less than
71  * 30 minutes or 90 ft, just so that small dives show
72  * up as such.
73  */
74 static int get_maxtime(struct plot_info *pi)
75 {
76         int seconds = pi->maxtime;
77         /* min 30 minutes, rounded up to 5 minutes, with at least 2.5 minutes to spare */
78         return MAX(30*60, ROUND_UP(seconds+150, 60*5));
79 }
80
81 static int get_maxdepth(struct plot_info *pi)
82 {
83         unsigned mm = pi->maxdepth;
84         /* Minimum 30m, rounded up to 10m, with at least 3m to spare */
85         return MAX(30000, ROUND_UP(mm+3000, 10000));
86 }
87
88 typedef struct {
89         int size;
90         double r,g,b;
91         double hpos, vpos;
92 } text_render_options_t;
93
94 #define RIGHT (-1.0)
95 #define CENTER (-0.5)
96 #define LEFT (0.0)
97
98 #define TOP (1)
99 #define MIDDLE (0)
100 #define BOTTOM (-1)
101
102 static void plot_text(struct graphics_context *gc, const text_render_options_t *tro,
103                       double x, double y, const char *fmt, ...)
104 {
105         cairo_t *cr = gc->cr;
106         cairo_font_extents_t fe;
107         cairo_text_extents_t extents;
108         double dx, dy;
109         char buffer[80];
110         va_list args;
111
112         va_start(args, fmt);
113         vsnprintf(buffer, sizeof(buffer), fmt, args);
114         va_end(args);
115
116         cairo_set_font_size(cr, tro->size);
117         cairo_font_extents(cr, &fe);
118         cairo_text_extents(cr, buffer, &extents);
119         dx = tro->hpos * extents.width + extents.x_bearing;
120         dy = tro->vpos * extents.height + fe.descent;
121
122         move_to(gc, x, y);
123         cairo_rel_move_to(cr, dx, dy);
124
125         cairo_text_path(cr, buffer);
126         set_source_rgb(gc, 0, 0, 0);
127         cairo_stroke(cr);
128
129         move_to(gc, x, y);
130         cairo_rel_move_to(cr, dx, dy);
131
132         set_source_rgb(gc, tro->r, tro->g, tro->b);
133         cairo_show_text(cr, buffer);
134 }
135
136 static void render_depth_sample(struct graphics_context *gc, struct plot_data *entry, const text_render_options_t *tro)
137 {
138         int sec = entry->sec;
139         depth_t depth = { entry->val };
140         const char *fmt;
141         double d;
142
143         switch (output_units.length) {
144         case METERS:
145                 d = depth.mm / 1000.0;
146                 fmt = "%.1f";
147                 break;
148         case FEET:
149                 d = to_feet(depth);
150                 fmt = "%.0f";
151                 break;
152         }
153         plot_text(gc, tro, sec, depth.mm, fmt, d);
154 }
155
156 static void plot_text_samples(struct graphics_context *gc, struct plot_info *pi)
157 {
158         static const text_render_options_t deep = {14, 1.0, 0.2, 0.2, CENTER, TOP};
159         static const text_render_options_t shallow = {14, 1.0, 0.2, 0.2, CENTER, BOTTOM};
160         int i;
161
162         for (i = 0; i < pi->nr; i++) {
163                 struct plot_data *entry = pi->entry + i;
164
165                 if (entry->val < 2000)
166                         continue;
167
168                 if (entry == entry->max[2])
169                         render_depth_sample(gc, entry, &deep);
170
171                 if (entry == entry->min[2])
172                         render_depth_sample(gc, entry, &shallow);
173         }
174 }
175
176 static void plot_depth_text(struct graphics_context *gc, struct plot_info *pi)
177 {
178         int maxtime, maxdepth;
179
180         /* Get plot scaling limits */
181         maxtime = get_maxtime(pi);
182         maxdepth = get_maxdepth(pi);
183
184         gc->leftx = 0; gc->rightx = maxtime;
185         gc->topy = 0; gc->bottomy = maxdepth;
186
187         plot_text_samples(gc, pi);
188 }
189
190 static void plot_smoothed_profile(struct graphics_context *gc, struct plot_info *pi)
191 {
192         int i;
193         struct plot_data *entry = pi->entry;
194
195         cairo_set_source_rgba(gc->cr, 1, 0.2, 0.2, 0.20);
196         move_to(gc, entry->sec, entry->smoothed);
197         for (i = 1; i < pi->nr; i++) {
198                 entry++;
199                 line_to(gc, entry->sec, entry->smoothed);
200         }
201         cairo_stroke(gc->cr);
202 }
203
204 static void plot_minmax_profile_minute(struct graphics_context *gc, struct plot_info *pi,
205                                 int index, double a)
206 {
207         int i;
208         struct plot_data *entry = pi->entry;
209
210         cairo_set_source_rgba(gc->cr, 1, 0.2, 1, a);
211         move_to(gc, entry->sec, entry->min[index]->val);
212         for (i = 1; i < pi->nr; i++) {
213                 entry++;
214                 line_to(gc, entry->sec, entry->min[index]->val);
215         }
216         for (i = 1; i < pi->nr; i++) {
217                 line_to(gc, entry->sec, entry->max[index]->val);
218                 entry--;
219         }
220         cairo_close_path(gc->cr);
221         cairo_fill(gc->cr);
222 }
223
224 static void plot_minmax_profile(struct graphics_context *gc, struct plot_info *pi)
225 {
226         if (gc->printer)
227                 return;
228         plot_minmax_profile_minute(gc, pi, 2, 0.1);
229         plot_minmax_profile_minute(gc, pi, 1, 0.1);
230         plot_minmax_profile_minute(gc, pi, 0, 0.1);
231 }
232
233 static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi)
234 {
235         int i;
236         cairo_t *cr = gc->cr;
237         int begins, sec, depth;
238         struct plot_data *entry;
239         int maxtime, maxdepth, marker;
240
241         /* Get plot scaling limits */
242         maxtime = get_maxtime(pi);
243         maxdepth = get_maxdepth(pi);
244
245         /* Time markers: every 5 min */
246         gc->leftx = 0; gc->rightx = maxtime;
247         gc->topy = 0; gc->bottomy = 1.0;
248         for (i = 5*60; i < maxtime; i += 5*60) {
249                 move_to(gc, i, 0);
250                 line_to(gc, i, 1);
251         }
252
253         /* Depth markers: every 30 ft or 10 m*/
254         gc->leftx = 0; gc->rightx = 1.0;
255         gc->topy = 0; gc->bottomy = maxdepth;
256         switch (output_units.length) {
257         case METERS: marker = 10000; break;
258         case FEET: marker = 9144; break;        /* 30 ft */
259         }
260
261         set_source_rgba(gc, 1, 1, 1, 0.5);
262         for (i = marker; i < maxdepth; i += marker) {
263                 move_to(gc, 0, i);
264                 line_to(gc, 1, i);
265         }
266         cairo_stroke(cr);
267
268         /* Show mean depth */
269         set_source_rgba(gc, 1, 0.2, 0.2, 0.40);
270         move_to(gc, 0, pi->meandepth);
271         line_to(gc, 1, pi->meandepth);
272         cairo_stroke(cr);
273
274         gc->leftx = 0; gc->rightx = maxtime;
275
276         plot_smoothed_profile(gc, pi);
277         plot_minmax_profile(gc, pi);
278
279         entry = pi->entry;
280         set_source_rgba(gc, 1, 0.2, 0.2, 0.80);
281         begins = entry->sec;
282         move_to(gc, entry->sec, entry->val);
283         for (i = 1; i < pi->nr; i++) {
284                 entry++;
285                 sec = entry->sec;
286                 if (sec <= maxtime) {
287                         depth = entry->val;
288                         line_to(gc, sec, depth);
289                 }
290         }
291         gc->topy = 0; gc->bottomy = 1.0;
292         line_to(gc, MIN(sec,maxtime), 0);
293         line_to(gc, begins, 0);
294         cairo_close_path(cr);
295         set_source_rgba(gc, 1, 0.2, 0.2, 0.20);
296         cairo_fill_preserve(cr);
297         set_source_rgba(gc, 1, 0.2, 0.2, 0.80);
298         cairo_stroke(cr);
299 }
300
301 static int setup_temperature_limits(struct graphics_context *gc, struct plot_info *pi)
302 {
303         int maxtime, mintemp, maxtemp;
304
305         /* Get plot scaling limits */
306         maxtime = get_maxtime(pi);
307         mintemp = pi->mintemp;
308         maxtemp = pi->maxtemp;
309
310         gc->leftx = 0; gc->rightx = maxtime;
311         /* Show temperatures in roughly the lower third */
312         gc->topy = maxtemp + (maxtemp - mintemp)*2;
313         gc->bottomy = mintemp - (maxtemp - mintemp)/2;
314
315         return maxtemp > mintemp;
316 }
317
318 static void plot_single_temp_text(struct graphics_context *gc, int sec, int mkelvin)
319 {
320         int deg;
321         const char *unit;
322         static const text_render_options_t tro = {12, 0.2, 0.2, 1.0, LEFT, TOP};
323         temperature_t temperature = { mkelvin };
324
325         if (output_units.temperature == FAHRENHEIT) {
326                 deg = to_F(temperature);
327                 unit = "F";
328         } else {
329                 deg = to_C(temperature);
330                 unit = "C";
331         }
332         plot_text(gc, &tro, sec, temperature.mkelvin, "%d %s", deg, unit);
333 }
334
335 static void plot_temperature_text(struct graphics_context *gc, struct plot_info *pi)
336 {
337         int i;
338         int last = 0, sec = 0;
339         int last_temperature = 0, last_printed_temp = 0;
340
341         if (!setup_temperature_limits(gc, pi))
342                 return;
343
344         for (i = 0; i < pi->nr; i++) {
345                 struct plot_data *entry = pi->entry+i;
346                 int mkelvin = entry->temperature;
347
348                 if (!mkelvin)
349                         continue;
350                 last_temperature = mkelvin;
351                 sec = entry->sec;
352                 if (sec < last + 300)
353                         continue;
354                 last = sec;
355                 plot_single_temp_text(gc,sec,mkelvin);
356                 last_printed_temp = mkelvin;
357         }
358         /* it would be nice to print the end temperature, if it's different */
359         if (abs(last_temperature - last_printed_temp) > 500)
360                 plot_single_temp_text(gc, sec, last_temperature);
361 }
362
363 static void plot_temperature_profile(struct graphics_context *gc, struct plot_info *pi)
364 {
365         int i;
366         cairo_t *cr = gc->cr;
367         int last = 0;
368
369         if (!setup_temperature_limits(gc, pi))
370                 return;
371
372         set_source_rgba(gc, 0.2, 0.2, 1.0, 0.8);
373         for (i = 0; i < pi->nr; i++) {
374                 struct plot_data *entry = pi->entry + i;
375                 int mkelvin = entry->temperature;
376                 int sec = entry->sec;
377                 if (!mkelvin) {
378                         if (!last)
379                                 continue;
380                         mkelvin = last;
381                 }
382                 if (last)
383                         line_to(gc, sec, mkelvin);
384                 else
385                         move_to(gc, sec, mkelvin);
386                 last = mkelvin;
387         }
388         cairo_stroke(cr);
389 }
390
391 /* gets both the actual start and end pressure as well as the scaling factors */
392 static int get_cylinder_pressure_range(struct graphics_context *gc, struct plot_info *pi)
393 {
394         gc->leftx = 0;
395         gc->rightx = get_maxtime(pi);
396
397         gc->topy = 0; gc->bottomy = pi->maxpressure * 1.5;
398         return pi->maxpressure != 0;
399 }
400
401 static void plot_cylinder_pressure(struct graphics_context *gc, struct plot_info *pi)
402 {
403         int i;
404
405         if (!get_cylinder_pressure_range(gc, pi))
406                 return;
407
408         cairo_set_source_rgba(gc->cr, 0.2, 1.0, 0.2, 0.80);
409
410         move_to(gc, 0, pi->maxpressure);
411         for (i = 1; i < pi->nr; i++) {
412                 int mbar;
413                 struct plot_data *entry = pi->entry + i;
414
415                 mbar = entry->pressure;
416                 if (!mbar)
417                         continue;
418                 line_to(gc, entry->sec, mbar);
419         }
420         line_to(gc, pi->maxtime, pi->minpressure);
421         cairo_stroke(gc->cr);
422 }
423
424 /*
425  * Return air usage (in liters).
426  */
427 static double calculate_airuse(struct dive *dive)
428 {
429         double airuse = 0;
430         int i;
431
432         for (i = 0; i < MAX_CYLINDERS; i++) {
433                 cylinder_t *cyl = dive->cylinder + i;
434                 int size = cyl->type.size.mliter;
435                 double kilo_atm;
436
437                 if (!size)
438                         continue;
439
440                 kilo_atm = (cyl->start.mbar - cyl->end.mbar) / 1013250.0;
441
442                 /* Liters of air at 1 atm == milliliters at 1k atm*/
443                 airuse += kilo_atm * size;
444         }
445         return airuse;
446 }
447
448 static void plot_info(struct dive *dive, struct graphics_context *gc)
449 {
450         text_render_options_t tro = {10, 0.2, 1.0, 0.2, RIGHT, BOTTOM};
451         const double liters_per_cuft = 28.317;
452         const char *unit, *desc;
453         double airuse;
454
455         airuse = calculate_airuse(dive);
456         if (!airuse)
457                 return;
458
459         /* I really need to start addign some unit setting thing */
460         switch (output_units.volume) {
461         case LITER:
462                 unit = "l";
463                 break;
464         case CUFT:
465                 unit = "cuft";
466                 airuse /= liters_per_cuft;
467                 break;
468         }
469         tro.vpos = -1.0;
470         plot_text(gc, &tro, 0.98, 0.98, "vol: %4.2f %s", airuse, unit);
471
472         tro.vpos = -2.2;
473         if (dive->duration.seconds) {
474                 double pressure = 1 + (dive->meandepth.mm / 10000.0);
475                 double sac = airuse / pressure * 60 / dive->duration.seconds;
476                 plot_text(gc, &tro, 0.98, 0.98, "SAC: %4.2f %s/min", sac, unit);
477         }
478
479         tro.vpos = -3.4;
480         desc = dive->cylinder[0].type.description;
481         if (desc || dive->cylinder[0].gasmix.o2.permille) {
482                 int o2 = dive->cylinder[0].gasmix.o2.permille / 10;
483                 if (!desc)
484                         desc = "";
485                 if (!o2)
486                         o2 = 21;
487                 plot_text(gc, &tro, 0.98, 0.98, "%s (%d%%)", desc, o2);
488         }
489 }
490
491 static int mbar_to_PSI(int mbar)
492 {
493         pressure_t p = {mbar};
494         return to_PSI(p);
495 }
496
497 static void plot_cylinder_pressure_text(struct graphics_context *gc, struct plot_info *pi)
498 {
499         if (get_cylinder_pressure_range(gc, pi)) {
500                 int start, end;
501                 const char *unit = "bar";
502
503                 switch (output_units.pressure) {
504                 case PASCAL:
505                         start = pi->maxpressure * 100;
506                         end = pi->minpressure * 100;
507                         unit = "pascal";
508                         break;
509                 case BAR:
510                         start = (pi->maxpressure + 500) / 1000;
511                         end = (pi->minpressure + 500) / 1000;
512                         unit = "bar";
513                         break;
514                 case PSI:
515                         start = mbar_to_PSI(pi->maxpressure);
516                         end = mbar_to_PSI(pi->minpressure);
517                         unit = "psi";
518                         break;
519                 }
520
521                 text_render_options_t tro = {10, 0.2, 1.0, 0.2, LEFT, TOP};
522                 plot_text(gc, &tro, 0, pi->maxpressure, "%d %s", start, unit);
523                 plot_text(gc, &tro, pi->maxtime, pi->minpressure,
524                           "%d %s", end, unit);
525         }
526 }
527
528 static void analyze_plot_info_minmax_minute(struct plot_data *entry, struct plot_data *first, struct plot_data *last, int index)
529 {
530         struct plot_data *p = entry;
531         int time = entry->sec;
532         int seconds = 90*(index+1);
533         struct plot_data *min, *max;
534         int avg, nr;
535
536         /* Go back 'seconds' in time */
537         while (p > first) {
538                 if (p[-1].sec < time - seconds)
539                         break;
540                 p--;
541         }
542
543         /* Then go forward until we hit an entry past the time */
544         min = max = p;
545         avg = p->val;
546         nr = 1;
547         while (++p < last) {
548                 int val = p->val;
549                 if (p->sec > time + seconds)
550                         break;
551                 avg += val;
552                 nr ++;
553                 if (val < min->val)
554                         min = p;
555                 if (val > max->val)
556                         max = p;
557         }
558         entry->min[index] = min;
559         entry->max[index] = max;
560         entry->avg[index] = (avg + nr/2) / nr;
561 }
562
563 static void analyze_plot_info_minmax(struct plot_data *entry, struct plot_data *first, struct plot_data *last)
564 {
565         analyze_plot_info_minmax_minute(entry, first, last, 0);
566         analyze_plot_info_minmax_minute(entry, first, last, 1);
567         analyze_plot_info_minmax_minute(entry, first, last, 2);
568 }
569
570 static struct plot_info *analyze_plot_info(struct plot_info *pi)
571 {
572         int i;
573         int nr = pi->nr;
574
575         /* Do pressure min/max based on the non-surface data */
576         for (i = 0; i < nr; i++) {
577                 struct plot_data *entry = pi->entry+i;
578                 int pressure = entry->pressure;
579                 int temperature = entry->temperature;
580
581                 if (pressure) {
582                         if (!pi->minpressure || pressure < pi->minpressure)
583                                 pi->minpressure = pressure;
584                         if (pressure > pi->maxpressure)
585                                 pi->maxpressure = pressure;
586                 }
587
588                 if (temperature) {
589                         if (!pi->mintemp || temperature < pi->mintemp)
590                                 pi->mintemp = temperature;
591                         if (temperature > pi->maxtemp)
592                                 pi->maxtemp = temperature;
593                 }
594         }
595
596         /* Smoothing function: 5-point triangular smooth */
597         for (i = 2; i < nr-2; i++) {
598                 struct plot_data *entry = pi->entry+i;
599                 int val;
600
601                 val = entry[-2].val + 2*entry[-1].val + 3*entry[0].val + 2*entry[1].val + entry[2].val;
602                 entry->smoothed = (val+4) / 9;
603         }
604
605         /* One-, two- and three-minute minmax data */
606         for (i = 0; i < nr; i++) {
607                 struct plot_data *entry = pi->entry +i;
608                 analyze_plot_info_minmax(entry, pi->entry, pi->entry+nr);
609         }
610         
611         return pi;
612 }
613
614 /*
615  * Create a plot-info with smoothing and ranged min/max
616  *
617  * This also makes sure that we have extra empty events on both
618  * sides, so that you can do end-points without having to worry
619  * about it.
620  */
621 static struct plot_info *create_plot_info(struct dive *dive)
622 {
623         int lastdepth, lastindex;
624         int i, nr = dive->samples + 4, sec;
625         size_t alloc_size = plot_info_size(nr);
626         struct plot_info *pi;
627
628         pi = malloc(alloc_size);
629         if (!pi)
630                 return pi;
631         memset(pi, 0, alloc_size);
632         pi->nr = nr;
633         sec = 0;
634         lastindex = 0;
635         lastdepth = -1;
636         for (i = 0; i < dive->samples; i++) {
637                 int depth;
638                 struct sample *sample = dive->sample+i;
639                 struct plot_data *entry = pi->entry + i + 2;
640
641                 sec = entry->sec = sample->time.seconds;
642                 depth = entry->val = sample->depth.mm;
643                 entry->pressure = sample->cylinderpressure.mbar;
644                 entry->temperature = sample->temperature.mkelvin;
645
646                 if (depth || lastdepth)
647                         lastindex = i+2;
648
649                 lastdepth = depth;
650                 if (depth > pi->maxdepth)
651                         pi->maxdepth = depth;
652         }
653         if (lastdepth)
654                 lastindex = i + 2;
655         /* Fill in the last two entries with empty values but valid times */
656         i = dive->samples + 2;
657         pi->entry[i].sec = sec + 20;
658         pi->entry[i+1].sec = sec + 40;
659
660         pi->nr = lastindex+1;
661         pi->maxtime = pi->entry[lastindex].sec;
662
663         pi->minpressure = dive->cylinder[0].end.mbar;
664         pi->maxpressure = dive->cylinder[0].start.mbar;
665
666         pi->meandepth = dive->meandepth.mm;
667
668         return analyze_plot_info(pi);
669 }
670
671 void plot(struct graphics_context *gc, int w, int h, struct dive *dive)
672 {
673         double topx, topy;
674         struct plot_info *pi = create_plot_info(dive);
675
676         topx = w / 20.0;
677         topy = h / 20.0;
678         cairo_translate(gc->cr, topx, topy);
679         cairo_set_line_width(gc->cr, 2);
680         cairo_set_line_cap(gc->cr, CAIRO_LINE_CAP_ROUND);
681         cairo_set_line_join(gc->cr, CAIRO_LINE_JOIN_ROUND);
682
683         /*
684          * We can use "cairo_translate()" because that doesn't
685          * scale line width etc. But the actual scaling we need
686          * do set up ourselves..
687          *
688          * Snif. What a pity.
689          */
690         gc->maxx = (w - 2*topx);
691         gc->maxy = (h - 2*topy);
692
693         /* Temperature profile */
694         plot_temperature_profile(gc, pi);
695
696         /* Cylinder pressure plot */
697         plot_cylinder_pressure(gc, pi);
698
699         /* Depth profile */
700         plot_depth_profile(gc, pi);
701
702         /* Text on top of all graphs.. */
703         plot_temperature_text(gc, pi);
704         plot_depth_text(gc, pi);
705         plot_cylinder_pressure_text(gc, pi);
706
707         /* And info box in the lower right corner.. */
708         gc->leftx = 0; gc->rightx = 1.0;
709         gc->topy = 0; gc->bottomy = 1.0;
710         plot_info(dive, gc);
711
712         /* Bounding box last */
713         set_source_rgb(gc, 1, 1, 1);
714         move_to(gc, 0, 0);
715         line_to(gc, 0, 1);
716         line_to(gc, 1, 1);
717         line_to(gc, 1, 0);
718         cairo_close_path(gc->cr);
719         cairo_stroke(gc->cr);
720
721 }
722
723 static gboolean expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data)
724 {
725         struct dive *dive = current_dive;
726         struct graphics_context gc = { .printer = 0 };
727         int w,h;
728
729         w = widget->allocation.width;
730         h = widget->allocation.height;
731
732         gc.cr = gdk_cairo_create(widget->window);
733         set_source_rgb(&gc, 0, 0, 0);
734         cairo_paint(gc.cr);
735
736         if (dive)
737                 plot(&gc, w, h, dive);
738
739         cairo_destroy(gc.cr);
740
741         return FALSE;
742 }
743
744 GtkWidget *dive_profile_widget(void)
745 {
746         GtkWidget *da;
747
748         da = gtk_drawing_area_new();
749         gtk_widget_set_size_request(da, 350, 250);
750         g_signal_connect(da, "expose_event", G_CALLBACK(expose_event), NULL);
751
752         return da;
753 }