-
大小: 2KB文件类型: .cpp金币: 1下载: 0 次发布日期: 2021-05-12
- 语言: C/C++
- 标签: QCustomPlot
资源简介
使用QCustomPlot 类实现Qt实时波形绘制
可通过按钮定时器等控制实时波形
代码片段和文件信息
#include “widget.h“
Widget::Widget(QWidget *parent)
: QWidget(parent)
{
QPushButton *Button = new QPushButton(this);
Button->setText(“绘图“);
connect(Button&QPushButton::pressedthis&Widget::PlotDeal);
QPushButton *Button1 = new QPushButton(this);
Button1->setText(“关闭“);
Button1->move(1000);
connect(Button1&QPushButton::pressedthis&Widget::PlotClose);
timer = new QTimer; //定时器
connect(timer SIGNAL(timeout()) this SLOT(PlotReplot()));//定时器槽函数
timer->start(500); //定时器定时时间
cPlot.addGraph();
cPlot.graph(0)->setName(“Data1“);
cPlot.graph(0)->setPen(QPen(Qt::blue));
cPlot.addGraph();
cPlot.graph(1)->setName(“Data1“);
cPlot.grap
- 上一篇:GSM 接收短信
- 下一篇:vigenere加密解密C语言代码
评论
共有 条评论