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