35 lines
1014 B
C
35 lines
1014 B
C
|
|
// Copyright PICO Technology Co., Ltd. All rights reserved.
|
||
|
|
// This plugin incorporates portions of the Unreal® Engine. Unreal® is a trademark or registered trademark of Epic Games, Inc. in the United States of America and elsewhere.
|
||
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Styling/SlateStyle.h"
|
||
|
|
#include "Styling/SlateStyleRegistry.h"
|
||
|
|
#include "Framework/Application/SlateApplication.h"
|
||
|
|
#include "Framework/MultiBox/MultiBoxBuilder.h"
|
||
|
|
#include "Framework/Commands/Commands.h"
|
||
|
|
#include "Framework/Commands/UIAction.h"
|
||
|
|
#include "Framework/Commands/UICommandInfo.h"
|
||
|
|
|
||
|
|
/** */
|
||
|
|
class FPICOXRVerificationStyle
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void Initialize();
|
||
|
|
|
||
|
|
static void Shutdown();
|
||
|
|
|
||
|
|
/** reloads textures used by slate renderer */
|
||
|
|
static void ReloadTextures();
|
||
|
|
|
||
|
|
/** @return The Slate style set */
|
||
|
|
static const ISlateStyle& Get();
|
||
|
|
|
||
|
|
static FName GetStyleSetName();
|
||
|
|
|
||
|
|
private:
|
||
|
|
|
||
|
|
static TSharedRef< class FSlateStyleSet > Create();
|
||
|
|
static TSharedPtr< class FSlateStyleSet > StyleInstance;
|
||
|
|
};
|