paysages3d/src/interface/desktop/dialogexplorer.h

28 lines
521 B
C
Raw Normal View History

#ifndef _PAYSAGES_QT_DIALOGEXPLORER_H_
#define _PAYSAGES_QT_DIALOGEXPLORER_H_
2013-11-14 20:46:47 +00:00
#include "desktop_global.h"
#include <QDialog>
class QSlider;
class DialogExplorer : public QDialog
{
Q_OBJECT
public:
2013-12-10 22:06:57 +00:00
explicit DialogExplorer(QWidget *parent, CameraDefinition* camera, bool camera_validable=false, Scenery* scenery=0);
~DialogExplorer();
protected slots:
void validateCamera();
void resetCamera();
void fovChanged(int value);
private:
WidgetExplorer* _wanderer;
QSlider* _fov;
};
#endif