VisualizationGraphRenderingDelegate.h
20 lines
| 551 B
| text/x-c
|
CLexer
Alexandre Leroux
|
r442 | #ifndef SCIQLOP_VISUALIZATIONGRAPHRENDERINGDELEGATE_H | ||
#define SCIQLOP_VISUALIZATIONGRAPHRENDERINGDELEGATE_H | ||||
#include <Common/spimpl.h> | ||||
class QCustomPlot; | ||||
class QMouseEvent; | ||||
class VisualizationGraphRenderingDelegate { | ||||
public: | ||||
explicit VisualizationGraphRenderingDelegate(QCustomPlot &plot); | ||||
Alexandre Leroux
|
r443 | void onMouseMove(QMouseEvent *event) noexcept; | ||
Alexandre Leroux
|
r442 | private: | ||
class VisualizationGraphRenderingDelegatePrivate; | ||||
spimpl::unique_impl_ptr<VisualizationGraphRenderingDelegatePrivate> impl; | ||||
}; | ||||
#endif // SCIQLOP_VISUALIZATIONGRAPHRENDERINGDELEGATE_H | ||||