git mv Code\Sandbox\Plugins Code/Editor/Plugins
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
+71
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* 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 <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;
|
||||
};
|
||||
Reference in New Issue
Block a user