IndexSystemWidget.h 637 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef INDEXSYSTEMWIDGET_H
  2. #define INDEXSYSTEMWIDGET_H
  3. #include "EvalWidget.h"
  4. class CMindView;
  5. /**
  6. * @brief The IndexSystemWidget class
  7. * 指标体系
  8. */
  9. class IndexSystemWidget : public EvalWidget
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit IndexSystemWidget(ProjectInfo *proj, int type = 0, QWidget *parent = nullptr);
  14. void initWidgets();
  15. void initLayout();
  16. void contextMenuEvent(QContextMenuEvent *event) override;
  17. signals:
  18. public slots:
  19. void slotSelectAllNodes();
  20. void slotClearAllNodes();
  21. void slotCreateRootNode();
  22. private:
  23. CMindView *m_mindView = nullptr;
  24. };
  25. #endif // INDEXSYSTEMWIDGET_H