data_plot.h

来自「red hat9 qt4.3.2下qwt数据绘图曲线」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef _DATA_PLOT_H#define _DATA_PLOT_H 1#include <qwt_plot.h>const int PLOT_SIZE = 201;      // 0 to 200class DataPlot : public QwtPlot{    Q_OBJECTpublic:    DataPlot(QWidget* = NULL);public slots:    void setTimerInterval(double interval);protected:    virtual void timerEvent(QTimerEvent *e);private:    void alignScales();    double d_x[PLOT_SIZE];     double d_y[PLOT_SIZE];     double d_z[PLOT_SIZE];    int d_interval; // timer in ms    int d_timerId;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?