28 lines
733 B
C++
28 lines
733 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 "ScrollBarWidgetStyle.generated.h"
|
|
|
|
/**
|
|
*/
|
|
UCLASS(hidecategories=Object, MinimalAPI)
|
|
class UScrollBarWidgetStyle : public USlateWidgetStyleContainerBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
/** The actual data describing the scrollbox's appearance. */
|
|
UPROPERTY(Category=Appearance, EditAnywhere, meta=(ShowOnlyInnerProperties))
|
|
FScrollBarStyle ScrollBarStyle;
|
|
|
|
virtual const struct FSlateWidgetStyle* const GetStyle() const override
|
|
{
|
|
return static_cast< const struct FSlateWidgetStyle* >( &ScrollBarStyle );
|
|
}
|
|
};
|