Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

xVoting.VotingPage


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
//====================================================================
//  xVoting.VotingPage
//  Voting page is the base for MapVoting and KickVoting pages.
//
//  Written by Bruce Bickar
//  (c) 2003, Epic Games, Inc.  All Rights Reserved
// ====================================================================

class VotingPage extends LargeWindow DependsOn(VotingHandler);

var automated MapVoteFooter f_Chat;
var() editconst noexport VotingReplicationInfo MVRI;

//------------------------------------------------------------------------------------------------
function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
    local PlayerController PC;

    Super.Initcomponent(MyController, MyOwner);

    PC = PlayerOwner();
    MVRI = VotingReplicationInfo(PC.VoteReplicationInfo);

    // Turn pause off if currently paused (stops replication)
    if(PlayerOwner() != None && PlayerOwner().Level.Pauser != None)
        PlayerOwner().SetPause(false);
}
//------------------------------------------------------------------------------------------------
function Free()
{
    MVRI = None;
    Super.Free();
}
//------------------------------------------------------------------------------------------------

defaultproperties
{
     Begin Object Class=MapVoteFooter Name=MatchSetupFooter
         WinTop=0.686457
         WinLeft=0.019921
         WinWidth=0.962109
         WinHeight=0.291406
         TabOrder=10
     End Object
     f_Chat=MapVoteFooter'xVoting.VotingPage.MatchSetupFooter'

     bRequire640x480=Falsch
     bAllowedAsLast=Wahr
     WinTop=0.100000
     WinLeft=0.100000
     WinWidth=0.800000
     WinHeight=0.800000
     bAcceptsInput=Falsch
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fr 30.3.2007 08:44:02.000 - Creation time: Mo 16.4.2007 11:20:57.328 - Created with UnCodeX