##// END OF EJS Templates
Separate the initialization of the properties of the graph of the update of the units of the graph....
Separate the initialization of the properties of the graph of the update of the units of the graph. The initialization of the properties is carried out when adding a variable in the graph, the update of the units is carried out when loading the data of this variable

File last commit:

r1231:073d4af7c849
r1283:3acf26407503
Show More
CatalogueExplorer.h
35 lines | 789 B | text/x-c | CLexer
#ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
#include <Common/spimpl.h>
#include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
class CatalogueEventsWidget;
class CatalogueSideBarWidget;
class VisualizationWidget;
class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
void setVisualizationWidget(VisualizationWidget *visualization);
CatalogueEventsWidget &eventsWidget() const;
CatalogueSideBarWidget &sideBarWidget() const;
private:
Ui::CatalogueExplorer *ui;
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEEXPLORER_H