You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#JIRA UETOOL-3039 #rb Lauren.Barnes #lockdown Simon.Tourangeau #preflight 606b8e0315d4190001b1698b #ROBOMERGE-SOURCE: CL 15924633 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v786-15839533) [CL 15924652 by louise rasmussen in ue5-main branch]
82 lines
2.3 KiB
C++
82 lines
2.3 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> 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;
|
|
};
|