##// END OF EJS Templates
Call the calculation of the thresholds in the scale editor (with each click on the 'automatic' mode)
Call the calculation of the thresholds in the scale editor (with each click on the 'automatic' mode)

File last commit:

r965:bb648cea0303
r1021:b014e09f2329
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