ExtDependencyViewerCommands.h 559 B

123456789101112131415161718192021
  1. // Copyright 2017-2021 marynate. All Rights Reserved.
  2. #pragma once
  3. #include "CoreMinimal.h"
  4. #include "EditorStyleSet.h"
  5. #include "Framework/Commands/Commands.h"
  6. // Actions that can be invoked in the dependency viewer
  7. class FExtDependencyViewerCommands : public TCommands<FExtDependencyViewerCommands>
  8. {
  9. public:
  10. FExtDependencyViewerCommands();
  11. // TCommands<> interface
  12. virtual void RegisterCommands() override;
  13. // End of TCommands<> interface
  14. /** Zoom in to fit the selected objects in the window */
  15. TSharedPtr<FUICommandInfo> ZoomToFitSelected;
  16. };