I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX
UE3:UTUITabPage_MyContent (UT3)
Object >> UIRoot >> UIScreenObject >> UIObject >> UIContainer >> UITabPage >> UTTabPage >> UTUITabPage_MyContent |
Contents
- 1 Properties
- 2 Functions
- 2.1 Native functions
- 2.2 Events
- 2.3 Other instance functions
- 2.3.1 GetContentName
- 2.3.2 HandleInputKey
- 2.3.3 OnButtonBar_DeleteAllContent
- 2.3.4 OnButtonBar_DeleteContent
- 2.3.5 OnContentList_ValueChanged
- 2.3.6 OnContentListChanged
- 2.3.7 OnDeleteAllContent
- 2.3.8 OnDeleteAllContent_Confirm
- 2.3.9 OnDeleteContent
- 2.3.10 OnDeleteContent_Confirm
- 2.3.11 SetupButtonBar
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
Copyright 1998-2007 Epic Games, Inc. All Rights Reserved.
Tab page for content a user has installed.
Properties
ContentList
Type: UIList
Modifiers: transient
Reference to the list that displays user content.
MessageBoxReference
Type: UTUIScene_MessageBox
Modifiers: transient
Reference to a message box scene.
Subobjects
WidgetEventComponent
Class: Engine.UIComp_Event
Inherits from: UTTabPage.WidgetEventComponent
No new values.
Functions
Native functions
PerformDeleteContent
Actually deletes the content from the storage device.
Parameters:
- ContentName - Filename of content to delete.
ReloadContent
Reloads all downloaded content.
Events
PostInitialize
Overrides: UIScreenObject.PostInitialize
Post initialization event - Setup widget delegates.
Other instance functions
GetContentName
Returns the filename of some content given its content idx.
Parameters:
- ContentIdx - Index of the content file to retrieve.
HandleInputKey
Overrides: UTTabPage.HandleInputKey
Provides a hook for unrealscript to respond to input using actual input key names (i.e. Left, Tab, etc.)
Called when an input key event is received which this widget responds to and is in the correct state to process. The keys and states widgets receive input for is managed through the UI editor's key binding dialog (F8).
This delegate is called BEFORE kismet is given a chance to process the input.
Parameters:
- EventParms - information about the input event.
Returns:
- TRUE to indicate that this input key was processed; no further processing will occur on this input key event.
OnButtonBar_DeleteAllContent
OnButtonBar_DeleteContent
Buttonbar Callbacks
OnContentList_ValueChanged
Callback for when the user changes the currently selected list item.
OnContentListChanged
Callback for when the content list has changed.
OnDeleteAllContent
Deletes all content.
OnDeleteAllContent_Confirm
Confirmation for the delete all content dialog.
OnDeleteContent
Deletes the currently selected content file.
OnDeleteContent_Confirm
Confirmation for the delete content dialog.
SetupButtonBar
Overrides: UTTabPage.SetupButtonBar
Callback allowing the tabpage to setup the button bar for the current scene.