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 |
// ==================================================================== // Class: XInterface.UT2QuitPage // Parent: XInterface.GUIMultiComponent // // <Enter a description here> // ==================================================================== class UT2QuitPage extends UT2K3GUIPage; function bool InternalOnClick(GUIComponent Sender) { if (Sender==Controls[1]) { if(PlayerOwner().Level.IsDemoBuild()) Controller.ReplaceMenu("XInterface.UT2DemoQuitPage"); else PlayerOwner().ConsoleCommand("exit"); } else Controller.CloseMenu(false); return true; } defaultproperties { bRequire640x480=Falsch Begin Object Class=GUIButton Name=QuitBackground StyleName="SquareBar" WinHeight=1.000000 bBoundToParent=Wahr bScaleToParent=Wahr bAcceptsInput=Falsch bNeverFocus=Wahr OnKeyEvent=QuitBackground.InternalOnKeyEvent End Object Controls(0)=GUIButton'XInterface.UT2QuitPage.QuitBackground' Begin Object Class=GUIButton Name=YesButton Caption="YES" WinTop=0.750000 WinLeft=0.125000 WinWidth=0.200000 bBoundToParent=Wahr OnClick=UT2QuitPage.InternalOnClick OnKeyEvent=YesButton.InternalOnKeyEvent End Object Controls(1)=GUIButton'XInterface.UT2QuitPage.YesButton' Begin Object Class=GUIButton Name=NoButton Caption="NO" WinTop=0.750000 WinLeft=0.650000 WinWidth=0.200000 bBoundToParent=Wahr OnClick=UT2QuitPage.InternalOnClick OnKeyEvent=NoButton.InternalOnKeyEvent End Object Controls(2)=GUIButton'XInterface.UT2QuitPage.NoButton' Begin Object Class=GUILabel Name=QuitDesc Caption="Are you sure you wish to quit?" TextAlign=TXTA_Center TextColor=(B=0,G=180,R=220) TextFont="UT2HeaderFont" WinTop=0.400000 WinHeight=32.000000 End Object Controls(3)=GUILabel'XInterface.UT2QuitPage.QuitDesc' WinTop=0.375000 WinHeight=0.250000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |