You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
529 B
C++
34 lines
529 B
C++
#pragma once
|
|
|
|
#include "iSubWnd.h"
|
|
|
|
class iGuiPlotEx;
|
|
class M_SUB_WND_EXPORT iSubWndFree : public iSubWnd
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit iSubWndFree(QWidget *parent = 0, QString sExt = "");
|
|
~iSubWndFree();
|
|
|
|
// 配置窗体
|
|
virtual void configWnd();
|
|
|
|
//virtual void runUpdate(); //刷新
|
|
|
|
protected:
|
|
|
|
// 初始化UI
|
|
virtual QWidget* initUiMainWx();
|
|
void initChart();
|
|
virtual void initUiDockPtys();
|
|
virtual void initUiDockWxs();
|
|
|
|
public slots:
|
|
|
|
private:
|
|
iGuiPlotEx* m_pWxPlot;
|
|
|
|
};
|