diff options
Diffstat (limited to 'display.h')
-rw-r--r-- | display.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -35,16 +35,18 @@ typedef enum { extern struct divecomputer *select_dc(struct dive *); -struct options { - enum { +struct print_options { + enum print_type { PRETTY, TABLE, TWOPERPAGE, ONEPERPAGE } type; - int print_selected; - int color_selected; + bool print_selected; + bool color_selected; bool notes_up; + bool landscape; + int margins[4]; // left, top, right, bottom }; extern unsigned int dc_number; |