Files
UnrealEngineUWP/Engine/Source/Editor/LevelEditor/Private/SLevelEditorToolBox.h
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

64 lines
2.1 KiB
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
* Tools for the level editor
*/
class SLevelEditorToolBox : public SCompoundWidget, public FNotifyHook
{
public:
SLATE_BEGIN_ARGS( SLevelEditorToolBox ){}
SLATE_END_ARGS()
~SLevelEditorToolBox();
void Construct( const FArguments& InArgs, const TSharedRef< class ILevelEditor >& OwningLevelEditor );
/** Called by SLevelEditor to notify the toolbox about a new toolkit being hosted */
void OnToolkitHostingStarted( const TSharedRef< class IToolkit >& Toolkit );
/** Called by SLevelEditor to notify the toolbox about an existing toolkit no longer being hosted */
void OnToolkitHostingFinished(const TSharedRef< class IToolkit >& Toolkit);
/** Handles updating the mode toolbar when the registered mode commands change */
void OnEditorModeCommandsChanged();
private:
/** Gets the visibility for the SBorder showing toolbox editor mode inline content */
EVisibility GetInlineContentHolderVisibility() const;
/** Gets the visibility for the message suggesting the user select a tool */
EVisibility GetNoToolSelectedTextVisibility() const;
/** Updates the widget for showing toolbox editor mode inline content */
void UpdateInlineContent(TSharedPtr<SWidget> InlineContent) const;
/** Creates and sets the mode toolbar */
void UpdateModeToolBar();
/** Handles updating the mode toolbar when the user settings change */
void HandleUserSettingsChange( FName PropertyName );
/** Returns specified Editor modes icon, if that mode is active it adds ".Selected" onto the name */
FSlateIcon GetEditorModeIcon(TSharedPtr< FUICommandInfo > EditorModeUICommand, FEditorModeID EditorMode);
private:
/** Level editor that we're associated with */
TWeakPtr<class ILevelEditor> LevelEditor;
/** Toolkit area widget */
TSharedPtr<class SToolkitDisplay> ToolkitArea;
/** Inline content area for editor modes */
TSharedPtr<SBorder> InlineContentHolder;
/** The menu extenders to populate the toolbox*/
TArray< TSharedPtr<FExtender> > ToolboxExtenders;
/** The container holding the mode toolbar */
TSharedPtr< SBorder > ModeToolBarContainer;
};