]> git.tdb.fi Git - ext/subsurface.git/blob - profile.c
Minor corrections to printing of the last temperature
[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, sec = 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                 struct plot_data *entry = pi->entry+i;
354                 int mkelvin = entry->temperature;
355
356                 if (!mkelvin)
357                         continue;
358                 last_temperature = mkelvin;
359                 sec = entry->sec;
360                 if (sec < last + 300)
361                         continue;
362                 last = sec;
363                 plot_single_temp_text(gc,sec,mkelvin);
364                 last_printed_temp = mkelvin;
365         }
366         /* it would be nice to print the end temperature, if it's different */
367         if (abs(last_temperature - last_printed_temp) > 500)
368                 plot_single_temp_text(gc, sec, last_temperature);
369 }
370
371 static void plot_temperature_profile(struct graphics_context *gc, struct plot_info *pi)
372 {
373         int i;
374         cairo_t *cr = gc->cr;
375         int last = 0;
376
377         if (!setup_temperature_limits(gc, pi))
378                 return;
379
380         set_source_rgba(gc, 0.2, 0.2, 1.0, 0.8);
381         for (i = 0; i < pi->nr; i++) {
382                 struct plot_data *entry = pi->entry + i;
383                 int mkelvin = entry->temperature;
384                 int sec = entry->sec;
385                 if (!mkelvin) {
386                         if (!last)
387                                 continue;
388                         mkelvin = last;
389                 }
390                 if (last)
391                         line_to(gc, sec, mkelvin);
392                 else
393                         move_to(gc, sec, mkelvin);
394                 last = mkelvin;
395         }
396         cairo_stroke(cr);
397 }
398
399 /* gets both the actual start and end pressure as well as the scaling factors */
400 static int get_cylinder_pressure_range(struct graphics_context *gc, struct plot_info *pi)
401 {
402         gc->leftx = 0;
403         gc->rightx = get_maxtime(pi);
404
405         gc->topy = 0; gc->bottomy = pi->maxpressure * 1.5;
406         return pi->maxpressure != 0;
407 }
408
409 static void plot_cylinder_pressure(struct graphics_context *gc, struct plot_info *pi)
410 {
411         int i;
412
413         if (!get_cylinder_pressure_range(gc, pi))
414                 return;
415
416         cairo_set_source_rgba(gc->cr, 0.2, 1.0, 0.2, 0.80);
417
418         move_to(gc, 0, pi->maxpressure);
419         for (i = 1; i < pi->nr; i++) {
420                 int mbar;
421                 struct plot_data *entry = pi->entry + i;
422
423                 mbar = entry->pressure;
424                 if (!mbar)
425                         continue;
426                 line_to(gc, entry->sec, mbar);
427         }
428         line_to(gc, pi->maxtime, pi->minpressure);
429         cairo_stroke(gc->cr);
430 }
431
432 /*
433  * Return air usage (in liters).
434  */
435 static double calculate_airuse(struct dive *dive)
436 {
437         double airuse = 0;
438         int i;
439
440         for (i = 0; i < MAX_CYLINDERS; i++) {
441                 cylinder_t *cyl = dive->cylinder + i;
442                 int size = cyl->type.size.mliter;
443                 double kilo_atm;
444
445                 if (!size)
446                         continue;
447
448                 kilo_atm = (cyl->start.mbar - cyl->end.mbar) / 1013250.0;
449
450                 /* Liters of air at 1 atm == milliliters at 1k atm*/
451                 airuse += kilo_atm * size;
452         }
453         return airuse;
454 }
455
456 static void plot_info(struct dive *dive, struct graphics_context *gc)
457 {
458         text_render_options_t tro = {10, 0.2, 1.0, 0.2, LEFT, TOP};
459         const double liters_per_cuft = 28.317;
460         const char *unit, *desc;
461         double airuse;
462
463         airuse = calculate_airuse(dive);
464         if (!airuse)
465                 return;
466
467         /* I really need to start addign some unit setting thing */
468         switch (output_units.volume) {
469         case LITER:
470                 unit = "l";
471                 break;
472         case CUFT:
473                 unit = "cuft";
474                 airuse /= liters_per_cuft;
475                 break;
476         }
477         plot_text(gc, &tro, 0.8, 0.8, "vol: %4.2f %s", airuse, unit);
478         if (dive->duration.seconds) {
479                 double pressure = 1 + (dive->meandepth.mm / 10000.0);
480                 double sac = airuse / pressure * 60 / dive->duration.seconds;
481                 plot_text(gc, &tro, 0.8, 0.85, "SAC: %4.2f %s/min", sac, unit);
482         }
483         desc = dive->cylinder[0].type.description;
484         if (desc || dive->cylinder[0].gasmix.o2.permille) {
485                 int o2 = dive->cylinder[0].gasmix.o2.permille / 10;
486                 if (!desc)
487                         desc = "";
488                 if (!o2)
489                         o2 = 21;
490                 plot_text(gc, &tro, 0.8, 0.9, "%s (%d%%)", desc, o2);
491         }
492 }
493
494 static int mbar_to_PSI(int mbar)
495 {
496         pressure_t p = {mbar};
497         return to_PSI(p);
498 }
499
500 static void plot_cylinder_pressure_text(struct graphics_context *gc, struct plot_info *pi)
501 {
502         if (get_cylinder_pressure_range(gc, pi)) {
503                 int start, end;
504                 const char *unit = "bar";
505
506                 switch (output_units.pressure) {
507                 case PASCAL:
508                         start = pi->maxpressure * 100;
509                         end = pi->minpressure * 100;
510                         unit = "pascal";
511                         break;
512                 case BAR:
513                         start = (pi->maxpressure + 500) / 1000;
514                         end = (pi->minpressure + 500) / 1000;
515                         unit = "bar";
516                         break;
517                 case PSI:
518                         start = mbar_to_PSI(pi->maxpressure);
519                         end = mbar_to_PSI(pi->minpressure);
520                         unit = "psi";
521                         break;
522                 }
523
524                 text_render_options_t tro = {10, 0.2, 1.0, 0.2, LEFT, TOP};
525                 plot_text(gc, &tro, 0, pi->maxpressure, "%d %s", start, unit);
526                 plot_text(gc, &tro, pi->maxtime, pi->minpressure,
527                           "%d %s", end, unit);
528         }
529 }
530
531 static void analyze_plot_info_minmax_minute(struct plot_data *entry, struct plot_data *first, struct plot_data *last, int index)
532 {
533         struct plot_data *p = entry;
534         int time = entry->sec;
535         int seconds = 90*(index+1);
536         struct plot_data *min, *max;
537         int avg, nr;
538
539         /* Go back 'seconds' in time */
540         while (p > first) {
541                 if (p[-1].sec < time - seconds)
542                         break;
543                 p--;
544         }
545
546         /* Then go forward until we hit an entry past the time */
547         min = max = p;
548         avg = p->val;
549         nr = 1;
550         while (++p < last) {
551                 int val = p->val;
552                 if (p->sec > time + seconds)
553                         break;
554                 avg += val;
555                 nr ++;
556                 if (val < min->val)
557                         min = p;
558                 if (val > max->val)
559                         max = p;
560         }
561         entry->min[index] = min;
562         entry->max[index] = max;
563         entry->avg[index] = (avg + nr/2) / nr;
564 }
565
566 static void analyze_plot_info_minmax(struct plot_data *entry, struct plot_data *first, struct plot_data *last)
567 {
568         analyze_plot_info_minmax_minute(entry, first, last, 0);
569         analyze_plot_info_minmax_minute(entry, first, last, 1);
570         analyze_plot_info_minmax_minute(entry, first, last, 2);
571 }
572
573 static struct plot_info *analyze_plot_info(struct plot_info *pi)
574 {
575         int i;
576         int nr = pi->nr;
577
578         /* Do pressure min/max based on the non-surface data */
579         for (i = 0; i < nr; i++) {
580                 struct plot_data *entry = pi->entry+i;
581                 int pressure = entry->pressure;
582                 int temperature = entry->temperature;
583
584                 if (pressure) {
585                         if (!pi->minpressure || pressure < pi->minpressure)
586                                 pi->minpressure = pressure;
587                         if (pressure > pi->maxpressure)
588                                 pi->maxpressure = pressure;
589                 }
590
591                 if (temperature) {
592                         if (!pi->mintemp || temperature < pi->mintemp)
593                                 pi->mintemp = temperature;
594                         if (temperature > pi->maxtemp)
595                                 pi->maxtemp = temperature;
596                 }
597         }
598
599         /* Smoothing function: 5-point triangular smooth */
600         for (i = 2; i < nr-2; i++) {
601                 struct plot_data *entry = pi->entry+i;
602                 int val;
603
604                 val = entry[-2].val + 2*entry[-1].val + 3*entry[0].val + 2*entry[1].val + entry[2].val;
605                 entry->smoothed = (val+4) / 9;
606         }
607
608         /* One-, two- and three-minute minmax data */
609         for (i = 0; i < nr; i++) {
610                 struct plot_data *entry = pi->entry +i;
611                 analyze_plot_info_minmax(entry, pi->entry, pi->entry+nr);
612         }
613         
614         return pi;
615 }
616
617 /*
618  * Create a plot-info with smoothing and ranged min/max
619  *
620  * This also makes sure that we have extra empty events on both
621  * sides, so that you can do end-points without having to worry
622  * about it.
623  */
624 static struct plot_info *create_plot_info(struct dive *dive)
625 {
626         int lastdepth, lastindex;
627         int i, nr = dive->samples + 4, sec;
628         size_t alloc_size = plot_info_size(nr);
629         struct plot_info *pi;
630
631         pi = malloc(alloc_size);
632         if (!pi)
633                 return pi;
634         memset(pi, 0, alloc_size);
635         pi->nr = nr;
636         sec = 0;
637         lastindex = 0;
638         lastdepth = -1;
639         for (i = 0; i < dive->samples; i++) {
640                 int depth;
641                 struct sample *sample = dive->sample+i;
642                 struct plot_data *entry = pi->entry + i + 2;
643
644                 sec = entry->sec = sample->time.seconds;
645                 depth = entry->val = sample->depth.mm;
646                 entry->pressure = sample->cylinderpressure.mbar;
647                 entry->temperature = sample->temperature.mkelvin;
648
649                 if (depth || lastdepth)
650                         lastindex = i+2;
651
652                 lastdepth = depth;
653                 if (depth > pi->maxdepth)
654                         pi->maxdepth = depth;
655         }
656         if (lastdepth)
657                 lastindex = i + 2;
658         /* Fill in the last two entries with empty values but valid times */
659         i = dive->samples + 2;
660         pi->entry[i].sec = sec + 20;
661         pi->entry[i+1].sec = sec + 40;
662
663         pi->nr = lastindex+1;
664         pi->maxtime = pi->entry[lastindex].sec;
665
666         pi->minpressure = dive->cylinder[0].end.mbar;
667         pi->maxpressure = dive->cylinder[0].start.mbar;
668
669         pi->meandepth = dive->meandepth.mm;
670
671         return analyze_plot_info(pi);
672 }
673
674 void plot(struct graphics_context *gc, int w, int h, struct dive *dive)
675 {
676         double topx, topy;
677         struct plot_info *pi = create_plot_info(dive);
678
679         topx = w / 20.0;
680         topy = h / 20.0;
681         cairo_translate(gc->cr, topx, topy);
682         cairo_set_line_width(gc->cr, 2);
683         cairo_set_line_cap(gc->cr, CAIRO_LINE_CAP_ROUND);
684         cairo_set_line_join(gc->cr, CAIRO_LINE_JOIN_ROUND);
685
686         /*
687          * We can use "cairo_translate()" because that doesn't
688          * scale line width etc. But the actual scaling we need
689          * do set up ourselves..
690          *
691          * Snif. What a pity.
692          */
693         gc->maxx = (w - 2*topx);
694         gc->maxy = (h - 2*topy);
695
696         /* Temperature profile */
697         plot_temperature_profile(gc, pi);
698
699         /* Cylinder pressure plot */
700         plot_cylinder_pressure(gc, pi);
701
702         /* Depth profile */
703         plot_depth_profile(gc, pi);
704
705         /* Text on top of all graphs.. */
706         plot_temperature_text(gc, pi);
707         plot_depth_text(gc, pi);
708         plot_cylinder_pressure_text(gc, pi);
709
710         /* And info box in the lower right corner.. */
711         gc->leftx = 0; gc->rightx = 1.0;
712         gc->topy = 0; gc->bottomy = 1.0;
713         plot_info(dive, gc);
714
715         /* Bounding box last */
716         set_source_rgb(gc, 1, 1, 1);
717         move_to(gc, 0, 0);
718         line_to(gc, 0, 1);
719         line_to(gc, 1, 1);
720         line_to(gc, 1, 0);
721         cairo_close_path(gc->cr);
722         cairo_stroke(gc->cr);
723
724 }
725
726 static gboolean expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data)
727 {
728         struct dive *dive = current_dive;
729         struct graphics_context gc = { .printer = 0 };
730         int w,h;
731
732         w = widget->allocation.width;
733         h = widget->allocation.height;
734
735         gc.cr = gdk_cairo_create(widget->window);
736         set_source_rgb(&gc, 0, 0, 0);
737         cairo_paint(gc.cr);
738
739         if (dive)
740                 plot(&gc, w, h, dive);
741
742         cairo_destroy(gc.cr);
743
744         return FALSE;
745 }
746
747 GtkWidget *dive_profile_widget(void)
748 {
749         GtkWidget *da;
750
751         da = gtk_drawing_area_new();
752         gtk_widget_set_size_request(da, 350, 250);
753         g_signal_connect(da, "expose_event", G_CALLBACK(expose_event), NULL);
754
755         return da;
756 }