12345678910111213141516171819202122232425262728293031323334 |
- #ifndef PROJECTVIEW_H
- #define PROJECTVIEW_H
- #include <QWidget>
- class ProjectListWidget;
- class PushButton;
- class SearchLineEdit;
- class QVBoxLayout;
- class QHBoxLayout;
- class QLabel;
- /// 工程视图
- /// 可以查看和编辑指标体系、配置专家
- class ProjectView : public QWidget
- {
- Q_OBJECT
- public:
- explicit ProjectView(QWidget *parent = nullptr);
- signals:
- private:
- QHBoxLayout *m_hBoxLayout = nullptr;
- ProjectListWidget *m_projListWidget = nullptr;
- QVBoxLayout *m_prioVBoxLayout = nullptr;
- QWidget *m_projContentWidget = nullptr;
- QLabel *m_projNameLabel = nullptr;
- };
- #endif // PROJECTVIEW_H
|