VisualizationGraphWidget.h
83 lines
| 2.7 KiB
| text/x-c
|
CLexer
r58 | #ifndef SCIQLOP_VISUALIZATIONGRAPHWIDGET_H | |||
#define SCIQLOP_VISUALIZATIONGRAPHWIDGET_H | ||||
r118 | #include "Visualization/IVisualizationWidget.h" | |||
Alexandre Leroux
|
r219 | #include <QLoggingCategory> | ||
r58 | #include <QWidget> | |||
r118 | #include <memory> | |||
#include <Common/spimpl.h> | ||||
Alexandre Leroux
|
r219 | Q_DECLARE_LOGGING_CATEGORY(LOG_VisualizationGraphWidget) | ||
Alexandre Leroux
|
r227 | class QCPRange; | ||
r512 | class SqpRange; | |||
r118 | class Variable; | |||
r58 | namespace Ui { | |||
class VisualizationGraphWidget; | ||||
} // namespace Ui | ||||
r118 | class VisualizationGraphWidget : public QWidget, public IVisualizationWidget { | |||
r58 | Q_OBJECT | |||
public: | ||||
Alexandre Leroux
|
r205 | explicit VisualizationGraphWidget(const QString &name = {}, QWidget *parent = 0); | ||
r58 | virtual ~VisualizationGraphWidget(); | |||
r539 | /// If acquisition isn't enable, requestDataLoading signal cannot be emit | |||
void enableAcquisition(bool enable); | ||||
r444 | ||||
r118 | void addVariable(std::shared_ptr<Variable> variable); | |||
r314 | void addVariableUsingGraph(std::shared_ptr<Variable> variable); | |||
Alexandre Leroux
|
r270 | /// Removes a variable from the graph | ||
void removeVariable(std::shared_ptr<Variable> variable) noexcept; | ||||
r118 | ||||
r512 | void setRange(std::shared_ptr<Variable> variable, const SqpRange &range); | |||
SqpRange graphRange() const noexcept; | ||||
void setGraphRange(const SqpRange &range); | ||||
r437 | ||||
r118 | // IVisualizationWidget interface | |||
Alexandre Leroux
|
r207 | void accept(IVisualizationWidgetVisitor *visitor) override; | ||
Alexandre Leroux
|
r209 | bool canDrop(const Variable &variable) const override; | ||
Alexandre Leroux
|
r327 | bool contains(const Variable &variable) const override; | ||
Alexandre Leroux
|
r218 | QString name() const override; | ||
r118 | ||||
r444 | ||||
r298 | signals: | |||
r539 | void synchronize(const SqpRange &range, const SqpRange &oldRange); | |||
void requestDataLoading(QVector<std::shared_ptr<Variable> > variable, const SqpRange &range, | ||||
const SqpRange &oldRange, bool synchronise); | ||||
r298 | ||||
r235 | ||||
r540 | void variableAdded(std::shared_ptr<Variable> var); | |||
r58 | private: | |||
Ui::VisualizationGraphWidget *ui; | ||||
r118 | ||||
class VisualizationGraphWidgetPrivate; | ||||
spimpl::unique_impl_ptr<VisualizationGraphWidgetPrivate> impl; | ||||
Alexandre Leroux
|
r179 | |||
private slots: | ||||
Alexandre Leroux
|
r269 | /// Slot called when right clicking on the graph (displays a menu) | ||
void onGraphMenuRequested(const QPoint &pos) noexcept; | ||||
Alexandre Leroux
|
r227 | |||
r444 | /// Rescale the X axe to range parameter | |||
void onRangeChanged(const QCPRange &t1, const QCPRange &t2); | ||||
Alexandre Leroux
|
r227 | |||
Alexandre Leroux
|
r481 | /// Slot called when a mouse move was made | ||
void onMouseMove(QMouseEvent *event) noexcept; | ||||
Alexandre Leroux
|
r179 | /// Slot called when a mouse wheel was made, to perform some processing before the zoom is done | ||
void onMouseWheel(QWheelEvent *event) noexcept; | ||||
r445 | /// Slot called when a mouse press was made, to activate the calibration of a graph | |||
void onMousePress(QMouseEvent *event) noexcept; | ||||
/// Slot called when a mouse release was made, to deactivate the calibration of a graph | ||||
void onMouseRelease(QMouseEvent *event) noexcept; | ||||
r235 | ||||
void onDataCacheVariableUpdated(); | ||||
r58 | }; | |||
#endif // SCIQLOP_VISUALIZATIONGRAPHWIDGET_H | ||||