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 |
//==================================================================== // xVoting.KickVotingPage // Kick Voting page. // // Written by Bruce Bickar // (c) 2003, Epic Games, Inc. All Rights Reserved // ==================================================================== class KickVotingPage extends VotingPage; var automated GUISectionBackground sb_List; var automated KickVoteMultiColumnListBox lb_PlayerListBox; var automated GUILabel l_PlayerListTitle; var automated GUIButton b_Info, b_Kick; // Localization var localized string lmsgKickVotingDisabled; function InitComponent(GUIController InController, GUIComponent InOwner) { Super.InitComponent(InController, InOwner); sb_List.ManageComponent(lb_PlayerListBox); sb_List.ImageOffset[1]=8; } //------------------------------------------------------------------------------------------------ function InternalOnOpen() { if( MVRI == none || (MVRI != none && !MVRI.bKickVote) ) { Controller.OpenMenu("GUI2K4.GUI2K4QuestionPage"); GUIQuestionPage(Controller.TopPage()).SetupQuestion(lmsgKickVotingDisabled, QBTN_Ok, QBTN_Ok); GUIQuestionPage(Controller.TopPage()).OnButtonClick = OnOkButtonClick; return; } lb_PlayerListBox.List.OnDblClick = PlayerListDblClick; KickVoteMultiColumnList(lb_PlayerListBox.List).LoadPlayerList(MVRI); f_Chat.OnSubmit = SendKickVote; f_Chat.WinTop = 0.561457; f_Chat.WinHeight=0.432031; } //------------------------------------------------------------------------------------------------ function OnOkButtonClick(byte bButton) // triggered by th GUIQuestionPage Ok Button { Controller.CloseAll(true,true); } //------------------------------------------------------------------------------------------------ function UpdateKickVoteCount(VotingHandler.KickVoteScore KVCData) { KickVoteMultiColumnList(lb_PlayerListBox.List).UpdatedVoteCount(KVCData.PlayerID, KVCData.KickVoteCount); } //------------------------------------------------------------------------------------------------ function bool PlayerListDblClick(GUIComponent Sender) { SendKickVote(); return true; } //------------------------------------------------------------------------------------------------ function SendKickVote() { local int PlayerID; PlayerID = KickVoteMultiColumnList(lb_PlayerListBox.List).GetSelectedPlayerID(); if( PlayerID > -1 ) MVRI.SendKickVote(PlayerID); } //------------------------------------------------------------------------------------------------ function bool InfoClick(GUIComponent Sender) { lb_PlayerListBox.InternalOnClick(lb_PlayerListBox.ContextMenu,1); return true; } function bool KickClick(GUIComponent Sender) { lb_PlayerListBox.InternalOnClick(lb_PlayerListBox.ContextMenu,0); return true; } defaultproperties { Begin Object Class=AltSectionBackground Name=listbackground bFillClient=Wahr WinTop=0.052083 WinLeft=0.023438 WinWidth=0.953125 WinHeight=0.461357 bBoundToParent=Wahr bScaleToParent=Wahr OnPreDraw=listbackground.InternalPreDraw End Object sb_List=AltSectionBackground'xVoting.KickVotingPage.listbackground' Begin Object Class=KickVoteMultiColumnListBox Name=PlayerListBoxControl bVisibleWhenEmpty=Wahr OnCreateComponent=PlayerListBoxControl.InternalOnCreateComponent StyleName="ServerBrowserGrid" WinTop=0.162239 WinLeft=0.254141 WinWidth=0.473047 WinHeight=0.481758 OnRightClick=PlayerListBoxControl.InternalOnRightClick End Object lb_PlayerListBox=KickVoteMultiColumnListBox'xVoting.KickVotingPage.PlayerListBoxControl' Begin Object Class=GUIButton Name=InfoButton Caption="Info" WinTop=0.511082 WinLeft=0.550634 WinWidth=0.160075 TabOrder=1 bStandardized=Wahr OnClick=KickVotingPage.InfoClick OnKeyEvent=InfoButton.InternalOnKeyEvent End Object b_Info=GUIButton'xVoting.KickVotingPage.InfoButton' Begin Object Class=GUIButton Name=KickButton Caption="Kick" WinTop=0.511082 WinLeft=0.715411 WinWidth=0.137744 TabOrder=1 bStandardized=Wahr OnClick=KickVotingPage.KickClick OnKeyEvent=KickButton.InternalOnKeyEvent End Object b_Kick=GUIButton'xVoting.KickVotingPage.KickButton' lmsgKickVotingDisabled="Sorry, Kick Voting has been disabled by the server administrator." WindowName="Kick Voting" OnOpen=KickVotingPage.InternalOnOpen } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |