28 lines
746 B
C++
28 lines
746 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "Styling/SlateWidgetStyleContainerBase.h"
|
|
#include "Styling/SlateTypes.h"
|
|
#include "ComboButtonWidgetStyle.generated.h"
|
|
|
|
/**
|
|
*/
|
|
UCLASS(hidecategories=Object, MinimalAPI)
|
|
class UComboButtonWidgetStyle : public USlateWidgetStyleContainerBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
/** The actual data describing the combo button's appearance. */
|
|
UPROPERTY(Category=Appearance, EditAnywhere, meta=(ShowOnlyInnerProperties))
|
|
FComboButtonStyle ComboButtonStyle;
|
|
|
|
virtual const struct FSlateWidgetStyle* const GetStyle() const override
|
|
{
|
|
return static_cast< const struct FSlateWidgetStyle* >( &ComboButtonStyle );
|
|
}
|
|
};
|