Navigation
Unreal Engine C++ API Reference > Editor > ContentBrowserData
References
Module | ContentBrowserData |
Header | /Engine/Source/Editor/ContentBrowserData/Public/ContentBrowserItemData.h |
Include | #include "ContentBrowserItemData.h" |
Syntax
class FContentBrowserItemDataTemporaryContext
Remarks
Context for asynchronous item creation (for new items or duplicating existing ones). Data sources will return one of these (hosting a temporary item with any required context) when they want to begin the creation or duplication of an item item. UI involved in this creation flow should call ValidateItem for any name changes, as well as before calling FinalizeItem. Once finalized the temporary item should be replaced with the real one.
Constructors
Type | Name | Description |
---|---|---|
FContentBrowserItemDataTemporaryContext () | Default constructor. | |
FContentBrowserItemDataTemporaryContext ( const FContentBrowserItemDataTempor... ) | Copy support. | |
FContentBrowserItemDataTemporaryContext ( FContentBrowserItemDataTemporaryCon... ) | Move support. | |
FContentBrowserItemDataTemporaryContext ( FContentBrowserItemData&& InItemDa..., FOnValidateItem InOnValidateItem, FOnFinalizeItem InOnFinalizeItem ) | Create a context instance. |
Functions
Type | Name | Description |
---|---|---|
FContentBrow... | FinalizeItem ( const FString& InProposedName, FText* OutErrorMsg ) | Invoke the delegate used to finalize the creation of the temporary item, and return the real item. |
const FConte... | GetItemData () | Get the data representing the temporary item instance. |
bool | IsValid () | Check to see whether this context is valid (has been set to a temporary item). |
bool | ValidateItem ( const FString& InProposedName, FText* OutErrorMsg ) | Invoke the delegate used to validate that the proposed item name is valid. |
Operators
Type | Name | Description |
---|---|---|
FContentBrow... | operator= ( const FContentBrowserItemDataTempor... ) | |
FContentBrow... | operator= ( FContentBrowserItemDataTemporaryCon... ) |
Typedefs
Name | Description |
---|---|
FOnFinalizeItem | Delegate used to finalize the creation of the temporary item, and return the real item |
FOnValidateItem | Delegate used to validate that the proposed item name is valid |