summaryrefslogtreecommitdiffstats
path: root/qt-ui/printoptions.h
blob: af845cb1939328eb4720b246938d9bd35bf2a18d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef PRINTOPTIONS_H
#define PRINTOPTIONS_H

#include <QWidget>

#include "ui_printoptions.h"

// should be based on a custom QPrintDialog class
class PrintOptions : public QWidget {
	Q_OBJECT

public:
	explicit PrintOptions(QWidget *parent = 0, struct print_options *printOpt = 0);
	void setup(struct print_options *printOpt);

private:
	Ui::PrintOptions ui;
	struct print_options *printOptions;
	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);
};

#endif // PRINTOPTIONS_H