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.
o3de/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditor...

73 lines
2.0 KiB
C++

/*
* 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
#if !defined(Q_MOC_RUN)
#include <QMainWindow>
#include <AzCore/Serialization/SerializeContext.h>
#include <Editor/IEditor.h>
#include <AzToolsFramework/Slice/SliceMetadataEntityContextBus.h>
#endif
class QObjectPropertyModel;
class PropertyInfo;
namespace AZ
{
class Entity;
}
namespace AzToolsFramework
{
class ReflectedPropertyEditor;
class EntityPropertyEditor;
}
// This is the shell class to interface between Qt and the Sandbox. All Sandbox implementation is retained in an inherited class.
class QComponentLevelEntityEditorInspectorWindow
: public QMainWindow
, public AzToolsFramework::SliceMetadataEntityContextNotificationBus::Handler
, private IEditorNotifyListener
{
Q_OBJECT
public:
explicit QComponentLevelEntityEditorInspectorWindow(QWidget* parent = 0);
~QComponentLevelEntityEditorInspectorWindow();
void Init();
// you are required to implement this to satisfy the unregister/registerclass requirements on "AzToolsFramework::RegisterViewPane"
// make sure you pick a unique GUID
static const GUID& GetClassID()
{
//{F539C646-7FC6-4AF4-BB58-F8A161AF6746}
static const GUID guid =
{
0xF539C646, 0x7FC6, 0x4AF4, { 0x8a, 0x9c, 0xf8, 0xa1, 0x61, 0xaf, 0x67, 0x46 }
};
return guid;
}
AzToolsFramework::EntityPropertyEditor* GetPropertyEditor() { return m_propertyEditor; }
private:
void OnMetadataEntityAdded(AZ::EntityId /*entityId*/) override;
void RefreshPropertyEditor();
AZ::EntityId GetRootMetaDataEntityId() const;
//////////////////////////////////////////////////////////////////////////
// IEditorEventListener
void OnEditorNotifyEvent(EEditorNotifyEvent event) override;
AzToolsFramework::EntityPropertyEditor* m_propertyEditor;
};