You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb lauren.barnes #jira none #preflight 61967ed3841fa7e69d6a1192 [CL 18239281 by aditya ravichandran in ue5-main branch]
88 lines
2.6 KiB
C++
88 lines
2.6 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Framework/Docking/WorkspaceItem.h"
|
|
|
|
/**
|
|
* Describes the workspace menu from which tabs are summoned
|
|
*
|
|
* +-Asset Editor Tabs
|
|
* |-Tab
|
|
* |-...
|
|
* |
|
|
* +-Level Editor Tabs
|
|
* |-Tab
|
|
* |-...
|
|
* | \ Viewports >
|
|
* +-Tools Tabs
|
|
* |-Tab
|
|
* |-...
|
|
* \ Automation >
|
|
* \ Developer Tools >
|
|
*/
|
|
|
|
class FWorkspaceItem;
|
|
|
|
class IWorkspaceMenuStructure
|
|
{
|
|
public:
|
|
/** Get the root of the menu structure. Pass this into PopulateTabSpawnerMenu() */
|
|
virtual TSharedRef<FWorkspaceItem> GetStructureRoot() const = 0;
|
|
|
|
/** Alternate root for the Tools menu */
|
|
virtual TSharedRef<FWorkspaceItem> GetToolsStructureRoot() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorViewportsCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorDetailsCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorCinematicsCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorVirtualProductionCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorWorldPartitionCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorOutlinerCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetLevelEditorModesCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetToolsCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsDebugCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsLogCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsProfilingCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsAuditCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsPlatformsCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsMiscCategory() const = 0;
|
|
|
|
/** See diagram above */
|
|
virtual TSharedRef<FWorkspaceItem> GetAutomationToolsCategory() const = 0;
|
|
|
|
/** Get the root of the edit menu structure. Pass this into PopulateTabSpawnerMenu() */
|
|
virtual TSharedRef<FWorkspaceItem> GetEditOptions() const = 0;
|
|
};
|