123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef EVALUATEVIEW_H
- #define EVALUATEVIEW_H
- #include <QWidget>
- class ProjectListWidget;
- class LineEdit;
- class ToolButton;
- class QVBoxLayout;
- class QHBoxLayout;
- class QLabel;
- /// 评估数据页面
- class EvaluateView : public QWidget
- {
- Q_OBJECT
- public:
- explicit EvaluateView(QWidget *parent = nullptr);
- signals:
- private:
- void initialize();
- void initLayout();
- void connectSiganlsAndSlots();
- private:
- QHBoxLayout *m_hBoxLayout = nullptr;
- QWidget *m_listWidget = nullptr;
- QVBoxLayout *m_listLayout = nullptr;
- LineEdit *m_searchLineEdit = nullptr;
- ProjectListWidget *m_projListWidget = nullptr;
- QWidget *m_projDetailWidget = nullptr;
- QVBoxLayout *m_projLayout = nullptr;
- QLabel *m_projNameLabel = nullptr;
- };
- #endif // EVALUATEVIEW_H
|