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.
53 lines
1.8 KiB
C++
53 lines
1.8 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
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AzCore/EBus/EBus.h>
|
|
#include <AzCore/RTTI/RTTI.h>
|
|
|
|
namespace QtForPython
|
|
{
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// Used to fetch the data points a bootstrap script requires to hook in
|
|
// QtForPython (aka PySide2)
|
|
struct QtBootstrapParameters
|
|
{
|
|
AZ_TYPE_INFO(QtBootstrapParameters, "{4103CF43-6CF7-413D-B2C8-D511E23BAB50}");
|
|
|
|
//! The path of the Qt binary files such as qt5core.dll
|
|
AZStd::string m_qtBinaryFolder;
|
|
|
|
//! The path of the Qt plugins such as /qtlibs/plugins
|
|
AZStd::string m_qtPluginsFolder;
|
|
|
|
//! The 'winId' of the main Qt window in the Open 3D Engine editor
|
|
AZ::u64 m_mainWindowId;
|
|
};
|
|
|
|
//! Used to fetch tools framework data
|
|
class QtForPythonRequests
|
|
: public AZ::EBusTraits
|
|
{
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// EBusTraits overrides
|
|
static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single;
|
|
static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::Single;
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
//! Check to make sure Python is ready and active
|
|
virtual bool IsActive() const = 0;
|
|
|
|
//! Fetches the data a bootstrap script requires to hook in QtForPython
|
|
virtual QtBootstrapParameters GetQtBootstrapParameters() const = 0;
|
|
};
|
|
using QtForPythonRequestBus = AZ::EBus<QtForPythonRequests>;
|
|
}
|
|
|