12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef INDEXSYSTEMWIDGET_H
- #define INDEXSYSTEMWIDGET_H
- #include "EvalWidget.h"
- class CMindView;
- /**
- * @brief The IndexSystemWidget class
- * 指标体系
- */
- class IndexSystemWidget : public EvalWidget
- {
- Q_OBJECT
- public:
- explicit IndexSystemWidget(ProjectInfo *proj, int type = 0, QWidget *parent = nullptr);
- void initWidgets();
- void initLayout();
- void contextMenuEvent(QContextMenuEvent *event) override;
- signals:
- public slots:
- void slotSelectAllNodes();
- void slotClearAllNodes();
- void slotCreateRootNode();
- private:
- CMindView *m_mindView = nullptr;
- };
- #endif // INDEXSYSTEMWIDGET_H
|