##// END OF EJS Templates
More GUI tests refactoring, this will allow more complex tests and ease sync graph tests...
More GUI tests refactoring, this will allow more complex tests and ease sync graph tests Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1049:ead367adcd3d
r1370:c3077e0c31af
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