mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
c44496e23d
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
#ifndef PRINTOPTIONS_H
|
|
#define PRINTOPTIONS_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "ui_printoptions.h"
|
|
|
|
struct print_options {
|
|
enum print_type {
|
|
DIVELIST,
|
|
TABLE,
|
|
STATISTICS
|
|
} type;
|
|
enum print_template {
|
|
ONE_DIVE,
|
|
TWO_DIVE,
|
|
CUSTOM
|
|
} p_template;
|
|
bool print_selected;
|
|
bool color_selected;
|
|
bool landscape;
|
|
};
|
|
|
|
struct template_options {
|
|
int font_index;
|
|
int color_palette_index;
|
|
double font_size;
|
|
double line_spacing;
|
|
};
|
|
|
|
// should be based on a custom QPrintDialog class
|
|
class PrintOptions : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PrintOptions(QWidget *parent, struct print_options *printOpt, struct template_options *templateOpt);
|
|
void setup();
|
|
|
|
private:
|
|
Ui::PrintOptions ui;
|
|
struct print_options *printOptions;
|
|
struct template_options *templateOptions;
|
|
bool hasSetupSlots;
|
|
|
|
private
|
|
slots:
|
|
void printInColorClicked(bool check);
|
|
void printSelectedClicked(bool check);
|
|
void on_radioStatisticsPrint_clicked(bool check);
|
|
void on_radioTablePrint_clicked(bool check);
|
|
void on_radioDiveListPrint_clicked(bool check);
|
|
void on_printTemplate_currentIndexChanged(int index);
|
|
void on_editButton_clicked();
|
|
};
|
|
|
|
#endif // PRINTOPTIONS_H
|