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

r1140:342312d662e7
r1154:98220c931c83
Show More
CatalogueEventsWidget.h
31 lines | 695 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueEventsWidget.h
#ifndef SCIQLOP_CATALOGUEEVENTSWIDGET_H
#define SCIQLOP_CATALOGUEEVENTSWIDGET_H
#include <Common/spimpl.h>
#include <QWidget>
namespace Ui {
class CatalogueEventsWidget;
}
class CatalogueEventsWidget : public QWidget {
Q_OBJECT
signals:
void eventSelected(const QString &event);
public:
explicit CatalogueEventsWidget(QWidget *parent = 0);
virtual ~CatalogueEventsWidget();
public slots:
void populateWithCatalogue(const QString &catalogue);
private:
Ui::CatalogueEventsWidget *ui;
class CatalogueEventsWidgetPrivate;
spimpl::unique_impl_ptr<CatalogueEventsWidgetPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEEVENTSWIDGET_H