##// END OF EJS Templates
Reads variable's metadata to retrieve the type of data series (scalar, vector, spectrogram)
Reads variable's metadata to retrieve the type of data series (scalar, vector, spectrogram)

File last commit:

r1286:073d4af7c849
r1304:23206e07bbc2
Show More
CatalogueExplorer.h
35 lines | 789 B | text/x-c | CLexer
Adds the new CatalogueExplorer dialog
r1128 #ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
Retrieves zone names from the visualization
r1169 #include <Common/spimpl.h>
Adds the new CatalogueExplorer dialog
r1128 #include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
Updates model after an event has been created through the colored zone
r1286 class CatalogueEventsWidget;
class CatalogueSideBarWidget;
Retrieves zone names from the visualization
r1169 class VisualizationWidget;
Adds the new CatalogueExplorer dialog
r1128 class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
Retrieves zone names from the visualization
r1169 void setVisualizationWidget(VisualizationWidget *visualization);
Updates model after an event has been created through the colored zone
r1286 CatalogueEventsWidget &eventsWidget() const;
CatalogueSideBarWidget &sideBarWidget() const;
Adds the new CatalogueExplorer dialog
r1128 private:
Ui::CatalogueExplorer *ui;
Retrieves zone names from the visualization
r1169
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
Adds the new CatalogueExplorer dialog
r1128 };
#endif // SCIQLOP_CATALOGUEEXPLORER_H