Qt第二十四天

绘制动态曲线

#ifndef MAINWINDOW_H
#define MAINWINDOW_H


#include <QMainWindow>
#include <QTimer>
#include <QTime>
#include <qwt_plot.h>
#include <qwt_plot_curve.h>
#include <qwt_legend.h>
#include <math.h>
#include <qwt_plot_zoomer.h>
#include <qwt_plot_panner.h>
#include <qwt_plot_magnifier.h>
#include <qwt_plot_grid.h>
#include <qwt_scale_draw.h>
#include <qwt_plot_layout.h>
#include <qwt_plot_canvas.h>
#include <qwt_plot_renderer.h>
#include <qwt_legend.h>
#include <qwt_legend_label.h>
#include <qwt_plot_grid.h>
#include <qwt_plot_histogram.h>
#include <qwt_column_symbol.h>
#include <qwt_series_data.h>
#include <qwt_plot_dict.h>


namespace Ui {
class MainWindow;
}


class MainWindow : public QMainWindow
{
    Q_OBJECT


public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();
    void setupRealtimeDataDemo(QwtPlot *qwtplot);//设置动态图
    QVector<double> xdata;//提供动态数组
    QVector<double> ydata;//提供动态数组
    QTimer updateTimer;//时钟,用于刷新曲线
    QString demoName;//演示标题
    QwtPlotCurve *curve ;//曲线
    double getData(double inteval);//数据获取函数
    double getData1(double inteval);


    QVector<double> xdata2;//提供动态数组
    QVector<double> ydata2;
    QwtPlotCurve *curve2;//曲线2




private:
    Ui::MainWindow *ui;


private slots:
    void updatedataSlot();//更新数据并显示
    void showItem( const QVariant &itemInfo, bool on );
};


#endif // MAINWINDOW_H
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <qwt_plot_item.h>
#include <qwt_plot_dict.h>






MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    setupRealtimeDataDemo(ui->qwtPlot);


}






MainWindow::~MainWindow()
{
    delete ui;
}


void MainWindow::setupRealtimeDataDemo(QwtPlot *qwtplot)
{




    //初始化xdata,x对应长度为5的坐标,y初始全为0
    for(int i=1;i<5001;i++)//计算曲线数据
    {
        xdata.append(double(i)/1000-5);//xdata添加元素
        xdata2=xdata;
        ydata.append(0);
        ydata2=ydata;
    }


    demoName = "实时数据演示";
    qwtplot->setTitle(demoName);//设置标题
    qwtplot->setCanvasBackground(Qt::gray);//背景灰色
    //    qwtplot->insertLegend(legend1,QwtPlot::RightLegend);//添加图例(标注)


    curve = new QwtPlotCurve();//new一个曲线
    curve->setTitle("肌电信号");//曲线名字
    curve->setPen( Qt::yellow, 1 );//曲线的颜色黄色 宽度1;
    //    curve->setLegendAttribute(curve->LegendShowLine);//指定一个属性如何绘制图例图标,显示图例的标志,这里显示线的颜色。


    curve2 = new QwtPlotCurve();//new一个曲线
    curve2->setTitle("另一个信号");//曲线名字
    curve2->setPen( Qt::green, 1 );//曲线的颜色绿色 宽度1;


    QTime curtime;
    curtime=curtime.currentTime();
    qwtplot->setAxisTitle(QwtPlot::xBottom, " 系统运行时间");//设置轴标题
    qwtplot->setAxisTitle(QwtPlot::yLeft,"肌电图");//设置轴标题
    qwtplot->setAxisScale(QwtPlot::yLeft,-5,5,0);//禁用自动缩放比例尺,为某个坐标轴指定一个修改的比例尺
    qwtplot->setAxisScale(QwtPlot::xBottom,-5,0,0);//禁用自动缩放比例尺,为某个坐标轴指定一个修改的比例尺


    QwtPlotZoomer *zoomer = new QwtPlotZoomer( qwtplot->canvas() );//可变焦距镜头
    zoomer->setRubberBandPen( QColor( Qt::blue ) );
    zoomer->setTrackerPen( QColor( Qt::black ) );
    zoomer->setMousePattern(QwtEventPattern::MouseSelect2,Qt::RightButton, Qt::ControlModifier );
    zoomer->setMousePattern(QwtEventPattern::MouseSelect3,Qt::RightButton );
    QwtPlotMagnifier *magnifier = new QwtPlotMagnifier( qwtplot->canvas() );//使用滚轮放大/缩小                //默认的滑轮及右键缩放功能  图形的整体缩放


    //magnifier->setMouseButton(Qt::LeftButton);     //设置哪个按钮与滑轮为缩放画布  如果不设置(注册掉当前行)按钮默认为滑轮以及右键为缩放


    QwtPlotGrid *grid = new QwtPlotGrid();//new网格线
    grid->enableX( true );//设置X网格线
    grid->enableY( true );
    grid->setMajorPen( Qt::black, 0, Qt::DotLine );//设置网格线性和颜色
    grid->attach(qwtplot);//把曲线附加到QwlPlot上


    connect(&updateTimer,SIGNAL(timeout()),this,SLOT(updatedataSlot()));//信号和槽
    updateTimer.start(0);//设置刷新时间


    QwtLegend *legend = new QwtLegend;
    legend->setDefaultItemMode( QwtLegendData::Checkable );//图例可被点击
    qwtplot->insertLegend( legend, QwtPlot::RightLegend );//图例位置设计


    connect( legend, &QwtLegend::checked,this,&MainWindow::showItem);//点击图例显示曲线




    ui->qwtPlot->replot();
}


void MainWindow::showItem( const QVariant &itemInfo, bool on )//显示曲线
{
    QwtPlotItem *plotItem =ui->qwtPlot->infoToItem( itemInfo );
    if ( plotItem )
        plotItem->setVisible( on );
}
/**
 * @brief getData
 * @param inteval
 * @return
 * 获取一个值  模拟串口接收到的值
 */
double MainWindow::getData(double time){


    double s = qSin( time * M_PI * 2 )*3 ;
    return s;
}
double MainWindow::getData1(double inteval)
{
    double s=qTan(inteval*M_PI*2);
    return s;
}








//用于更新ydata
void MainWindow::updatedataSlot()
{
    static QTime dataTime(QTime::currentTime());
    long int eltime = dataTime.elapsed();
    static int lastpointtime = 0;


    int size = (eltime - lastpointtime);




    if(size>0){//有数据传入
        ydata.erase(ydata.begin(),ydata.begin()+size);//擦除多余的数据
        ydata2.erase(ydata2.begin(),ydata2.begin()+size);//擦除多余的数据
        for(int i=1;i<size+1;i++){
            ydata.append(getData((((double)lastpointtime+i)/1000)));
            ydata2.append(getData1((((double)lastpointtime+i)/1000)));
        }


        lastpointtime = eltime;
    }






    curve->setSamples(xdata,ydata);//设置曲线数据
    curve2->setSamples(xdata2,ydata2);
    curve->attach(ui->qwtPlot);//把曲线附加到QwlPlot上
    curve2->attach(ui->qwtPlot);
    ui->qwtPlot->replot();//刷新qwt




}


猜你喜欢

转载自blog.csdn.net/theRookie1/article/details/85268818