##// END OF EJS Templates
Creates method that will display a tooltip and a tracer with data point information after a while
Creates method that will display a tooltip and a tracer with data point information after a while

File last commit:

r443:0277630b5c10
r443:0277630b5c10
Show More
VisualizationGraphRenderingDelegate.cpp
17 lines | 590 B | text/x-c | CppLexer
/ gui / src / Visualization / VisualizationGraphRenderingDelegate.cpp
Alexandre Leroux
Creates a delegate offering methods for rendering a graph
r442 #include "Visualization/VisualizationGraphRenderingDelegate.h"
#include "Visualization/qcustomplot.h"
struct VisualizationGraphRenderingDelegate::VisualizationGraphRenderingDelegatePrivate {
explicit VisualizationGraphRenderingDelegatePrivate(QCustomPlot &plot) : m_Plot{plot} {}
QCustomPlot &m_Plot;
};
VisualizationGraphRenderingDelegate::VisualizationGraphRenderingDelegate(QCustomPlot &plot)
: impl{spimpl::make_unique_impl<VisualizationGraphRenderingDelegatePrivate>(plot)}
{
}
Alexandre Leroux
Creates method that will display a tooltip and a tracer with data point information after a while
r443
void VisualizationGraphRenderingDelegate::onMouseMove(QMouseEvent *event) noexcept
{
}