##// END OF EJS Templates
Wrapper prototype working, with all kind of Serie...
Wrapper prototype working, with all kind of Serie Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1049:ead367adcd3d
r1479:704e0f1deb02
Show More
VisualizationSelectionZoneManager.h
26 lines | 749 B | text/x-c | CLexer
/ gui / include / Visualization / VisualizationSelectionZoneManager.h
#ifndef SCIQLOP_VISUALIZATIONSELECTIONZONEMANAGER_H
#define SCIQLOP_VISUALIZATIONSELECTIONZONEMANAGER_H
#include <Common/spimpl.h>
#include <QVector>
class VisualizationSelectionZoneItem;
class VisualizationSelectionZoneManager {
public:
VisualizationSelectionZoneManager();
void select(const QVector<VisualizationSelectionZoneItem *> &items);
void setSelected(VisualizationSelectionZoneItem *item, bool value);
void clearSelection();
QVector<VisualizationSelectionZoneItem *> selectedItems() const;
private:
class VisualizationSelectionZoneManagerPrivate;
spimpl::unique_impl_ptr<VisualizationSelectionZoneManagerPrivate> impl;
};
#endif // SCIQLOP_VISUALIZATIONSELECTIONZONEMANAGER_H