Files
UnrealEngine/Engine/Source/Editor/StatusBar/Public/GlobalStatusBarExtension.h
2025-05-18 13:04:45 +08:00

21 lines
660 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
struct FWidgetDrawerConfig;
class SStatusBar;
/** Extension point for extending the functionality of status bars across the entire editor. */
struct IGlobalStatusBarExtension
{
virtual ~IGlobalStatusBarExtension() = default;
/** Called before the content browser drawer is registered in the status bar. */
virtual void ExtendContentBrowserDrawer(FWidgetDrawerConfig& WidgetDrawerConfig) {}
/** Called before the output log drawer is registered in the status bar. */
virtual void ExtendOutputLogDrawer(FWidgetDrawerConfig& WidgetDrawerConfig) {}
};