日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Qt工作笔记-使用QCustomplot实现鼠标拖动数据点画曲线

發(fā)布時間:2025/3/15 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Qt工作笔记-使用QCustomplot实现鼠标拖动数据点画曲线 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

運行截圖如下:


邏輯很簡單,下面直接上代碼。


widget.h

#ifndef WIDGET_H #define WIDGET_H#include <QWidget>#include "qcustomplot.h"namespace Ui { class Widget; }class Widget : public QWidget {Q_OBJECTpublic:explicit Widget(QWidget *parent = 0);~Widget();public slots:void myMousePressEvent(QMouseEvent *event);void myMouseReleaseEvent(QMouseEvent *event);void myMouseMoveEvent(QMouseEvent *event);private:Ui::Widget *ui;QString m_myName;QVector<double> x,y;int m_point; };#endif // WIDGET_H

widget.cpp

#include "widget.h" #include "ui_widget.h"#include <QDebug> #include <math.h> #include <QTime>Widget::Widget(QWidget *parent) :QWidget(parent),x(100),y(100),m_point(-1),ui(new Ui::Widget) {ui->setupUi(this);m_myName="我的折線圖";for(int i=0;i<100;i++){x[i]=i;y[i]=1;}this->setWindowTitle("CSDN IT1995");ui->plot->addGraph();ui->plot->graph()->setData(x,y);ui->plot->graph()->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssCircle, QPen(Qt::black, 1.5), QBrush(Qt::white), 9));ui->plot->setInteractions(QCP::iRangeDrag|QCP::iRangeZoom);connect(ui->plot,SIGNAL(mousePress(QMouseEvent*)),this,SLOT(myMousePressEvent(QMouseEvent*)));connect(ui->plot,SIGNAL(mouseRelease(QMouseEvent*)),this,SLOT(myMouseReleaseEvent(QMouseEvent*)));connect(ui->plot,SIGNAL(mouseMove(QMouseEvent*)),this,SLOT(myMouseMoveEvent(QMouseEvent*))); }Widget::~Widget() {delete ui; }void Widget::myMousePressEvent(QMouseEvent *event) {qDebug()<<"mousePressEvent";int x_pos = event->pos().x();int y_pos = event->pos().y();float x_val = ui->plot->xAxis->pixelToCoord(x_pos);float y_val = ui->plot->yAxis->pixelToCoord(y_pos);for(int i=0;i<100;i++){if(fabs(x_val-x.at(i))<0.3&&fabs(y_val-y.at(i))<0.3){qDebug()<<"現(xiàn)在選擇的是第"<<i<<"個點";m_point=i;break;}}}void Widget::myMouseReleaseEvent(QMouseEvent *event) {ui->plot->setInteractions(QCP::iRangeDrag|QCP::iRangeZoom);m_point=-1; }void Widget::myMouseMoveEvent(QMouseEvent *event) {if(m_point==-1)return;ui->plot->setInteractions(QCP::iRangeZoom);int x_pos = event->pos().x();int y_pos = event->pos().y();float x_val = ui->plot->xAxis->pixelToCoord(x_pos);float y_val = ui->plot->yAxis->pixelToCoord(y_pos);x[m_point]=x_val;y[m_point]=y_val;ui->plot->graph()->setData(x, y);ui->plot->replot();}


main.cpp

#include "widget.h" #include <QApplication>int main(int argc, char *argv[]) {QApplication a(argc, argv);Widget w;w.show();return a.exec(); }

總結(jié)

以上是生活随笔為你收集整理的Qt工作笔记-使用QCustomplot实现鼠标拖动数据点画曲线的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。