Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Provides the UI with read/write access to settings which affect gameplay, such as gameinfo, mutator, and maplist settings. Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. @todo - make this class also expose a copy of all settings as an array called "Settings" so that the UI can autogenerate lists of menu options, ala GUIMultiOptionList in UT2004. @fixme - not ready for use yet!
Core.Object | +-- Engine.UIRoot | +-- Engine.UIDataProvider | +-- Engine.UIPropertyDataProvider | +-- Engine.UISettingsProvider | +-- Engine.SessionSettingsProvider
SessionSettingsProvider_GameInfo
Variables Summary | |
---|---|
class | ProviderClient |
class<UISettingsClient> | ProviderClientClass |
class | ProviderClientMetaClass |
Inherited Variables from Engine.UISettingsProvider |
---|
ProviderTag |
Inherited Variables from Engine.UIPropertyDataProvider |
---|
ComplexPropertyTypes |
Functions Summary | ||
---|---|---|
![]() | bool | BindProviderClient (class DataSourceClass) |
![]() | bool | CleanupDataProvider ())) |
![]() | bool | IsValidDataSourceClass (class PotentialDataSourceClass )) |
![]() | ProviderClientBound (class DataSourceClass) | |
![]() | ProviderClientUnbound (class DataSourceClass) | |
![]() | bool | UnbindProviderClient () |
Inherited Functions from Engine.UISettingsProvider |
---|
CleanupDataProvider, LoadPropertyValue, OnModifiedProperty, SavePropertyValue |
Inherited Functions from Engine.UIPropertyDataProvider |
---|
GetCustomPropertyValue |
Variables Detail |
---|
the class that will provide the properties and metadata for the settings exposed in this provider. Set by calling BindProviderInstance.
this is the UISettingsClient class that is used as the interface for retrieving metadata from data sources; only used by C++ to easily determine whether arbitrary classes implement the correct interface for use by this data provider
The metaclass for this data provider. Classes indicate which properties are available for use by settings data stores by marking the property with a keyword. Must implement the UISettingsClient interface.
Functions Detail |
---|
Associates this data provider with the specified class.
@param DataSourceClass a pointer to the specific child of Dataclass that this data provider should present data for.
@return TRUE if the class specified was successfully associated with this data provider. FALSE if the object specified wasn't of the correct type or was otherwise invalid.
Allows the data provider to clear any references that would interfere with garbage collection.
Script hook for preventing a particular child of DataClass from being represented by this dynamic data provider.
@param PotentialDataSourceClass a child class of DataClass that is being considered as a candidate for binding by this provider.
@return return FALSE to prevent PotentialDataSourceClass's properties from being added to the UI editor's list of bindable properties for this data provider; also prevents any instances of PotentialDataSourceClass from binding to this provider at runtime.
Called once BindProviderInstance has successfully verified that DataSourceInstance is of the correct type. Child classes can override this function to handle storing the reference, for example.
Called immediately after this data provider's DataSource is disassociated from this data provider.
Clears the reference to the class associated with this data provider.
@return TRUE if the class reference was successfully cleared.
Defaultproperties |
---|
defaultproperties { ProviderClientClass=Class'Engine.UISettingsClient' ProviderTag="SessionSettingsProvider" Name="Default__SessionSettingsProvider" ObjectArchetype=UISettingsProvider'Engine.Default__UISettingsProvider' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |