Integrating latest 47acbe8

This commit is contained in:
alexpete
2021-03-25 13:57:57 -07:00
parent 448c549698
commit 75dc720198
10312 changed files with 2711566 additions and 671451 deletions
@@ -26,6 +26,11 @@ namespace AZ
class Entity;
}
namespace AzToolsFramework
{
class EntityOutlinerWidget;
}
class OutlinerWidget;
// This is the shell class to interface between Qt and the Sandbox. All Sandbox implementation is retained in an inherited class.
@@ -60,3 +65,36 @@ public:
private:
OutlinerWidget* m_outlinerWidget;
};
// This is the shell class to interface between Qt and the Sandbox. All Sandbox implementation is retained in an inherited class.
class QEntityOutlinerWindow
: public QMainWindow
, public ISystemEventListener
{
Q_OBJECT
public:
explicit QEntityOutlinerWindow(QWidget* parent = 0);
~QEntityOutlinerWindow();
void Init();
// Used to receive events from widgets where SIGNALS aren't available or implemented yet.
// Required override.
void OnSystemEvent(ESystemEvent event, UINT_PTR wparam, UINT_PTR lparam) override;
// 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()
{
// {CEE50D0E-46A8-4CB4-9C5F-DCD374A78032}
static const GUID guid =
{
0xcee50d0e, 0x46a8, 0x4cb4, { 0x9c, 0x5f, 0xdc, 0xd3, 0x74, 0xa7, 0x80, 0x32 }
};
return guid;
}
private:
AzToolsFramework::EntityOutlinerWidget* m_outlinerWidget;
};