ProjectExplorer: Make project window state persistent

Task-number: QTCREATORBUG-24690
Change-Id: Ia261fc5a98681676e8d67e6d840f2f48073cdbb2
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2020-10-06 14:05:45 +02:00
parent 6c841dfbd0
commit a8a6a9e774
2 changed files with 36 additions and 0 deletions

View File

@@ -64,6 +64,12 @@ public:
void activateProjectPanel(Utils::Id panelId);
private:
void hideEvent(QHideEvent *event) override;
void showEvent(QShowEvent *event) override;
void savePersistentSettings() const;
void loadPersistentSettings();
const std::unique_ptr<ProjectWindowPrivate> d;
};