c98d14ad92
• Working toward creating a standalone application template Removing application level modules and system components that make it difficult to navigate the project and add a lot of boilerplate code • Temporarily keeping viewport module and components because shutting down the application deactivates module entities before system entities without respecting component service dependency order. This caused several RPI assets and names to leak because they were not being destroyed in the correct order. • Fixing include paths not referenced source folders • Mostly cleanup and reorganization, no behavioral changes Signed-off-by: Guthrie Adams <guthadam@amazon.com>
33 lines
956 B
C++
33 lines
956 B
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 <AzCore/PlatformDef.h>
|
|
#include <Window/ToolBar/ShaderManagementConsoleToolBar.h>
|
|
|
|
AZ_PUSH_DISABLE_WARNING(4251 4800, "-Wunknown-warning-option") // disable warnings spawned by QT
|
|
#include <AzQtComponents/Components/Widgets/ToolBar.h>
|
|
#include <QMenu>
|
|
#include <QToolButton>
|
|
#include <QAction>
|
|
AZ_POP_DISABLE_WARNING
|
|
|
|
namespace ShaderManagementConsole
|
|
{
|
|
ShaderManagementConsoleToolBar::ShaderManagementConsoleToolBar(QWidget* parent)
|
|
: QToolBar(parent)
|
|
{
|
|
AzQtComponents::ToolBar::addMainToolBarStyle(this);
|
|
}
|
|
|
|
ShaderManagementConsoleToolBar::~ShaderManagementConsoleToolBar()
|
|
{
|
|
}
|
|
} // namespace ShaderManagementConsole
|
|
|
|
#include <Window/ToolBar/moc_ShaderManagementConsoleToolBar.cpp>
|