You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include <ProjectInfo.h>
|
|
#include <ScreenWidget.h>
|
|
#endif
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QStackedWidget)
|
|
QT_FORWARD_DECLARE_CLASS(QTabWidget)
|
|
QT_FORWARD_DECLARE_CLASS(QPushButton)
|
|
QT_FORWARD_DECLARE_CLASS(QFrame)
|
|
|
|
namespace O3DE::ProjectManager
|
|
{
|
|
QT_FORWARD_DECLARE_CLASS(ScreenHeader)
|
|
QT_FORWARD_DECLARE_CLASS(UpdateProjectSettingsScreen)
|
|
QT_FORWARD_DECLARE_CLASS(GemCatalogScreen)
|
|
|
|
class UpdateProjectCtrl : public ScreenWidget
|
|
{
|
|
public:
|
|
explicit UpdateProjectCtrl(QWidget* parent = nullptr);
|
|
~UpdateProjectCtrl() = default;
|
|
ProjectManagerScreen GetScreenEnum() override;
|
|
|
|
protected:
|
|
void NotifyCurrentScreen() override;
|
|
|
|
protected slots:
|
|
void HandleBackButton();
|
|
void HandleNextButton();
|
|
void HandleGemsButton();
|
|
void UpdateCurrentProject(const QString& projectPath);
|
|
|
|
private:
|
|
void Update();
|
|
void UpdateSettingsScreen();
|
|
bool UpdateProjectSettings(bool shouldConfirm = false);
|
|
|
|
enum ScreenOrder
|
|
{
|
|
Settings,
|
|
Gems
|
|
};
|
|
|
|
ScreenHeader* m_header = nullptr;
|
|
QStackedWidget* m_stack = nullptr;
|
|
UpdateProjectSettingsScreen* m_updateSettingsScreen = nullptr;
|
|
GemCatalogScreen* m_gemCatalogScreen = nullptr;
|
|
|
|
QPushButton* m_backButton = nullptr;
|
|
QPushButton* m_nextButton = nullptr;
|
|
QVector<ProjectManagerScreen> m_screensOrder;
|
|
|
|
ProjectInfo m_projectInfo;
|
|
};
|
|
|
|
} // namespace O3DE::ProjectManager
|