##// END OF EJS Templates
Events
Events

File last commit:

r1099:d0842d2b09d4
r1101:b6c6d61c12e3
Show More
CatalogueInspectorWidget.h
29 lines | 660 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueInspectorWidget.h
#ifndef SCIQLOP_CATALOGUEINSPECTORWIDGET_H
#define SCIQLOP_CATALOGUEINSPECTORWIDGET_H
#include <QWidget>
namespace Ui {
class CatalogueInspectorWidget;
}
class CatalogueInspectorWidget : public QWidget {
Q_OBJECT
public:
explicit CatalogueInspectorWidget(QWidget *parent = 0);
virtual ~CatalogueInspectorWidget();
/// Enum matching the pages inside the stacked widget
enum class Page { Empty, CatalogueProperties, EventProperties };
Page currentPage() const;
public slots:
void showPage(Page page);
private:
Ui::CatalogueInspectorWidget *ui;
};
#endif // SCIQLOP_CATALOGUEINSPECTORWIDGET_H