/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #pragma once #include #include #include namespace O3DE::ProjectManager { enum class ProjectManagerScreen { Invalid = -1, Empty, CreateProject, NewProjectSettings, GemCatalog, Projects, UpdateProject, UpdateProjectSettings, Engine, EngineSettings, GemRepos }; static QHash s_ProjectManagerStringNames = { { "Empty", ProjectManagerScreen::Empty}, { "CreateProject", ProjectManagerScreen::CreateProject}, { "NewProjectSettings", ProjectManagerScreen::NewProjectSettings}, { "GemCatalog", ProjectManagerScreen::GemCatalog}, { "Projects", ProjectManagerScreen::Projects}, { "UpdateProject", ProjectManagerScreen::UpdateProject}, { "UpdateProjectSettings", ProjectManagerScreen::UpdateProjectSettings}, { "Engine", ProjectManagerScreen::Engine}, { "EngineSettings", ProjectManagerScreen::EngineSettings}, { "GemRepos", ProjectManagerScreen::GemRepos} }; // need to define qHash for ProjectManagerScreen when using scoped enums inline uint qHash(ProjectManagerScreen key, uint seed) { return ::qHash(static_cast(key), seed); } } // namespace O3DE::ProjectManager