Maraiah/source/tycho/cc_source/mapprops.cc

32 lines
639 B
C++

#include "tycho.h"
#include "mapprops.h"
#include "../ui/ui_mapprops.h"
#include <QDialogButtonBox>
MapProps::MapProps(QSharedPointer<ProjectModel> _proj, QWidget *parent) :
QDialog(parent),
ui(new Ui::MapProps),
proj(_proj)
{
ui->setupUi(this);
setModal(true);
auto bbox = new QDialogButtonBox(this);
bbox->setStandardButtons(QDialogButtonBox::Cancel | QDialogButtonBox::Ok);
ui->verticalLayout->addWidget(bbox);
connect(bbox, SIGNAL(accepted()), this, SLOT(accept()));
connect(bbox, SIGNAL(rejected()), this, SLOT(reject()));
dbgPrintFunc();
}
MapProps::~MapProps()
{
dbgPrintFunc();
}
// EOF