className
stringlengths
1
167
headerPath
stringlengths
14
166
description
stringlengths
0
1.62k
module
stringlengths
0
76
code
stringlengths
0
11.4k
variables
listlengths
0
395
ISessionFrontendModule::CreateSessionBrowser
/Engine/Source/Developer/SessionFrontend/Public/ISessionFrontendModule.h
Creates a session browser widget. The new session browser widget.
SessionFrontend
[TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > CreateSessionBrowser ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISessionManager](API\Runtime\SessionServices\ISessionManager) > & SessionManager )
[]
ISessionFrontendModule::InvokeSessionFrontend
/Engine/Source/Developer/SessionFrontend/Public/ISessionFrontendModule.h
Show the session frontend tab.
SessionFrontend
void InvokeSessionFrontend ( [FName](API\Runtime\Core\UObject\FName) SubTabToActivate )
[]
ISessionFrontendModule::CreateSessionConsole
/Engine/Source/Developer/SessionFrontend/Public/ISessionFrontendModule.h
Creates a session console widget.
SessionFrontend
[TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > CreateSessionConsole ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISessionManager](API\Runtime\SessionServices\ISessionManager) > & SessionManager )
[]
ISessionFrontendModule::~ISessionFrontendModule
/Engine/Source/Developer/SessionFrontend/Public/ISessionFrontendModule.h
Virtual destructor.
SessionFrontend
virtual ~ISessionFrontendModule()
[]
ISessionFrontendModule
/Engine/Source/Developer/SessionFrontend/Public/ISessionFrontendModule.h
Interface for launcher UI modules.
SessionFrontend
class ISessionFrontendModule : public [IModuleInterface](API\Runtime\Core\Modules\IModuleInterface)
[]
SSessionBrowser::AddInstanceItemToTree
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Adds items for this session in the tree.
SessionFrontend
void AddInstanceItemToTree ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< FSessionBrowserTreeItem > & SessionItem, const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< FSessionBrowserTreeItem > & InstanceItem, const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISessionInstanceInfo](API\Runtime\SessionServices\ISessionInstanceInfo) > & InstanceInfo )
[]
SSessionBrowser::Construct
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Construct this widget.
SessionFrontend
void Construct ( const [FArguments](API\Developer\SessionFrontend\Widgets\Browser\SSessionBrowser\FArguments) & InArgs, [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISessionManager](API\Runtime\SessionServices\ISessionManager) > InSessionManager )
[]
SSessionBrowser::ExpandItem
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Fully expands the specified tree view item.
SessionFrontend
void ExpandItem ( const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< FSessionBrowserTreeItem > & Item )
[]
WidgetArgsType
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
SessionFrontend
typedef FArguments WidgetArgsType
[]
SSessionBrowser::FArguments::FArguments
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
SessionFrontend
FArguments&40;&41;
[]
FArguments
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
SessionFrontend
struct FArguments : public [TSlateBaseNamedArgs< SSessionBrowser >](API\Runtime\SlateCore\Widgets\TSlateBaseNamedArgs)
[]
SSessionBrowser::FilterSessions
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Filters the session tree.
SessionFrontend
void FilterSessions()
[]
SSessionBrowser::ReloadSessions
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Reloads the sessions list.
SessionFrontend
void ReloadSessions()
[]
SSessionBrowser::~SSessionBrowser
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Destructor.
SessionFrontend
~SSessionBrowser()
[]
SSessionBrowser
/Engine/Source/Developer/SessionFrontend/Public/Widgets/Browser/SSessionBrowser.h
Implements a Slate widget for browsing active game sessions.
SessionFrontend
class SSessionBrowser : public [SCompoundWidget](API\Runtime\SlateCore\Widgets\SCompoundWidget)
[]
ISettingsCategory::GetDescription
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Gets the category's localized description text. Description text.
Settings
const [FText](API\Runtime\Core\Internationalization\FText) & GetDescription() const
[]
ISettingsCategory::GetDisplayName
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Gets the category's localized display name. Display name.
Settings
const [FText](API\Runtime\Core\Internationalization\FText) & GetDisplayName() const
[]
ISettingsCategory::GetName
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Gets the category's name. Category name.
Settings
const [FName](API\Runtime\Core\UObject\FName) & GetName() const
[]
ISettingsCategory::GetSection
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Gets the settings section with the specified name. The settings section, or nullptr if it doesn't exist.
Settings
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > GetSection ( const [FName](API\Runtime\Core\UObject\FName) & SectionName, bool bIgnoreVisibility ) const
[]
ISettingsCategory::GetSections
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Gets the setting sections contained in this category. The number of sections returned.
Settings
int32 GetSections ( [TArray](API\Runtime\Core\Containers\TArray)< [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsSection](API\Developer\Settings\ISettingsSection) >> & OutSections, bool bIgnoreVisibility ) const
[]
ISettingsCategory::GetSectionVisibilityPermissionList
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Settings
[FNamePermissionList](API\Runtime\Core\Misc\FNamePermissionList) * GetSectionVisibilityPermissionList()
[]
ISettingsCategory::~ISettingsCategory
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Virtual destructor.
Settings
virtual ~ISettingsCategory()
[]
ISettingsCategory
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
A setting category is a collection of setting sections that logically belong together (i.e. all project settings or all platform settings). Each section then contains the actual settings in the form ofUObjectproperties.
Settings
class ISettingsCategory
[]
ISettingsCategoryPtr
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Type definition for shared pointers to instances ofISettingsCategory.
Settings
typedef [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsCategory](API\Developer\Settings\ISettingsCategory) > ISettingsCategoryPtr
[]
ISettingsCategoryRef
/Engine/Source/Developer/Settings/Public/ISettingsCategory.h
Type definition for shared references to instances ofISettingsCategory.
Settings
typedef [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISettingsCategory](API\Developer\Settings\ISettingsCategory) > ISettingsCategoryRef
[]
ISettingsContainer::Describe
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Updates the details of this settings container.
Settings
void Describe ( const [FText](API\Runtime\Core\Internationalization\FText) & InDisplayName, const [FText](API\Runtime\Core\Internationalization\FText) & InDescription, const [FName](API\Runtime\Core\UObject\FName) & InIconName )
[]
ISettingsContainer::DescribeCategory
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Updates the details of the specified settings category.
Settings
void DescribeCategory ( const [FName](API\Runtime\Core\UObject\FName) & CategoryName, const [FText](API\Runtime\Core\Internationalization\FText) & DisplayName, const [FText](API\Runtime\Core\Internationalization\FText) & Description )
[]
FOnCategoryModified
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
A delegate that is executed when a settings category has been added or modified.
Settings
typedef TMulticastDelegate_OneParam< void, const [FName](API\Runtime\Core\UObject\FName) & > FOnCategoryModified
[]
FOnSectionRemoved
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
A delegate that is executed when a settings section has been removed.
Settings
typedef TMulticastDelegate_OneParam< void, const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > & > FOnSectionRemoved
[]
ISettingsContainer::GetCategories
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Gets the setting categories. The number of categories returned.
Settings
int32 GetCategories ( [TArray](API\Runtime\Core\Containers\TArray)< [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsCategory](API\Developer\Settings\ISettingsCategory) >> & OutCategories ) const
[]
ISettingsContainer::GetCategory
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Gets the category with the specified name. The category, or nullptr if it doesn't exist.
Settings
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsCategory](API\Developer\Settings\ISettingsCategory) > GetCategory ( const [FName](API\Runtime\Core\UObject\FName) & CategoryName ) const
[]
ISettingsContainer::GetDescription
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Gets the container's localized description text. Description text.
Settings
const [FText](API\Runtime\Core\Internationalization\FText) & GetDescription() const
[]
ISettingsContainer::GetDisplayName
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Gets the container's localized display name. Display name.
Settings
const [FText](API\Runtime\Core\Internationalization\FText) & GetDisplayName() const
[]
ISettingsContainer::GetName
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Gets the container's name. Container name.
Settings
const [FName](API\Runtime\Core\UObject\FName) & GetName() const
[]
ISettingsContainer::GetIconName
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Gets the name of the container's icon. Icon image name.
Settings
const [FName](API\Runtime\Core\UObject\FName) & GetIconName() const
[]
ISettingsContainer::OnCategoryModified
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Settings
[FOnCategoryModified](API\Developer\Settings\ISettingsContainer\FOnCategoryModified) & OnCategoryModified()
[]
ISettingsContainer::OnSectionRemoved
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Settings
[FOnSectionRemoved](API\Developer\Settings\ISettingsContainer\FOnSectionRemoved) & OnSectionRemoved()
[]
ISettingsContainer::ResetCategorySortPriority
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Sort priority
Settings
void ResetCategorySortPriority ( [FName](API\Runtime\Core\UObject\FName) CategoryName )
[]
ISettingsContainer::SetCategorySortPriority
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
A category named "Advanced" has a priority of 1.0 by default
Settings
void SetCategorySortPriority ( [FName](API\Runtime\Core\UObject\FName) CategoryName, float Priority )
[]
ISettingsContainer::~ISettingsContainer
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Virtual destructor.
Settings
virtual ~ISettingsContainer()
[]
ISettingsContainer
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
A settings container is a collection of setting categories. Each category holds a collection of setting sections, which contain the actual settings in the form ofUObjectproperties.
Settings
class ISettingsContainer
[]
ISettingsContainerPtr
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Type definition for shared pointers to instances ofISettingsContainer.
Settings
typedef [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsContainer](API\Developer\Settings\ISettingsContainer) > ISettingsContainerPtr
[]
ISettingsModule::GetContainer
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Gets the global settings container with the specified name. The settings container, or nullptr if it doesn't exist.
Settings
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsContainer](API\Developer\Settings\ISettingsContainer) > GetContainer ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName )
[]
ISettingsContainerRef
/Engine/Source/Developer/Settings/Public/ISettingsContainer.h
Type definition for shared references to instances ofISettingsContainer.
Settings
typedef [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISettingsContainer](API\Developer\Settings\ISettingsContainer) > ISettingsContainerRef
[]
ISettingsModule::GetContainerNames
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Gets the names of all known setting containers.
Settings
void GetContainerNames ( [TArray](API\Runtime\Core\Containers\TArray)< [FName](API\Runtime\Core\UObject\FName) > & OutNames ) const
[]
ISettingsModule::RegisterSettings
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
If a section with the specified settings objects already exists, the existing section will be replaced. The added settings section, or nullptr if the category does not exist.
Settings
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > RegisterSettings ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName, const [FName](API\Runtime\Core\UObject\FName) & CategoryName, const [FName](API\Runtime\Core\UObject\FName) & SectionName, const [FText](API\Runtime\Core\Internationalization\FText) & DisplayName, const [FText](API\Runtime\Core\Internationalization\FText) & Description, const [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< [UObject](API\Runtime\CoreUObject\UObject\UObject) > & SettingsObject )
[]
ISettingsModule::RegisterSettings
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
If a section with the specified settings objects already exists, the existing section will be replaced. The added settings section, or nullptr if the category does not exist.
Settings
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > RegisterSettings ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName, const [FName](API\Runtime\Core\UObject\FName) & CategoryName, const [FName](API\Runtime\Core\UObject\FName) & SectionName, const [FText](API\Runtime\Core\Internationalization\FText) & DisplayName, const [FText](API\Runtime\Core\Internationalization\FText) & Description, const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > & CustomWidget )
[]
ISettingsModule::RegisterViewer
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Registers a viewer for the specified settings container.
Settings
void RegisterViewer ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName, [ISettingsViewer](API\Developer\Settings\ISettingsViewer) & SettingsViewer )
[]
ISettingsModule::ShowViewer
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Shows the settings viewer for the specified settings container.
Settings
void ShowViewer ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName, const [FName](API\Runtime\Core\UObject\FName) & CategoryName, const [FName](API\Runtime\Core\UObject\FName) & SectionName )
[]
ISettingsModule::UnregisterSettings
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Removes a settings section from the specified settings container.
Settings
void UnregisterSettings ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName, const [FName](API\Runtime\Core\UObject\FName) & CategoryName, const [FName](API\Runtime\Core\UObject\FName) & SectionName )
[]
ISettingsModule::UnregisterViewer
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Unregisters the currently assigned viewer for the specified settings container.
Settings
void UnregisterViewer ( const [FName](API\Runtime\Core\UObject\FName) & ContainerName )
[]
ISettingsModule::~ISettingsModule
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Virtual destructor.
Settings
virtual ~ISettingsModule()
[]
ISettingsModule
/Engine/Source/Developer/Settings/Public/ISettingsModule.h
Interface for settings UI modules.
Settings
class ISettingsModule : public [IModuleInterface](API\Runtime\Core\Modules\IModuleInterface)
[]
ISettingsSection::CanEdit
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Checks whether this section can be edited right now. true if the section can be edited, false otherwise.
Settings
bool CanEdit() const
[]
ISettingsSection::CanExport
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Checks whether this section can export its settings to a file. true if file export is supported, false otherwise.
Settings
bool CanExport() const
[]
ISettingsSection::CanImport
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Checks whether this section can import its settings from a file. true if file import is supported, false otherwise.
Settings
bool CanImport() const
[]
ISettingsSection::CanResetDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Checks whether this section can have its settings reset to default. true if resetting to default is supported, false otherwise.
Settings
bool CanResetDefaults() const
[]
ISettingsSection::CanSave
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
This method does not indicate whether saving would actually succeed. For example, saving may be aborted by a ModifiedDelegate handler. true if saving is supported, false otherwise.
Settings
bool CanSave() const
[]
ISettingsSection::CanSaveDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Checks whether this section can have its settings saved as default. true if saving as default is supported, false otherwise.
Settings
bool CanSaveDefaults() const
[]
ISettingsSection::Export
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Exports the settings in this section to the specified file. true if the settings were exported, false otherwise.
Settings
bool Export ( const [FString](API\Runtime\Core\Containers\FString) & Filename )
[]
FOnCanEdit
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The return value indicates whether the section can be edited.
Settings
typedef TBaseDelegate_NoParams< bool > FOnCanEdit
[]
FOnExport
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The first parameter is the path to the file to export to. The return value indicates whether exporting succeeded.
Settings
typedef TBaseDelegate_OneParam< bool, const [FString](API\Runtime\Core\Containers\FString) & > FOnExport
[]
FOnImport
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The first parameter is the path to the file to import from. The return value indicates whether importing succeeded.
Settings
typedef TBaseDelegate_OneParam< bool, const [FString](API\Runtime\Core\Containers\FString) & > FOnImport
[]
FOnModified
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The return value indicates whether the modifications should be saved.
Settings
typedef TBaseDelegate_NoParams< bool > FOnModified
[]
FOnSave
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The return value indicates whether saving succeeded.
Settings
typedef TBaseDelegate_NoParams< bool > FOnSave
[]
FOnResetDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The return value indicates whether resetting to defaults succeeded.
Settings
typedef TBaseDelegate_NoParams< bool > FOnResetDefaults
[]
FOnSaveDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The return value indicates whether saving as default succeeded.
Settings
typedef TBaseDelegate_NoParams< bool > FOnSaveDefaults
[]
FOnSelect
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
A delegate that is executed to check whether a settings section can be edited.
Settings
typedef TBaseDelegate_NoParams< void > FOnSelect
[]
FOnStatus
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
The return value is status message.
Settings
typedef TBaseDelegate_NoParams< [FText](API\Runtime\Core\Internationalization\FText) > FOnStatus
[]
ISettingsSection::GetCategory
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets the settings category that this section belongs to. The owner category.
Settings
[TWeakPtr](API\Runtime\Core\Templates\TWeakPtr)< [ISettingsCategory](API\Developer\Settings\ISettingsCategory) > GetCategory()
[]
ISettingsSection::GetCustomWidget
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets the custom settings widget for this settings section. The custom widget.
Settings
[TWeakPtr](API\Runtime\Core\Templates\TWeakPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > GetCustomWidget() const
[]
ISettingsSection::GetName
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets the section's name. Section name.
Settings
const [FName](API\Runtime\Core\UObject\FName) & GetName() const
[]
ISettingsSection::GetDescription
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets the section's localized description text. Description text.
Settings
const [FText](API\Runtime\Core\Internationalization\FText) & GetDescription() const
[]
ISettingsSection::GetDisplayName
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets the section's localized display name. Display name.
Settings
const [FText](API\Runtime\Core\Internationalization\FText) & GetDisplayName() const
[]
ISettingsSection::GetSettingsObject
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets theUObjectholding the section's settings. Settings object.
Settings
[TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< [UObject](API\Runtime\CoreUObject\UObject\UObject) > GetSettingsObject() const
[]
ISettingsSection::GetStatus
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Gets the section's optional status text. Status text.
Settings
[FText](API\Runtime\Core\Internationalization\FText) GetStatus() const
[]
ISettingsSection::HasDefaultSettingsObject
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Checks whether this section holds a settings object that saves directly to default configuration files. true if it has a default settings object, false otherwise.
Settings
bool HasDefaultSettingsObject()
[]
ISettingsSection::Import
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Imports the settings in this section from the specified file. true if the settings were imported, false otherwise.
Settings
bool Import ( const [FString](API\Runtime\Core\Containers\FString) & Filename )
[]
ISettingsSection::NotifySectionOnPropertyModified
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Notifies a section that a single property has been modified true if settings should be saved, false otherwise.
Settings
bool NotifySectionOnPropertyModified()
[]
ISettingsSection::OnCanEdit
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnCanEdit](API\Developer\Settings\ISettingsSection\FOnCanEdit) & OnCanEdit()
[]
ISettingsSection::OnExport
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnExport](API\Developer\Settings\ISettingsSection\FOnExport) & OnExport()
[]
ISettingsSection::OnImport
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnImport](API\Developer\Settings\ISettingsSection\FOnImport) & OnImport()
[]
ISettingsSection::OnModified
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnModified](API\Developer\Settings\ISettingsSection\FOnModified) & OnModified()
[]
ISettingsSection::OnResetDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnResetDefaults](API\Developer\Settings\ISettingsSection\FOnResetDefaults) & OnResetDefaults()
[]
ISettingsSection::OnSave
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnSave](API\Developer\Settings\ISettingsSection\FOnSave) & OnSave()
[]
ISettingsSection::OnSaveDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnSaveDefaults](API\Developer\Settings\ISettingsSection\FOnSaveDefaults) & OnSaveDefaults()
[]
ISettingsSection::OnSelect
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnSelect](API\Developer\Settings\ISettingsSection\FOnSelect) & OnSelect()
[]
ISettingsSection::OnStatus
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Settings
[FOnStatus](API\Developer\Settings\ISettingsSection\FOnStatus) & OnStatus()
[]
ISettingsSection::ResetDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Resets the settings in this section to their default value. true if the section was reset, false otherwise.
Settings
bool ResetDefaults()
[]
ISettingsSection::Save
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Saves the settings in this section. true if settings were saved, false otherwise.
Settings
bool Save()
[]
ISettingsSection::SaveDefaults
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Saves the settings in this section as defaults. true if settings were saved, false otherwise.
Settings
bool SaveDefaults()
[]
ISettingsSection::Select
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Called when the current section is selected.
Settings
void Select()
[]
ISettingsSection::~ISettingsSection
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Virtual destructor.
Settings
virtual ~ISettingsSection()
[]
ISettingsSection
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
A setting section is a collection of settings that logically belong together (i.e. all settings for a console platform). Internally, the individual settings are represented as the properties of anUObject. One or more setting sections can the be hierarchically arranged in a setting category.
Settings
class ISettingsSection
[]
ISettingsSectionPtr
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Type definition for shared pointers to instances ofISettingsSection.
Settings
typedef [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > ISettingsSectionPtr
[]
ISettingsSectionRef
/Engine/Source/Developer/Settings/Public/ISettingsSection.h
Type definition for shared references to instances ofISettingsSection.
Settings
typedef [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > ISettingsSectionRef
[]
ISettingsViewer::ShowSettings
/Engine/Source/Developer/Settings/Public/ISettingsViewer.h
Shows the settings tab that belongs to this viewer with the specified settings section pre-selected.
Settings
void ShowSettings ( const [FName](API\Runtime\Core\UObject\FName) & CategoryName, const [FName](API\Runtime\Core\UObject\FName) & SectionName )
[]
ISettingsViewer::~ISettingsViewer
/Engine/Source/Developer/Settings/Public/ISettingsViewer.h
Virtual destructor.
Settings
virtual ~ISettingsViewer()
[]
ISettingsViewer
/Engine/Source/Developer/Settings/Public/ISettingsViewer.h
Interface for settings tabs.
Settings
class ISettingsViewer
[]
ISettingsEditorModel::GetSectionFromSectionObject
/Engine/Source/Developer/SettingsEditor/Public/ISettingsEditorModel.h
Gets the section interface for a specified section object The section interface for the section object or nullptr if it does not exist
SettingsEditor
[TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [ISettingsSection](API\Developer\Settings\ISettingsSection) > GetSectionFromSectionObject ( const [UObject](API\Runtime\CoreUObject\UObject\UObject) * SectionObject ) const
[]