/* * 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 #include #include #include #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; };