| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class UUserWidget; | |
| class ULocalPlayer; | |
| class ULyraWidgetFactory; | |
| UCLASS(MinimalAPI, meta = (DisableNativeTick)) | |
| class ULyraListView : public UCommonListView | |
| { | |
| GENERATED_BODY() | |
| public: | |
| UE_API ULyraListView(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get()); | |
| UE_API virtual void ValidateCompiledDefaults(IWidgetCompilerLog& InCompileLog) const override; | |
| protected: | |
| UE_API virtual UUserWidget& OnGenerateEntryWidgetInternal(UObject* Item, TSubclassOf<UUserWidget> DesiredEntryClass, const TSharedRef<STableViewBase>& OwnerTable) override; | |
| //virtual bool OnIsSelectableOrNavigableInternal(UObject* SelectedItem) override; | |
| protected: | |
| UPROPERTY(EditAnywhere, Instanced, Category="Entry Creation") | |
| TArray<TObjectPtr<ULyraWidgetFactory>> FactoryRules; | |
| }; | |