Michaël Lemaire
f3a0a72da2
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@244 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
28 lines
511 B
C++
28 lines
511 B
C++
#ifndef _PAYSAGES_QT_INPUTCAMERA_H_
|
|
#define _PAYSAGES_QT_INPUTCAMERA_H_
|
|
|
|
#include <QWidget>
|
|
#include "baseinput.h"
|
|
|
|
#include "../lib_paysages/camera.h"
|
|
|
|
class InputCamera:public BaseInput
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
InputCamera(QWidget* form, QString label, CameraDefinition* value);
|
|
|
|
public slots:
|
|
virtual void updatePreview();
|
|
virtual void applyValue();
|
|
virtual void revert();
|
|
|
|
private slots:
|
|
void editCamera();
|
|
|
|
private:
|
|
CameraDefinition* _value;
|
|
};
|
|
|
|
#endif // _PAYSAGES_QT_INPUTNOISE_H_
|