6ebea13783
* [LYN-2520] Gem Catalog - Gem Inspector / Info Panel * Extended the gem info with a directory and documentation link, binary size in bytes and added some helper functions. * Added the gem inspector widget that hooks into the selection model. * Info panel is vertically scrollable and based on the UX designs. * Added a gem sub widget which holds several gem tags, a title and a description and is reused for the depending and conflicting gems. * Extended the gem model with several new roles and data elements. * Added more gem info test data before we got access to the real data.
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#if !defined(Q_MOC_RUN)
|
|
#include <ScreenWidget.h>
|
|
#include <GemCatalog/GemListView.h>
|
|
#include <GemCatalog/GemInspector.h>
|
|
#include <GemCatalog/GemModel.h>
|
|
#endif
|
|
|
|
namespace O3DE::ProjectManager
|
|
{
|
|
class GemCatalogScreen
|
|
: public ScreenWidget
|
|
{
|
|
public:
|
|
explicit GemCatalogScreen(QWidget* parent = nullptr);
|
|
~GemCatalogScreen() = default;
|
|
ProjectManagerScreen GetScreenEnum() override;
|
|
QString GetNextButtonText() override;
|
|
|
|
private:
|
|
QVector<GemInfo> GenerateTestData();
|
|
|
|
GemListView* m_gemListView = nullptr;
|
|
GemInspector* m_gemInspector = nullptr;
|
|
GemModel* m_gemModel = nullptr;
|
|
};
|
|
} // namespace O3DE::ProjectManager
|