1 Star 0 Fork 11

Dirac-sea/LXCustomPlot

forked from xmlhh/LXCustomPlot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
LXCustomPlot.cpp 2.67 KB
一键复制 编辑 原始数据 按行查看 历史
xmlhh 提交于 2020-12-22 15:16 . Type:feat
#include "LXCustomPlot.h"
#include <QDebug>
LXCustomPlot::LXCustomPlot(QWidget *parent)
: QCustomPlot(parent)
, m_isShowTracer(false)
, m_xTracer(Q_NULLPTR)
, m_yTracer(Q_NULLPTR)
, m_dataTracers(QList<LXTracer *>())
, m_lineTracer(Q_NULLPTR)
{
setOpenGl(true);
qDebug() << "OpenGL is open " << openGl();
}
void LXCustomPlot::mouseMoveEvent(QMouseEvent *event)
{
QCustomPlot::mouseMoveEvent(event);
if(m_isShowTracer)
{
//当前鼠标位置(像素坐标)
int x_pos = event->pos().x();
int y_pos = event->pos().y();
//像素坐标转成实际的x,y轴的坐标
float x_val = this->xAxis->pixelToCoord(x_pos);
float y_val = this->yAxis->pixelToCoord(y_pos);
if(Q_NULLPTR == m_xTracer)
{
m_xTracer = new LXTracer(this, LXTracer::XAxisTracer); //x轴
}
m_xTracer->updatePosition(x_val, y_val);
if(Q_NULLPTR == m_yTracer)
{
m_yTracer = new LXTracer(this, LXTracer::YAxisTracer); //y轴
}
m_yTracer->updatePosition(x_val, y_val);
int nTracerCount = m_dataTracers.count();
int nGraphCount = graphCount();
if(nTracerCount < nGraphCount)
{
for(int i = nTracerCount; i < nGraphCount; ++i)
{
LXTracer *tracer = new LXTracer(this, LXTracer::DataTracer);
m_dataTracers.append(tracer);
}
}
else if(nTracerCount > nGraphCount)
{
for(int i = nGraphCount; i < nTracerCount; ++i)
{
LXTracer *tracer = m_dataTracers[i];
if(tracer)
{
tracer->setVisible(false);
}
}
}
// for (int i = 0; i < nGraphCount; ++i)
// {
// XxwTracer *tracer = m_dataTracers[i];
// if(!tracer)
// {
// tracer = new XxwTracer(this, XxwTracer::DataTracer);
// }
// tracer->setVisible(true);
// tracer->setPen(this->graph(i)->pen());
// tracer->setBrush(Qt::NoBrush);
// tracer->setLabelPen(this->graph(i)->pen());
// auto iter = this->graph(i)->data()->findBegin(x_val);
// double value = iter->mainValue();
//// double value = this->graph(i)->data()->findBegin(x_val)->value;
// tracer->updatePosition(x_val, value);
// }
if(Q_NULLPTR == m_lineTracer)
{
m_lineTracer = new LXTraceLine(this, LXTraceLine::Both); //直线
}
m_lineTracer->updatePosition(x_val, y_val);
this->replot();//曲线重绘
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/sychang/LXCustomPlot.git
git@gitee.com:sychang/LXCustomPlot.git
sychang
LXCustomPlot
LXCustomPlot
main

搜索帮助