54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "Widgets/SWidget.h"
|
|
#include "Widgets/SBoxPanel.h"
|
|
#include "Components/PanelWidget.h"
|
|
#include "HorizontalBox.generated.h"
|
|
|
|
class UHorizontalBoxSlot;
|
|
|
|
/**
|
|
* Allows widgets to be laid out in a flow horizontally.
|
|
*
|
|
* * Many Children
|
|
* * Flow Horizontal
|
|
*/
|
|
UCLASS(meta = (ShortTooltip = "A layout panel for automatically laying child widgets out horizontally"), MinimalAPI)
|
|
class UHorizontalBox : public UPanelWidget
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
/** */
|
|
UFUNCTION(BlueprintCallable, Category="Widget")
|
|
UMG_API UHorizontalBoxSlot* AddChildToHorizontalBox(UWidget* Content);
|
|
|
|
#if WITH_EDITOR
|
|
// UWidget interface
|
|
UMG_API virtual const FText GetPaletteCategory() override;
|
|
// End UWidget interface
|
|
#endif
|
|
|
|
UMG_API virtual void ReleaseSlateResources(bool bReleaseChildren) override;
|
|
|
|
protected:
|
|
|
|
// UPanelWidget
|
|
UMG_API virtual UClass* GetSlotClass() const override;
|
|
UMG_API virtual void OnSlotAdded(UPanelSlot* Slot) override;
|
|
UMG_API virtual void OnSlotRemoved(UPanelSlot* Slot) override;
|
|
// End UPanelWidget
|
|
|
|
protected:
|
|
|
|
TSharedPtr<class SHorizontalBox> MyHorizontalBox;
|
|
|
|
protected:
|
|
// UWidget interface
|
|
UMG_API virtual TSharedRef<SWidget> RebuildWidget() override;
|
|
// End of UWidget interface
|
|
};
|