2011-08-31 17:20:46 +00:00
|
|
|
#ifndef DISPLAY_H
|
|
|
|
#define DISPLAY_H
|
|
|
|
|
2013-04-01 10:51:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-01-19 00:21:13 +00:00
|
|
|
struct membuffer;
|
|
|
|
|
2012-09-11 08:16:34 +00:00
|
|
|
#define SCALE_SCREEN 1.0
|
2013-05-10 16:24:06 +00:00
|
|
|
#define SCALE_PRINT (1.0 / get_screen_dpi())
|
2012-09-11 08:16:34 +00:00
|
|
|
|
2013-05-10 16:24:06 +00:00
|
|
|
extern double get_screen_dpi(void);
|
2011-09-13 23:02:42 +00:00
|
|
|
|
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;
|
2014-02-23 22:32:25 +00:00
|
|
|
int minhr, maxhr;
|
2012-12-10 00:54:16 +00:00
|
|
|
int mintemp, maxtemp;
|
2014-03-31 10:48:22 +00:00
|
|
|
enum {AIR, NITROX, TRIMIX} dive_type;
|
2012-12-06 18:01:16 +00:00
|
|
|
double endtempcoord;
|
2012-12-09 22:34:41 +00:00
|
|
|
double maxpp;
|
2013-05-04 20:24:23 +00:00
|
|
|
bool has_ndl;
|
2012-12-06 18:01:16 +00:00
|
|
|
struct plot_data *entry;
|
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
typedef enum {
|
|
|
|
SC_SCREEN,
|
|
|
|
SC_PRINT
|
|
|
|
} scale_mode_t;
|
2012-09-11 08:16:34 +00:00
|
|
|
|
2014-03-17 15:19:09 +00:00
|
|
|
extern struct divecomputer *select_dc(struct dive *);
|
2011-08-31 17:20:46 +00:00
|
|
|
|
2012-08-28 13:50:00 +00:00
|
|
|
struct options {
|
2014-02-28 04:09:57 +00:00
|
|
|
enum {
|
|
|
|
PRETTY,
|
|
|
|
TABLE,
|
2014-07-24 17:56:39 +00:00
|
|
|
TWOPERPAGE,
|
|
|
|
ONEPERPAGE
|
2014-02-28 04:09:57 +00:00
|
|
|
} type;
|
2012-08-30 16:30:59 +00:00
|
|
|
int print_selected;
|
2013-03-13 07:18:49 +00:00
|
|
|
int color_selected;
|
2013-05-04 20:24:23 +00:00
|
|
|
bool notes_up;
|
2012-08-28 13:50:00 +00:00
|
|
|
};
|
|
|
|
|
2014-03-17 15:19:09 +00:00
|
|
|
extern unsigned int dc_number;
|
2012-08-22 00:34:29 +00:00
|
|
|
|
2013-04-14 18:31:26 +00:00
|
|
|
extern unsigned int amount_selected;
|
|
|
|
|
2013-05-03 18:04:51 +00:00
|
|
|
extern int is_default_dive_computer_device(const char *);
|
|
|
|
extern int is_default_dive_computer(const char *, const char *);
|
2013-09-16 21:04:42 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
typedef void (*device_callback_t)(const char *name, void *userdata);
|
2014-05-18 04:29:40 +00:00
|
|
|
|
|
|
|
#define DC_TYPE_SERIAL 1
|
|
|
|
#define DC_TYPE_UEMIS 2
|
|
|
|
#define DC_TYPE_OTHER 3
|
|
|
|
|
|
|
|
int enumerate_devices(device_callback_t callback, void *userdata, int dc_type);
|
2013-09-16 21:04:42 +00:00
|
|
|
|
2013-05-03 18:04:51 +00:00
|
|
|
extern const char *default_dive_computer_vendor;
|
|
|
|
extern const char *default_dive_computer_product;
|
|
|
|
extern const char *default_dive_computer_device;
|
|
|
|
|
2014-09-15 12:09:00 +00:00
|
|
|
#define AMB_PERCENTAGE 50.0
|
|
|
|
|
2013-04-01 10:51:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // DISPLAY_H
|