You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Add tab icon for Trace Control. Add a style sheet in SessionFrontend so it's incons are also visible when running from Insights. #rb ionut.matasaru #jira UE-215072 [CL 34733973 by catalin dragoiu in ue5-main branch]
23 lines
521 B
C++
23 lines
521 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Styling/SlateStyle.h"
|
|
|
|
class FSessionFrontendStyle
|
|
{
|
|
public:
|
|
static void Initialize();
|
|
static void Shutdown();
|
|
|
|
static const ISlateStyle& Get();
|
|
static const FName& GetStyleSetName();
|
|
static const FSlateBrush* GetBrush(FName PropertyName, const ANSICHAR* Specifier = NULL)
|
|
{
|
|
return StyleSet->GetBrush(PropertyName, Specifier);
|
|
}
|
|
|
|
private:
|
|
/** Singleton instances of this style. */
|
|
static TSharedPtr<class FSlateStyleSet> StyleSet;
|
|
}; |