##// END OF EJS Templates
Completes fuzzing test structure by setting initial range for the time controller
Completes fuzzing test structure by setting initial range for the time controller

File last commit:

r1163:800f227572ac
r1178:324a3ee21c58
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