summaryrefslogblamecommitdiffstats
path: root/qt-ui/printoptions.h
blob: a1ad1d652c2c1232d9b0cb087fda4bfb11c6e01f (plain) (tree)
1
2
3
4
5
6


                      
                  









                                                 
                                                                                 
        
                             







                                                                            

      
#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