You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
27 lines
674 B
C++
27 lines
674 B
C++
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "SuperSearchStyle.h"
|
|
|
|
const FName FSuperSearchStyle::TypeName(TEXT("FSuperSearchStyle"));
|
|
|
|
FSuperSearchStyle::FSuperSearchStyle()
|
|
: ComboBoxStyle()
|
|
, ForegroundColor()
|
|
, TextBlockStyle()
|
|
, SearchBoxStyle()
|
|
, SearchEnginePlacement(ESuperSearchEnginePlacement::Left)
|
|
{ }
|
|
|
|
void FSuperSearchStyle::GetResources(TArray< const FSlateBrush* >& OutBrushes) const
|
|
{
|
|
TextBlockStyle.GetResources(OutBrushes);
|
|
ComboBoxStyle.GetResources(OutBrushes);
|
|
SearchBoxStyle.GetResources(OutBrushes);
|
|
}
|
|
|
|
const FSuperSearchStyle& FSuperSearchStyle::GetDefault()
|
|
{
|
|
static FSuperSearchStyle Default;
|
|
return Default;
|
|
}
|