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 00103 00104 00105 00106 00107 00108 |
// ==================================================================== // (C) 2002, Epic Games // ==================================================================== class MyTestPanelA extends TestPanelBase; var Automated moCheckBox CheckTest; var Automated moEditBox EditTest; var Automated moFloatEdit FloatTest; var Automated moNumericEdit NumEditTest; var Automated GUILabel lbSliderTest; var Automated GUISlider SliderTest; function InitComponent(GUIController MyController, GUIComponent MyOwner) { Super.InitComponent(MyController,MyOwner); SliderTest.SetFriendlyLabel(lbSliderTest); } defaultproperties { Begin Object class=moCheckBox Name=cTwo WinWidth=0.5 WinHeight=0.050000 WinLeft=0.25 WinTop=0.2 Caption="moCheckBox Test" CaptionWidth=0.9 bSquare=true ComponentJustification=TXTA_Left TabOrder=1 Hint="This is a check Box" End Object Begin Object class=moEditBox Name=cThree WinWidth=0.5 WinHeight=0.050000 WinLeft=0.25 WinTop=0.3 Caption="moEditBox Test" CaptionWidth=0.4 TabOrder=2 Hint="This is an Edit Box" End Object Begin Object class=moNumericEdit Name=cFive WinWidth=0.5 WinHeight=0.050000 WinLeft=0.25 WinTop=0.4 Caption="moNumericEdit Test" CaptionWidth=0.6 MinValue=1 MaxValue=16 TabOrder=4 Hint="This is an INT numeric Edit box" End Object Begin Object class=moFloatEdit Name=cFour WinWidth=0.5 WinHeight=0.050000 WinLeft=0.25 WinTop=0.5 MinValue=0.0 MaxValue=1.0 Step=0.05 Caption="moFloatEdit Test" CaptionWidth=0.725 ComponentJustification=TXTA_Left TabOrder=3 Hint="This is a FLOAT numeric Edit Box"; End Object Begin Object class=GUILabel Name=laSix WinWidth=0.226563 WinHeight=0.050000 WinLeft=0.375000 WinTop=0.654545 TextAlign=TXTA_Center Caption="Slider Test" End Object Begin Object class=GUISlider Name=cSix WinWidth=0.250000 WinLeft=0.367188 WinTop=0.713997 MinValue=0 MaxValue=1 Hint="This is a Slider Test." TabOrder=5 End Object CheckTest=cTwo EditTest=cThree FloatTest=cFour NumEditTest=cFive lbSliderTest=laSix SliderTest=cSix Background=Material'InterfaceContent.Backgrounds.bg11' WinWidth=1.000000 WinHeight=0.807813 WinLeft=0.000000 WinTop=55.980499 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |