1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef BASEDISPLAY_WGT_H
- #define BASEDISPLAY_WGT_H
- #include <QWidget>
- #include <QPushButton>
- #include <QHBoxLayout>
- #include "infotree_wgt.h"
- namespace Ui {
- class BaseDisplay_wgt;
- }
- class BaseDisplay_wgt : public QWidget
- {
- Q_OBJECT
- public:
- explicit BaseDisplay_wgt(QWidget *parent = nullptr);
- ~BaseDisplay_wgt();
- void init_ui(QWidget *para);
- private:
- Ui::BaseDisplay_wgt *ui;
- QVBoxLayout *wgt_layout ;
- QWidget *current_page;
- QWidget *tree_page;
- QWidget *m_tree_path_displaWgt;//绘制路径
- InfoTree_wgt *treeWidgetExample;
- void set_wgt(QWidget *w);
- void get_par();//获取参数树
- void back();
- };
- #endif // BASEDISPLAY_WGT_H
|