14 lines
521 B
C++
14 lines
521 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "ObjectChooserWidgetFactories.h"
|
|
#include "Widgets/SWidget.h"
|
|
|
|
class UChooserTable;
|
|
struct FChooserColumnBase;
|
|
|
|
|
|
namespace UE::ChooserEditor
|
|
{
|
|
CHOOSEREDITOR_API TSharedRef<SWidget> MakeColumnHeaderWidget(UChooserTable* Chooser, FChooserColumnBase* Column, const FText& ColumnName,const FText& ColumnTooltip, const FSlateBrush* ColumnIcon, TSharedPtr<SWidget> DebugWidget, FChooserWidgetValueChanged ValueChanged = FChooserWidgetValueChanged());
|
|
} |