mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
a0b8eed612
Remove obsolete code and add new customizable print code to the options dialog. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
30 lines
690 B
C++
30 lines
690 B
C++
#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
|