UnrealImGui/Source/ImGui/Private/ImGuiModuleCommands.h

54 lines
1.6 KiB
C
Raw Permalink Normal View History

// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
#pragma once
#include <HAL/IConsoleManager.h>
struct FImGuiKeyInfo;
class FImGuiModuleProperties;
// Manges ImGui module console commands.
class FImGuiModuleCommands
{
public:
static const TCHAR* const ToggleInput;
static const TCHAR* const ToggleKeyboardNavigation;
static const TCHAR* const ToggleGamepadNavigation;
static const TCHAR* const ToggleKeyboardInputSharing;
static const TCHAR* const ToggleGamepadInputSharing;
static const TCHAR* const ToggleMouseInputSharing;
2024-11-23 23:27:50 +00:00
static const TCHAR* const ToggleDockingEnabled;
static const TCHAR* const SetMouseInputSharing;
static const TCHAR* const ToggleDemo;
FImGuiModuleCommands(FImGuiModuleProperties& InProperties);
void SetKeyBinding(const TCHAR* CommandName, const FImGuiKeyInfo& KeyInfo);
private:
void ToggleInputImpl();
void ToggleKeyboardNavigationImpl();
void ToggleGamepadNavigationImpl();
void ToggleKeyboardInputSharingImpl();
void ToggleGamepadInputSharingImpl();
void ToggleMouseInputSharingImpl();
2024-11-23 23:27:50 +00:00
void ToggleDockingEnabledImpl();
void SetMouseInputSharingImpl(const TArray< FString >& Args);
void ToggleDemoImpl();
FImGuiModuleProperties& Properties;
FAutoConsoleCommand ToggleInputCommand;
FAutoConsoleCommand ToggleKeyboardNavigationCommand;
FAutoConsoleCommand ToggleGamepadNavigationCommand;
FAutoConsoleCommand ToggleKeyboardInputSharingCommand;
FAutoConsoleCommand ToggleGamepadInputSharingCommand;
FAutoConsoleCommand ToggleMouseInputSharingCommand;
2024-11-23 23:27:50 +00:00
FAutoConsoleCommand ToggleDockingEnabledCommand;
FAutoConsoleCommand SetMouseInputSharingCommand;
FAutoConsoleCommand ToggleDemoCommand;
};