ProjectView.h 664 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef PROJECTVIEW_H
  2. #define PROJECTVIEW_H
  3. #include <QWidget>
  4. class ProjectListWidget;
  5. class PushButton;
  6. class SearchLineEdit;
  7. class QVBoxLayout;
  8. class QHBoxLayout;
  9. class QLabel;
  10. /// 工程视图
  11. /// 可以查看和编辑指标体系、配置专家
  12. class ProjectView : public QWidget
  13. {
  14. Q_OBJECT
  15. public:
  16. explicit ProjectView(QWidget *parent = nullptr);
  17. signals:
  18. private:
  19. QHBoxLayout *m_hBoxLayout = nullptr;
  20. ProjectListWidget *m_projListWidget = nullptr;
  21. QVBoxLayout *m_prioVBoxLayout = nullptr;
  22. QWidget *m_projContentWidget = nullptr;
  23. QLabel *m_projNameLabel = nullptr;
  24. };
  25. #endif // PROJECTVIEW_H