2011-08-31 17:20:46 +00:00
|
|
|
#ifndef DISPLAY_H
|
|
|
|
#define DISPLAY_H
|
|
|
|
|
|
|
|
#include <cairo.h>
|
|
|
|
|
2012-09-11 08:16:34 +00:00
|
|
|
#define DPI_SCREEN 72.0
|
|
|
|
#define SCALE_SCREEN 1.0
|
|
|
|
#define SCALE_PRINT (1.0 / DPI_SCREEN)
|
|
|
|
|
2011-08-31 18:10:17 +00:00
|
|
|
extern void repaint_dive(void);
|
2011-09-13 23:02:42 +00:00
|
|
|
extern void do_print(void);
|
|
|
|
|
2012-12-06 18:01:16 +00:00
|
|
|
/* Plot info with smoothing, velocity indication
|
|
|
|
* and one-, two- and three-minute minimums and maximums */
|
|
|
|
struct plot_info {
|
|
|
|
int nr;
|
|
|
|
int maxtime;
|
|
|
|
int meandepth, maxdepth;
|
2012-12-10 00:54:16 +00:00
|
|
|
int minpressure, maxpressure;
|
|
|
|
int mintemp, maxtemp;
|
2012-12-06 18:01:16 +00:00
|
|
|
double endtempcoord;
|
2012-12-09 22:34:41 +00:00
|
|
|
double maxpp;
|
2012-12-06 18:01:16 +00:00
|
|
|
gboolean has_ndl;
|
|
|
|
struct plot_data *entry;
|
|
|
|
};
|
|
|
|
|
2011-09-13 23:02:42 +00:00
|
|
|
/*
|
|
|
|
* 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-14 02:49:48 +00:00
|
|
|
int printer;
|
2011-09-13 23:02:42 +00:00
|
|
|
cairo_t *cr;
|
2012-11-11 12:20:32 +00:00
|
|
|
cairo_rectangle_t drawing_area;
|
2011-09-13 23:02:42 +00:00
|
|
|
double maxx, maxy;
|
|
|
|
double leftx, rightx;
|
|
|
|
double topy, bottomy;
|
2012-11-11 12:20:32 +00:00
|
|
|
unsigned int maxtime;
|
2012-12-06 18:01:16 +00:00
|
|
|
struct plot_info pi;
|
2011-09-13 23:02:42 +00:00
|
|
|
};
|
|
|
|
|
2012-09-11 08:16:34 +00:00
|
|
|
typedef enum { SC_SCREEN, SC_PRINT } scale_mode_t;
|
|
|
|
|
2012-11-11 12:20:32 +00:00
|
|
|
extern void plot(struct graphics_context *gc, struct dive *dive, scale_mode_t scale);
|
2011-11-28 17:17:33 +00:00
|
|
|
extern void init_profile_background(struct graphics_context *gc);
|
2011-10-04 19:27:55 +00:00
|
|
|
extern void attach_tooltip(int x, int y, int w, int h, const char *text);
|
2012-11-11 12:20:32 +00:00
|
|
|
extern void get_plot_details(struct graphics_context *gc, int time, char *buf, size_t bufsize);
|
2011-08-31 17:20:46 +00:00
|
|
|
|
2012-08-28 13:50:00 +00:00
|
|
|
struct options {
|
2012-11-10 15:51:44 +00:00
|
|
|
enum { PRETTY, TABLE, ONEPERPAGE } type;
|
2012-08-30 16:30:59 +00:00
|
|
|
int print_selected;
|
2012-08-28 13:50:00 +00:00
|
|
|
};
|
|
|
|
|
2012-08-22 00:34:29 +00:00
|
|
|
extern char zoomed_plot;
|
|
|
|
|
2011-08-31 17:20:46 +00:00
|
|
|
#endif
|