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.
87 lines
2.4 KiB
C++
87 lines
2.4 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
|
|
*
|
|
*/
|
|
|
|
#include <EditorDefs.h>
|
|
#include "CryEdit.h"
|
|
#include "UI/QComponentEntityEditorOutlinerWindow.h"
|
|
#include "UI/Outliner/OutlinerWidget.hxx"
|
|
|
|
#include <AzCore/Component/Entity.h>
|
|
#include <AzCore/Component/ComponentApplicationBus.h>
|
|
|
|
#include <AzToolsFramework/UI/Outliner/EntityOutlinerWidget.hxx>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
QComponentEntityEditorOutlinerWindow::QComponentEntityEditorOutlinerWindow(QWidget* parent)
|
|
: QMainWindow(parent)
|
|
, m_outlinerWidget(nullptr)
|
|
{
|
|
gEnv->pSystem->GetISystemEventDispatcher()->RegisterListener(this);
|
|
|
|
Init();
|
|
}
|
|
|
|
QComponentEntityEditorOutlinerWindow::~QComponentEntityEditorOutlinerWindow()
|
|
{
|
|
gEnv->pSystem->GetISystemEventDispatcher()->RemoveListener(this);
|
|
}
|
|
|
|
void QComponentEntityEditorOutlinerWindow::OnSystemEvent([[maybe_unused]] ESystemEvent event, [[maybe_unused]] UINT_PTR wparam, [[maybe_unused]] UINT_PTR lparam)
|
|
{
|
|
}
|
|
|
|
void QComponentEntityEditorOutlinerWindow::Init()
|
|
{
|
|
QVBoxLayout* layout = new QVBoxLayout();
|
|
|
|
m_outlinerWidget = new OutlinerWidget(nullptr);
|
|
layout->addWidget(m_outlinerWidget);
|
|
|
|
QWidget* window = new QWidget();
|
|
window->setLayout(layout);
|
|
setCentralWidget(window);
|
|
}
|
|
|
|
QEntityOutlinerWindow::QEntityOutlinerWindow(QWidget* parent)
|
|
: QMainWindow(parent)
|
|
, m_outlinerWidget(nullptr)
|
|
{
|
|
gEnv->pSystem->GetISystemEventDispatcher()->RegisterListener(this);
|
|
|
|
Init();
|
|
}
|
|
|
|
QEntityOutlinerWindow::~QEntityOutlinerWindow()
|
|
{
|
|
gEnv->pSystem->GetISystemEventDispatcher()->RemoveListener(this);
|
|
}
|
|
|
|
void QEntityOutlinerWindow::OnSystemEvent([[maybe_unused]] ESystemEvent event, [[maybe_unused]] UINT_PTR wparam, [[maybe_unused]] UINT_PTR lparam)
|
|
{
|
|
}
|
|
|
|
void QEntityOutlinerWindow::Init()
|
|
{
|
|
QVBoxLayout* layout = new QVBoxLayout();
|
|
|
|
m_outlinerWidget = new AzToolsFramework::EntityOutlinerWidget(nullptr);
|
|
layout->addWidget(m_outlinerWidget);
|
|
|
|
QWidget* window = new QWidget();
|
|
window->setLayout(layout);
|
|
setCentralWidget(window);
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// End of context menu handling
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <UI/moc_QComponentEntityEditorOutlinerWindow.cpp>
|
|
|