2011-08-31 10:20:46 -07:00
|
|
|
#ifndef DISPLAY_H
|
|
|
|
#define DISPLAY_H
|
|
|
|
|
|
|
|
#include <cairo.h>
|
|
|
|
|
2011-08-31 11:10:17 -07:00
|
|
|
extern void repaint_dive(void);
|
2011-09-13 16:02:42 -07:00
|
|
|
extern void do_print(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cairo scaling really is horribly horribly mis-designed.
|
|
|
|
*
|
|
|
|
* Which is sad, because I really like Cairo otherwise. But
|
|
|
|
* the fact that the line width is scaled with the same scale
|
|
|
|
* as the coordinate system is a f*&%ing disaster. So we
|
|
|
|
* can't use it, and instead have this butt-ugly wrapper thing..
|
|
|
|
*/
|
|
|
|
struct graphics_context {
|
2011-09-13 19:49:48 -07:00
|
|
|
int printer;
|
2011-09-13 16:02:42 -07:00
|
|
|
cairo_t *cr;
|
|
|
|
double maxx, maxy;
|
|
|
|
double leftx, rightx;
|
|
|
|
double topy, bottomy;
|
|
|
|
};
|
|
|
|
|
2011-10-04 12:14:26 -07:00
|
|
|
extern void plot(struct graphics_context *gc, cairo_rectangle_int_t *drawing_area, struct dive *dive);
|
2011-09-20 12:40:34 -07:00
|
|
|
extern void set_source_rgb(struct graphics_context *gc, double r, double g, double b);
|
2011-10-04 12:27:55 -07:00
|
|
|
extern void attach_tooltip(int x, int y, int w, int h, const char *text);
|
2011-08-31 10:20:46 -07:00
|
|
|
|
|
|
|
#endif
|