paysages3d/src/interface/desktop/dialogexplorer.h

23 lines
430 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 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();
private:
WidgetExplorer* _wanderer;
};
#endif