##// 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.h
36 lines | 819 B | text/x-c | CLexer
#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:
explicit CreateEventDialog(const QVector<std::shared_ptr<DBCatalogue> > &catalogues,
QWidget *parent = 0);
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