wrote viewmodel model for project browsing

This commit is contained in:
itsmattkc
2019-06-21 11:51:50 -07:00
parent b6173a2c0d
commit 459ad13eda
19 changed files with 486 additions and 16 deletions
+6
View File
@@ -1,6 +1,7 @@
#ifndef PROJECT_PANEL_H
#define PROJECT_PANEL_H
#include "project/project.h"
#include "widget/panel/panel.h"
#include "widget/projectexplorer/projectexplorer.h"
@@ -10,11 +11,16 @@ class ProjectPanel : public PanelWidget
public:
ProjectPanel(QWidget* parent);
Project* project();
void set_project(Project* p);
protected:
virtual void changeEvent(QEvent* e) override;
private:
void Retranslate();
ProjectExplorer* explorer_;
};
#endif // PROJECT_H