##// END OF EJS Templates
Fixes the refresh of data that was not working all the time
Fixes the refresh of data that was not working all the time

File last commit:

r1286:073d4af7c849
r1324:c436df4b66de
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