]> git.tdb.fi Git - ext/subsurface.git/blobdiff - display.h
Work on the printing of the dives, first attempt to print as table.
[ext/subsurface.git] / display.h
index a3bc8ab1dc2dde94b851895495e532a46704c9f8..d054b699450161de1fc2e8699ac5e58173e06357 100644 (file)
--- a/display.h
+++ b/display.h
@@ -23,7 +23,12 @@ struct graphics_context {
 };
 
 extern void plot(struct graphics_context *gc, cairo_rectangle_int_t *drawing_area, struct dive *dive);
-extern void set_source_rgb(struct graphics_context *gc, double r, double g, double b);
+extern void init_profile_background(struct graphics_context *gc);
 extern void attach_tooltip(int x, int y, int w, int h, const char *text);
 
+struct options {
+       enum { PRETTY, TABLE } type;
+       gboolean print_profiles;
+};
+
 #endif