LayerExtenderContextMenu.h 752 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #if !defined(Q_MOC_RUN)
  10. #include <GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.h>
  11. #endif
  12. namespace LandscapeCanvasEditor
  13. {
  14. class LayerExtenderContextMenu
  15. : public GraphCanvas::EditorContextMenu
  16. {
  17. Q_OBJECT
  18. public:
  19. AZ_CLASS_ALLOCATOR(LayerExtenderContextMenu, AZ::SystemAllocator);
  20. LayerExtenderContextMenu(const GraphCanvas::NodePaletteConfig& nodePaletteConfig, QWidget* parent = nullptr);
  21. protected slots:
  22. void SetupDisplay() override;
  23. };
  24. }