2012-01-26 23:08:09 +00:00
|
|
|
#include "dialogwanderer.h"
|
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
2012-01-27 14:47:08 +00:00
|
|
|
#include "widgetwanderer.h"
|
2012-01-26 23:08:09 +00:00
|
|
|
|
2012-01-27 14:47:08 +00:00
|
|
|
DialogWanderer::DialogWanderer(QWidget* parent, CameraDefinition* camera):
|
2012-01-26 23:08:09 +00:00
|
|
|
QDialog(parent)
|
|
|
|
{
|
|
|
|
setModal(true);
|
|
|
|
setWindowTitle("Paysages 3D - Explore");
|
|
|
|
setLayout(new QVBoxLayout());
|
2012-01-27 14:47:08 +00:00
|
|
|
|
|
|
|
layout()->addWidget(new WidgetWanderer(this, camera));
|
2012-01-26 23:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DialogWanderer::~DialogWanderer()
|
|
|
|
{
|
|
|
|
}
|
2012-01-27 14:47:08 +00:00
|
|
|
|