| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class UCommonButtonStyle; | |
| class UObject; | |
| /** | |
| * | |
| */ | |
| UCLASS(MinimalAPI, Abstract, meta = (DisableNativeTick)) | |
| class ULyraBoundActionButton : public UCommonBoundActionButton | |
| { | |
| GENERATED_BODY() | |
| protected: | |
| UE_API virtual void NativeConstruct() override; | |
| private: | |
| void HandleInputMethodChanged(ECommonInputType NewInputMethod); | |
| UPROPERTY(EditAnywhere, Category = "Styles") | |
| TSubclassOf<UCommonButtonStyle> KeyboardStyle; | |
| UPROPERTY(EditAnywhere, Category = "Styles") | |
| TSubclassOf<UCommonButtonStyle> GamepadStyle; | |
| UPROPERTY(EditAnywhere, Category = "Styles") | |
| TSubclassOf<UCommonButtonStyle> TouchStyle; | |
| }; | |