EvaluateView.h 837 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef EVALUATEVIEW_H
  2. #define EVALUATEVIEW_H
  3. #include <QWidget>
  4. class ProjectListWidget;
  5. class LineEdit;
  6. class ToolButton;
  7. class QVBoxLayout;
  8. class QHBoxLayout;
  9. class QLabel;
  10. /// 评估数据页面
  11. class EvaluateView : public QWidget
  12. {
  13. Q_OBJECT
  14. public:
  15. explicit EvaluateView(QWidget *parent = nullptr);
  16. signals:
  17. private:
  18. void initialize();
  19. void initLayout();
  20. void connectSiganlsAndSlots();
  21. private:
  22. QHBoxLayout *m_hBoxLayout = nullptr;
  23. QWidget *m_listWidget = nullptr;
  24. QVBoxLayout *m_listLayout = nullptr;
  25. LineEdit *m_searchLineEdit = nullptr;
  26. ProjectListWidget *m_projListWidget = nullptr;
  27. QWidget *m_projDetailWidget = nullptr;
  28. QVBoxLayout *m_projLayout = nullptr;
  29. QLabel *m_projNameLabel = nullptr;
  30. };
  31. #endif // EVALUATEVIEW_H