2012-01-26 23:08:09 +00:00
|
|
|
#ifndef _PAYSAGES_QT_DIALOGWANDERER_H_
|
|
|
|
#define _PAYSAGES_QT_DIALOGWANDERER_H_
|
|
|
|
|
|
|
|
#include <QDialog>
|
2012-01-27 23:01:21 +00:00
|
|
|
#include "widgetwanderer.h"
|
2012-01-27 14:47:08 +00:00
|
|
|
#include "../lib_paysages/camera.h"
|
2012-01-26 23:08:09 +00:00
|
|
|
|
|
|
|
class DialogWanderer : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2012-01-27 23:01:21 +00:00
|
|
|
explicit DialogWanderer(QWidget *parent, CameraDefinition* camera, bool camera_validable);
|
2012-01-26 23:08:09 +00:00
|
|
|
~DialogWanderer();
|
2012-01-27 23:01:21 +00:00
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void validateCamera();
|
|
|
|
|
|
|
|
private:
|
|
|
|
WidgetWanderer* _wanderer;
|
2012-01-26 23:08:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|