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 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00150 00151 00152 00153 00154 00155 00156 00157 00158 00159 00160 00161 00162 00163 00164 00165 00166 00167 00168 00169 00170 00171 00172 00173 00174 00175 00176 00177 00178 00179 00180 00181 00182 00183 00184 00185 00186 00187 00188 00189 00190 00191 00192 00193 00194 00195 00196 00197 00198 00199 00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 00250 00251 00252 00253 00254 00255 00256 00257 00258 00259 00260 00261 00262 00263 00264 00265 00266 00267 00268 00269 00270 00271 00272 00273 00274 00275 |
// ==================================================================== // Class: XInterface.ServerListPage // Parent: XInterface.GUITabPanel // // <Enter a description here> // ==================================================================== class Browser_ServerListPageBase extends Browser_Page; // Internal var Browser_ServersList MyServersList; var bool ConnectLAN; var GUITitleBar StatusBar; var bool bInitialized; function InitComponent(GUIController MyController, GUIComponent MyOwner) { if( !bInitialized ) { MyServersList = Browser_ServersList(GUIMultiColumnListBox(GUIPanel(GUISplitter(Controls[0]).Controls[0]).Controls[0]).Controls[0]); MyServersList.MyPage = Self; MyServersList.MyRulesList = Browser_RulesList (GUIMultiColumnListBox(GUIPanel(GUISplitter(GUISplitter(Controls[0]).Controls[1]).Controls[0]).Controls[0]).Controls[0]); MyServersList.MyPlayersList = Browser_PlayersList(GUIMultiColumnListBox(GUIPanel(GUISplitter(GUISplitter(Controls[0]).Controls[1]).Controls[1]).Controls[0]).Controls[0]); MyServersList.MyRulesList.MyPage = Self; MyServersList.MyRulesList.MyServersList = MyServersList; MyServersList.MyPlayersList.MyPage = Self; MyServersList.MyPlayersList.MyServersList = MyServersList; StatusBar = GUITitleBar(GUIPanel(Controls[1]).Controls[5]); } StatusBar.SetCaption(ReadyString); Super.Initcomponent(MyController, MyOwner); if( !bInitialized ) { GUIButton(GUIPanel(Controls[1]).Controls[0]).OnClick=BackClick; GUIButton(GUIPanel(Controls[1]).Controls[1]).OnClick=RefreshClick; GUIButton(GUIPanel(Controls[1]).Controls[2]).OnClick=JoinClick; GUIButton(GUIPanel(Controls[1]).Controls[3]).OnClick=SpectateClick; GUIButton(GUIPanel(Controls[1]).Controls[4]).OnClick=AddFavoriteClick; } bInitialized = True; } // functions function RefreshList() { } function PingServer( int i, ServerQueryClient.EPingCause PingCause, GameInfo.ServerResponseLine s ) { } function CancelPings() { } // delegates function bool BackClick(GUIComponent Sender) { Controller.CloseMenu(true); return true; } function bool RefreshClick(GUIComponent Sender) { RefreshList(); return true; } function bool JoinClick(GUIComponent Sender) { MyServersList.Connect(false); return true; } function bool SpectateClick(GUIComponent Sender) { MyServersList.Connect(true); return true; } function bool AddFavoriteClick(GUIComponent Sender) { MyServersList.AddFavorite(Browser); return true; } defaultproperties { Begin Object Class=GUISplitter Name=MainSplitter Begin Object Class=GUIPanel Name=ServersPanel Begin Object Class=GUIMultiColumnListBox Name=ServersListBox bVisibleWhenEmpty=Wahr Begin Object Class=Browser_ServersList Name=TheServersList OnPreDraw=TheServersList.InternalOnPreDraw OnClick=TheServersList.InternalOnClick OnRightClick=TheServersList.InternalOnRightClick OnMousePressed=TheServersList.InternalOnMousePressed OnMouseRelease=TheServersList.InternalOnMouseRelease OnKeyEvent=TheServersList.InternalOnKeyEvent OnBeginDrag=TheServersList.InternalOnBeginDrag OnEndDrag=TheServersList.InternalOnEndDrag OnDragDrop=TheServersList.InternalOnDragDrop OnDragEnter=TheServersList.InternalOnDragEnter OnDragLeave=TheServersList.InternalOnDragLeave OnDragOver=TheServersList.InternalOnDragOver End Object Controls(0)=Browser_ServersList'XInterface.Browser_ServerListPageBase.TheServersList' OnCreateComponent=ServersListBox.InternalOnCreateComponent StyleName="ServerBrowserGrid" WinHeight=1.000000 End Object Controls(0)=GUIMultiColumnListBox'XInterface.Browser_ServerListPageBase.ServersListBox' End Object Controls(0)=GUIPanel'XInterface.Browser_ServerListPageBase.ServersPanel' Begin Object Class=GUISplitter Name=DetailsSplitter SplitOrientation=SPLIT_Horizontal Background=Texture'Engine.DefaultTexture' Begin Object Class=GUIPanel Name=RulesPanel Begin Object Class=GUIMultiColumnListBox Name=RulesListBox bVisibleWhenEmpty=Wahr Begin Object Class=Browser_RulesList Name=TheRulesList OnPreDraw=TheRulesList.InternalOnPreDraw OnClick=TheRulesList.InternalOnClick OnRightClick=TheRulesList.InternalOnRightClick OnMousePressed=TheRulesList.InternalOnMousePressed OnMouseRelease=TheRulesList.InternalOnMouseRelease OnKeyEvent=TheRulesList.InternalOnKeyEvent OnBeginDrag=TheRulesList.InternalOnBeginDrag OnEndDrag=TheRulesList.InternalOnEndDrag OnDragDrop=TheRulesList.InternalOnDragDrop OnDragEnter=TheRulesList.InternalOnDragEnter OnDragLeave=TheRulesList.InternalOnDragLeave OnDragOver=TheRulesList.InternalOnDragOver End Object Controls(0)=Browser_RulesList'XInterface.Browser_ServerListPageBase.TheRulesList' OnCreateComponent=RulesListBox.InternalOnCreateComponent StyleName="ServerBrowserGrid" WinHeight=1.000000 End Object Controls(0)=GUIMultiColumnListBox'XInterface.Browser_ServerListPageBase.RulesListBox' End Object Controls(0)=GUIPanel'XInterface.Browser_ServerListPageBase.RulesPanel' Begin Object Class=GUIPanel Name=PlayersPanel Begin Object Class=GUIMultiColumnListBox Name=PlayersListBox bVisibleWhenEmpty=Wahr Begin Object Class=Browser_PlayersList Name=ThePlayersList OnPreDraw=ThePlayersList.InternalOnPreDraw OnClick=ThePlayersList.InternalOnClick OnRightClick=ThePlayersList.InternalOnRightClick OnMousePressed=ThePlayersList.InternalOnMousePressed OnMouseRelease=ThePlayersList.InternalOnMouseRelease OnKeyEvent=ThePlayersList.InternalOnKeyEvent OnBeginDrag=ThePlayersList.InternalOnBeginDrag OnEndDrag=ThePlayersList.InternalOnEndDrag OnDragDrop=ThePlayersList.InternalOnDragDrop OnDragEnter=ThePlayersList.InternalOnDragEnter OnDragLeave=ThePlayersList.InternalOnDragLeave OnDragOver=ThePlayersList.InternalOnDragOver End Object Controls(0)=Browser_PlayersList'XInterface.Browser_ServerListPageBase.ThePlayersList' OnCreateComponent=PlayersListBox.InternalOnCreateComponent StyleName="ServerBrowserGrid" WinHeight=1.000000 End Object Controls(0)=GUIMultiColumnListBox'XInterface.Browser_ServerListPageBase.PlayersListBox' End Object Controls(1)=GUIPanel'XInterface.Browser_ServerListPageBase.PlayersPanel' WinHeight=1.000000 End Object Controls(1)=GUISplitter'XInterface.Browser_ServerListPageBase.DetailsSplitter' WinHeight=0.900000 End Object Controls(0)=GUISplitter'XInterface.Browser_ServerListPageBase.MainSplitter' Begin Object Class=GUIPanel Name=FooterPanel Begin Object Class=GUIButton Name=BackButton Caption="BACK" StyleName="SquareMenuButton" WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=BackButton.InternalOnKeyEvent End Object Controls(0)=GUIButton'XInterface.Browser_ServerListPageBase.BackButton' Begin Object Class=GUIButton Name=RefreshButton Caption="REFRESH LIST" StyleName="SquareMenuButton" WinLeft=0.200000 WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=RefreshButton.InternalOnKeyEvent End Object Controls(1)=GUIButton'XInterface.Browser_ServerListPageBase.RefreshButton' Begin Object Class=GUIButton Name=JoinButton Caption="JOIN" StyleName="SquareMenuButton" WinLeft=0.400000 WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=JoinButton.InternalOnKeyEvent End Object Controls(2)=GUIButton'XInterface.Browser_ServerListPageBase.JoinButton' Begin Object Class=GUIButton Name=SpectateButton Caption="SPECTATE" StyleName="SquareMenuButton" WinLeft=0.600000 WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=SpectateButton.InternalOnKeyEvent End Object Controls(3)=GUIButton'XInterface.Browser_ServerListPageBase.SpectateButton' Begin Object Class=GUIButton Name=AddFavoriteButton Caption="ADD FAVORITE" StyleName="SquareMenuButton" WinLeft=0.800000 WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=AddFavoriteButton.InternalOnKeyEvent End Object Controls(4)=GUIButton'XInterface.Browser_ServerListPageBase.AddFavoriteButton' Begin Object Class=GUITitleBar Name=MyStatus bUseTextHeight=Falsch Justification=TXTA_Left StyleName="SquareBar" WinTop=0.500000 WinWidth=0.600000 WinHeight=0.500000 End Object Controls(5)=GUITitleBar'XInterface.Browser_ServerListPageBase.MyStatus' Begin Object Class=GUIButton Name=UtilButtonA StyleName="SquareMenuButton" WinTop=0.500000 WinLeft=0.600000 WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=UtilButtonA.InternalOnKeyEvent End Object Controls(6)=GUIButton'XInterface.Browser_ServerListPageBase.UtilButtonA' Begin Object Class=GUIButton Name=UtilButtonB StyleName="SquareMenuButton" WinTop=0.500000 WinLeft=0.800000 WinWidth=0.200000 WinHeight=0.500000 OnKeyEvent=UtilButtonB.InternalOnKeyEvent End Object Controls(7)=GUIButton'XInterface.Browser_ServerListPageBase.UtilButtonB' WinTop=0.900000 WinHeight=0.100000 End Object Controls(1)=GUIPanel'XInterface.Browser_ServerListPageBase.FooterPanel' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |