paysages3d/src/editing/dialogexplorer.h
2013-04-17 12:29:51 +00:00

23 lines
433 B
C++

#ifndef _PAYSAGES_QT_DIALOGEXPLORER_H_
#define _PAYSAGES_QT_DIALOGEXPLORER_H_
#include <QDialog>
#include "widgetexplorer.h"
#include "rendering/camera.h"
class DialogExplorer : public QDialog
{
Q_OBJECT
public:
explicit DialogExplorer(QWidget *parent, CameraDefinition* camera, bool camera_validable);
~DialogExplorer();
protected slots:
void validateCamera();
private:
WidgetExplorer* _wanderer;
};
#endif