GraphMetaInfoHandler.h 926 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma once
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. #include <AzCore/Memory/Memory.h>
  10. #include <SceneAPI/SceneCore/Events/GraphMetaInfoBus.h>
  11. namespace AZ
  12. {
  13. namespace SceneAPI
  14. {
  15. namespace UI
  16. {
  17. class GraphMetaInfoHandler : public Events::GraphMetaInfoBus::Handler
  18. {
  19. public:
  20. AZ_CLASS_ALLOCATOR_DECL
  21. GraphMetaInfoHandler();
  22. ~GraphMetaInfoHandler() override;
  23. void GetIconPath(AZStd::string& iconPath, const DataTypes::IGraphObject* target) override;
  24. void GetToolTip(AZStd::string& toolTip, const DataTypes::IGraphObject* target) override;
  25. };
  26. } // SceneData
  27. } // SceneAPI
  28. } // AZ