##// 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:

r965:bb648cea0303
r1370:c3077e0c31af
Show More
VisualizationCursorItem.h
26 lines | 682 B | text/x-c | CLexer
#ifndef SCIQLOP_VISUALIZATIONCURSORITEM_H
#define SCIQLOP_VISUALIZATIONCURSORITEM_H
#include <Common/spimpl.h>
#include <SqpApplication.h>
class QCustomPlot;
class VisualizationCursorItem {
public:
VisualizationCursorItem(QCustomPlot *plot);
void setVisible(bool value);
bool isVisible() const;
void setPosition(double value);
void setAbsolutePosition(double value);
void setOrientation(Qt::Orientation orientation);
void setLabelText(const QString &text);
private:
class VisualizationCursorItemPrivate;
spimpl::unique_impl_ptr<VisualizationCursorItemPrivate> impl;
};
#endif // SCIQLOP_VISUALIZATIONCURSORITEM_H