##// END OF EJS Templates
Creates sync and desync operations and adds them to the fuzzing tests
Creates sync and desync operations and adds them to the fuzzing tests

File last commit:

r1163:800f227572ac
r1205:b0db13ba024e
Show More
CreateEventDialog.h
35 lines | 729 B | text/x-c | CLexer
Zone actions to create a new event
r1163 #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(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