##// END OF EJS Templates
Remove the catalogue from discard or remove button have now the same gui...
Remove the catalogue from discard or remove button have now the same gui behavior

File last commit:

r1286:073d4af7c849
r1371:232b551e25db
Show More
CreateEventDialog.cpp
59 lines | 1.6 KiB | text/x-c | CppLexer
/ gui / src / Catalogue / CreateEventDialog.cpp
Zone actions to create a new event
r1195 #include "Catalogue/CreateEventDialog.h"
#include "ui_CreateEventDialog.h"
#include <Catalogue/CatalogueController.h>
#include <SqpApplication.h>
#include <DBCatalogue.h>
struct CreateEventDialog::CreateEventDialogPrivate {
QVector<std::shared_ptr<DBCatalogue> > m_DisplayedCatalogues;
};
Updates model after an event has been created through the colored zone
r1286 CreateEventDialog::CreateEventDialog(const QVector<std::shared_ptr<DBCatalogue> > &catalogues,
QWidget *parent)
Zone actions to create a new event
r1195 : QDialog(parent),
ui(new Ui::CreateEventDialog),
impl{spimpl::make_unique_impl<CreateEventDialogPrivate>()}
{
ui->setupUi(this);
connect(ui->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
connect(ui->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
Updates model after an event has been created through the colored zone
r1286 impl->m_DisplayedCatalogues = catalogues;
for (auto cat : impl->m_DisplayedCatalogues) {
Zone actions to create a new event
r1195 ui->cbCatalogue->addItem(cat->getName());
}
}
CreateEventDialog::~CreateEventDialog()
{
delete ui;
}
void CreateEventDialog::hideCatalogueChoice()
{
ui->cbCatalogue->hide();
ui->lblCatalogue->hide();
}
QString CreateEventDialog::eventName() const
{
return ui->leEvent->text();
}
std::shared_ptr<DBCatalogue> CreateEventDialog::selectedCatalogue() const
{
auto catalogue = impl->m_DisplayedCatalogues.value(ui->cbCatalogue->currentIndex());
if (!catalogue || catalogue->getName() != catalogueName()) {
return nullptr;
}
return catalogue;
}
QString CreateEventDialog::catalogueName() const
{
return ui->cbCatalogue->currentText();
}