|
| static SLATECORE_API const ISlateStyle & | Get () |
| |
| static SLATECORE_API const FName | GetAppStyleSetName () |
| |
| static SLATECORE_API void | SetAppStyleSetName (const FName &InName) |
| |
| static SLATECORE_API void | SetAppStyleSet (const ISlateStyle &InStyle) |
| |
| template<class T > |
| static const T & | GetWidgetStyle (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static float | GetFloat (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static UE::Slate::FDeprecateVector2DResult | GetVector (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static const FLinearColor & | GetColor (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static const FSlateColor | GetSlateColor (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static const FMargin & | GetMargin (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static const FSlateBrush * | GetBrush (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static const TSharedPtr< FSlateDynamicImageBrush > | GetDynamicImageBrush (FName BrushTemplate, FName TextureName, const ANSICHAR *Specifier=NULL) |
| |
| static const TSharedPtr< FSlateDynamicImageBrush > | GetDynamicImageBrush (FName BrushTemplate, const ANSICHAR *Specifier, class UTexture2D *TextureResource, FName TextureName) |
| |
| static const TSharedPtr< FSlateDynamicImageBrush > | GetDynamicImageBrush (FName BrushTemplate, class UTexture2D *TextureResource, FName TextureName) |
| |
| static const FSlateSound & | GetSound (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static FSlateFontInfo | GetFontStyle (FName PropertyName, const ANSICHAR *Specifier=NULL) |
| |
| static const FSlateBrush * | GetDefaultBrush () |
| |
| static const FSlateBrush * | GetNoBrush () |
| |
| static const FSlateBrush * | GetOptionalBrush (FName PropertyName, const ANSICHAR *Specifier=NULL, const FSlateBrush *const DefaultBrush=FStyleDefaults::GetNoBrush()) |
| |
| static FName | Join (FName A, const ANSICHAR *B) |
| |
AppStyle class
AppStyle is a Singleton accessor to a named SlateStyle to be used as an Application wide base style definition.
Moving forward, all references in any core Slate Application Widgets should use FAppStyle::Get()
FEditorStyle::Get accessors and FCoreStyle::Get accessors should be replaced with FAppStyle::Get()
Currently, this code defaults to use FCoreStyle::GetCoreStyle() if the named style is not found.