subsurface/qt-ui/printoptions.h
Lubomir I. Ivanov 6e4ebe3c54 Print: remove the height sliders from the PrintOptions class
These were hidden and we don't really support them because
our print layouting is not that flexible in Qt!

Note: printoptions.ui is now converted to UNIX line breaks.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2014-07-18 10:20:00 -07:00

32 lines
724 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 options *printOpt = 0);
void setup(struct options *printOpt);
private:
Ui::PrintOptions ui;
struct options *printOptions;
bool hasSetupSlots;
private
slots:
void radioSixDivesClicked(bool check);
void radioTwoDivesClicked(bool check);
void radioTablePrintClicked(bool check);
void printInColorClicked(bool check);
void printSelectedClicked(bool check);
void notesOnTopClicked(bool check);
void profileOnTopClicked(bool check);
};
#endif // PRINTOPTIONS_H