2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Describes the workspace menu from which tabs are summoned
|
|
|
|
|
*
|
|
|
|
|
* +-Asset Editor Tabs
|
|
|
|
|
* |-Tab
|
|
|
|
|
* |-...
|
|
|
|
|
* |
|
|
|
|
|
* +-Level Editor Tabs
|
|
|
|
|
* |-Tab
|
|
|
|
|
* |-...
|
|
|
|
|
* | \ Viewports >
|
|
|
|
|
* +-Tools Tabs
|
|
|
|
|
* |-Tab
|
|
|
|
|
* |-...
|
|
|
|
|
* \ Developer Tools >
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class FWorkspaceItem;
|
|
|
|
|
|
|
|
|
|
class IWorkspaceMenuStructure
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/** Get the root of the menu structure. Pass this into PopulateTabSpawnerMenu() */
|
|
|
|
|
virtual TSharedRef<FWorkspaceItem> GetStructureRoot() 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> GetLevelEditorModesCategory() const = 0;
|
|
|
|
|
|
|
|
|
|
/** See diagram above */
|
|
|
|
|
virtual TSharedRef<FWorkspaceItem> GetToolsCategory() const = 0;
|
|
|
|
|
|
|
|
|
|
/** See diagram above */
|
2014-10-09 12:34:55 -04:00
|
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsDebugCategory() const = 0;
|
|
|
|
|
|
|
|
|
|
/** See diagram above */
|
|
|
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsLogCategory() const = 0;
|
|
|
|
|
|
|
|
|
|
/** See diagram above */
|
|
|
|
|
virtual TSharedRef<FWorkspaceItem> GetDeveloperToolsMiscCategory() const = 0;
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
/** Get the root of the edit menu structure. Pass this into PopulateTabSpawnerMenu() */
|
|
|
|
|
virtual TSharedRef<FWorkspaceItem> GetEditOptions() const = 0;
|
|
|
|
|
};
|