summaryrefslogtreecommitdiffstats
path: root/qt-ui/printoptions.h
blob: a1ad1d652c2c1232d9b0cb087fda4bfb11c6e01f (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
31
32
33
#ifndef PRINTOPTIONS_H
#define PRINTOPTIONS_H

#include <QWidget>
#include <QSlider>
#include <QLabel>
#include "../display.h"

namespace Ui {
	class PrintOptions;
};

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

public:
	explicit PrintOptions(QWidget *parent = 0, struct options *printOpt = 0);

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;

private slots:
	void sliderPHeightMoved(int value);
	void sliderOHeightMoved(int value);
	void sliderNHeightMoved(int value);
};

#endif