Michaël Lemaire
06b170e0f5
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@219 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
29 lines
550 B
C++
29 lines
550 B
C++
#ifndef _PAYSAGES_QT_INPUTINT_H_
|
|
#define _PAYSAGES_QT_INPUTINT_H_
|
|
|
|
#include <QWidget>
|
|
#include <QSlider>
|
|
#include "baseinput.h"
|
|
|
|
class InputInt:public BaseInput
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputInt(QWidget* form, QString label, int* value, int min, int max, int small_step, int large_step);
|
|
|
|
public slots:
|
|
virtual void updatePreview();
|
|
virtual void applyValue();
|
|
virtual void revert();
|
|
|
|
private:
|
|
QSlider* slider;
|
|
int* value;
|
|
int min;
|
|
int max;
|
|
int small_step;
|
|
int large_step;
|
|
};
|
|
|
|
#endif // _PAYSAGES_QT_INPUTINT_H_
|