1234567891011121314151617181920212223242526272829303132 |
- #ifndef HOMEVIEW_H
- #define HOMEVIEW_H
- #include <QWidget>
- class PushButton;
- class SearchLineEdit;
- class QVBoxLayout;
- class QHBoxLayout;
- class QLabel;
- class HomeView : public QWidget
- {
- Q_OBJECT
- public:
- explicit HomeView(QWidget *parent = nullptr);
- private:
- void initialize();
- void initLayout();
- void connectSignalsAndSlots();
- private:
- QVBoxLayout *m_vBoxLayout = nullptr;
- QLabel *m_titleLabel = nullptr;
- QHBoxLayout *m_hBoxLayout = nullptr;
- SearchLineEdit *m_searchLineEdit = nullptr;
- PushButton *m_createProjPushButton = nullptr;
- };
- #endif // HOMEVIEW_H
|