mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
f0f76056ac
This means we can also remove the forward declarations. This is the first step in removing the memory allocation for the ui sub-classes. Without the second step, this commit is just making the compilation time increase for no good reason :-) Signed-off-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
39 lines
1 KiB
C++
39 lines
1 KiB
C++
#ifndef PRINTOPTIONS_H
|
|
#define PRINTOPTIONS_H
|
|
|
|
#include <QWidget>
|
|
#include <QSlider>
|
|
#include <QLabel>
|
|
|
|
#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;
|
|
void setLabelFromSlider(QSlider *slider, QLabel *label);
|
|
void initSliderWithLabel(QSlider *slider, QLabel *label, int value);
|
|
QString formatSliderValueText(int value);
|
|
struct options *printOptions;
|
|
bool hasSetupSlots;
|
|
|
|
private slots:
|
|
void sliderPHeightMoved(int value);
|
|
void sliderOHeightMoved(int value);
|
|
void sliderNHeightMoved(int value);
|
|
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
|