| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * 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/Component/Component.h>
- #include <AzToolsFramework/API/ToolsApplicationAPI.h>
- #include <AzToolsFramework/ActionManager/ActionManagerRegistrationNotificationBus.h>
- #include <Editor/UI/AWSCoreEditorMenu.h>
- namespace AWSCore
- {
- class AWSCoreEditorSystemComponent
- : public AZ::Component
- , private AzToolsFramework::ActionManagerRegistrationNotificationBus::Handler
- , private AWSCoreEditorRequestBus::Handler
- {
- public:
- static constexpr const char EDITOR_HELP_MENU_TEXT[] = "&Help";
- AZ_COMPONENT(AWSCoreEditorSystemComponent, "{6098B19B-90F2-41DC-8D01-70277980249D}");
- AWSCoreEditorSystemComponent() = default;
- static void Reflect(AZ::ReflectContext* context);
- static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
- static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
- static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
- static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
- private:
- // AZ::Component interface implementation
- void Init() override;
- void Activate() override;
- void Deactivate() override;
- // AWSCoreEditorRequestBus interface implementation
- void CreateSubMenu(const AZStd::string& parentMenuIdentifier, const char* const menuDetails[], int sort) override;
- void AddExternalLinkAction(const AZStd::string& menuIdentifier, const char* const actionDetails[], int sort) override;
- // ActionManagerRegistrationNotificationBus implementation
- void OnMenuBarRegistrationHook() override;
- void OnMenuBindingHook() override;
- AZStd::unique_ptr<AWSCoreEditorMenu> m_awsCoreEditorMenu;
- AzToolsFramework::ActionManagerInterface* m_actionManagerInterface = nullptr;
- AzToolsFramework::MenuManagerInterface* m_menuManagerInterface = nullptr;
- AzToolsFramework::MenuManagerInternalInterface* m_menuManagerInternalInterface = nullptr;
- };
- } // namespace AWSCore
|