##// 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:

r1141:00ce9b74612e
r1151:7dc72cc510ff
Show More
CatalogueExplorer.cpp
22 lines | 700 B | text/x-c | CppLexer
/ gui / src / Catalogue / CatalogueExplorer.cpp
#include "Catalogue/CatalogueExplorer.h"
#include "ui_CatalogueExplorer.h"
CatalogueExplorer::CatalogueExplorer(QWidget *parent)
: QDialog(parent, Qt::Dialog | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint),
ui(new Ui::CatalogueExplorer)
{
ui->setupUi(this);
connect(ui->catalogues, &CatalogueSideBarWidget::catalogueSelected, [this](auto name) {
ui->inspector->setCatalogue(name);
ui->events->populateWithCatalogue(name);
});
connect(ui->events, &CatalogueEventsWidget::eventSelected,
[this](auto name) { ui->inspector->setEvent(name); });
}
CatalogueExplorer::~CatalogueExplorer()
{
delete ui;
}