20 lines
525 B
C++
Executable file
20 lines
525 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CustomRichTextDecorator.h"
|
|
#include "Templates/SubclassOf.h"
|
|
#include "RichTextInputDecorator.generated.h"
|
|
|
|
class URichTextInputWidget;
|
|
|
|
UCLASS(Abstract, Blueprintable, HideDropdown)
|
|
class URichTextInputDecorator : public UCustomRichTextDecorator {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSubclassOf<URichTextInputWidget> DecoratorWidgetClass;
|
|
|
|
public:
|
|
URichTextInputDecorator();
|
|
};
|
|
|