##// 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
CatalogueActionManager.h
19 lines | 465 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
Zone actions to create a new event
r1195 #ifndef SCIQLOP_CATALOGUEACTIONMANAGER_H
#define SCIQLOP_CATALOGUEACTIONMANAGER_H
#include <Common/spimpl.h>
Updates model after an event has been created through the colored zone
r1286 class CatalogueExplorer;
Zone actions to create a new event
r1195 class CatalogueActionManager {
public:
Updates model after an event has been created through the colored zone
r1286 CatalogueActionManager(CatalogueExplorer *catalogueExplorer);
Zone actions to create a new event
r1195
void installSelectionZoneActions();
private:
class CatalogueActionManagerPrivate;
spimpl::unique_impl_ptr<CatalogueActionManagerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEACTIONMANAGER_H