Michaël Lemaire
a3aa859f0c
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@340 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
22 lines
439 B
C++
22 lines
439 B
C++
#ifndef _PAYSAGES_QT_DIALOGEXPLORER_H_
|
|
#define _PAYSAGES_QT_DIALOGEXPLORER_H_
|
|
|
|
#include <QDialog>
|
|
#include "widgetexplorer.h"
|
|
#include "../lib_paysages/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
|