##// END OF EJS Templates
Adds "hybrid" server mode...
Adds "hybrid" server mode Hybrid mode allows to use both the default server and the test server, depending on the "server" setting of each product in the JSON file

File last commit:

r1140:342312d662e7
r1151:7dc72cc510ff
Show More
CatalogueInspectorWidget.h
32 lines | 754 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;
void setEvent(const QString &event);
void setCatalogue(const QString &catalogue);
public slots:
void showPage(Page page);
private:
Ui::CatalogueInspectorWidget *ui;
};
#endif // SCIQLOP_CATALOGUEINSPECTORWIDGET_H