##// END OF EJS Templates
Updates model after an event has been created through the colored zone
Updates model after an event has been created through the colored zone

File last commit:

r1286:073d4af7c849
r1286:073d4af7c849
Show More
CreateEventDialog.h
36 lines | 819 B | text/x-c | CLexer
Zone actions to create a new event
r1195 #ifndef SCIQLOP_CREATEEVENTDIALOG_H
#define SCIQLOP_CREATEEVENTDIALOG_H
#include <Common/spimpl.h>
#include <QDialog>
#include <memory>
namespace Ui {
class CreateEventDialog;
}
class DBCatalogue;
class CreateEventDialog : public QDialog {
Q_OBJECT
public:
Updates model after an event has been created through the colored zone
r1286 explicit CreateEventDialog(const QVector<std::shared_ptr<DBCatalogue> > &catalogues,
QWidget *parent = 0);
Zone actions to create a new event
r1195 virtual ~CreateEventDialog();
void hideCatalogueChoice();
QString eventName() const;
std::shared_ptr<DBCatalogue> selectedCatalogue() const;
QString catalogueName() const;
private:
Ui::CreateEventDialog *ui;
class CreateEventDialogPrivate;
spimpl::unique_impl_ptr<CreateEventDialogPrivate> impl;
};
#endif // SCIQLOP_CREATEEVENTDIALOG_H