Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. * * Achievement scene for UT3, lets players manage view their achievements. */ class UTUIFrontEnd_Achievements extends UTUIFrontEnd; /** Tab page references for this scene. */ var UTUITabPage_AchievementList AchievementListTab; /** PostInitialize event - Sets delegates for the scene. */ event PostInitialize() { Super.PostInitialize(); // Achievement List AchievementListTab = UTUITabPage_AchievementList(FindChild('pnlAchievementList', true)); if(AchievementListTab != none) { TabControl.InsertPage(AchievementListTab, 0, INDEX_NONE, true); } // Let the currently active page setup the button bar. SetupButtonBar(); } /** Sets up the button bar for the scene. */ function SetupButtonBar() { if(ButtonBar != None) { ButtonBar.Clear(); ButtonBar.AppendButton("<Strings:UTGameUI.ButtonCallouts.Back>", OnButtonBar_Back); // Let the current tab page try to setup the button bar UTTabPage(TabControl.ActivePage).SetupButtonBar(ButtonBar); } } /** Callback for when the user wants to back out of this screen. */ function OnBack() { CloseScene(self); } function bool OnButtonBar_Back(UIScreenObject InButton, int PlayerIndex) { OnBack(); return true; } /** * 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. * * @param EventParms information about the input event. * * @return TRUE to indicate that this input key was processed; no further processing will occur on this input key event. */ function bool HandleInputKey( const out InputEventParameters EventParms ) { local bool bResult; local UTTabPage CurrentTabPage; // Let the tab page's get first chance at the input CurrentTabPage = UTTabPage(TabControl.ActivePage); bResult=CurrentTabPage.HandleInputKey(EventParms); // If the tab page didn't handle it, let's handle it ourselves. if(bResult==false) { if(EventParms.EventType==IE_Released) { if(EventParms.InputKeyName=='XboxTypeS_B' || EventParms.InputKeyName=='Escape') { OnBack(); bResult=true; } } } return bResult; } defaultproperties { bRequiresNetwork=True bRequiresOnlineService=True Begin Object Class=UIComp_Event Name=SceneEventComponent ObjName=SceneEventComponent Archetype=UIComp_Event'UTGame.Default__UTUIFrontEnd:SceneEventComponent' ObjectArchetype=UIComp_Event'UTGame.Default__UTUIFrontEnd:SceneEventComponent' End Object EventProvider=SceneEventComponent Name="Default__UTUIFrontEnd_Achievements" ObjectArchetype=UTUIFrontEnd'UTGame.Default__UTUIFrontEnd' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |