##// END OF EJS Templates
Adds read compatibility for local AMDA server...
Adds read compatibility for local AMDA server The local AMDA server uses another regex than the default server to read the units in x. We manage the compatibility by adding in the parser the possibility of testing several regexes to read a property

File last commit:

r1106:00ce9b74612e
r1121:98220c931c83
Show More
CatalogueExplorer.cpp
22 lines | 700 B | text/x-c | CppLexer
/ gui / src / Catalogue / CatalogueExplorer.cpp
Adds the new CatalogueExplorer dialog
r1093 #include "Catalogue/CatalogueExplorer.h"
#include "ui_CatalogueExplorer.h"
CatalogueExplorer::CatalogueExplorer(QWidget *parent)
Fix window flags of the catalogue gui
r1100 : QDialog(parent, Qt::Dialog | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint),
ui(new Ui::CatalogueExplorer)
Adds the new CatalogueExplorer dialog
r1093 {
ui->setupUi(this);
Basic interactions
r1103
connect(ui->catalogues, &CatalogueSideBarWidget::catalogueSelected, [this](auto name) {
Fixes
r1106 ui->inspector->setCatalogue(name);
Basic interactions
r1103 ui->events->populateWithCatalogue(name);
});
connect(ui->events, &CatalogueEventsWidget::eventSelected,
Fixes
r1106 [this](auto name) { ui->inspector->setEvent(name); });
Adds the new CatalogueExplorer dialog
r1093 }
CatalogueExplorer::~CatalogueExplorer()
{
delete ui;
}