34 lines
804 B
C
34 lines
804 B
C
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CommonButtonBase.h"
|
||
|
#include "LyraTabListWidgetBase.h"
|
||
|
#include "UI/Foundation/LyraButtonBase.h"
|
||
|
|
||
|
#include "LyraTabButtonBase.generated.h"
|
||
|
|
||
|
class UCommonLazyImage;
|
||
|
class UCommonTextBlock;
|
||
|
|
||
|
UCLASS(Abstract, Blueprintable, meta = (DisableNativeTick))
|
||
|
class LYRAGAME_API ULyraTabButtonBase : public ULyraButtonBase, public ILyraTabButtonInterface
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
|
||
|
void SetIconFromLazyObject(TSoftObjectPtr<UObject> LazyObject);
|
||
|
void SetIconBrush(const FSlateBrush& Brush);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
UFUNCTION()
|
||
|
virtual void SetTabLabelInfo_Implementation(const FLyraTabDescriptor& TabLabelInfo) override;
|
||
|
|
||
|
private:
|
||
|
|
||
|
UPROPERTY(meta = (BindWidgetOptional))
|
||
|
UCommonLazyImage* LazyImage_Icon;
|
||
|
};
|