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

XInterface.Browser_AddBuddy


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
class Browser_AddBuddy extends UT2K3GUIPage;

var moEditBox   MyNewBuddy;
var Browser_ServerListPageBuddy MyBuddyPage;

function InitComponent(GUIController pMyController, GUIComponent MyOwner)
{
    Super.InitComponent(pMyController, MyOwner);

    MyNewBuddy = moEditBox(Controls[1]);
}

function bool InternalOnClick(GUIComponent Sender)
{
    local string buddyName;

    if(Sender == Controls[4])
    {
        buddyName = MyNewBuddy.GetText();

        if(buddyName == "")
            return true;

        MyBuddyPage.Buddies.Length = MyBuddyPage.Buddies.Length + 1;
        MyBuddyPage.Buddies[MyBuddyPage.Buddies.Length - 1] = buddyName;
        MyBuddyPage.MyBuddyList.ItemCount = MyBuddyPage.Buddies.Length;
        MyBuddyPage.SaveConfig();
    }

    Controller.CloseMenu(false);

    return true;
}
        

defaultproperties
{
     Begin Object Class=GUIButton Name=VidOKBackground
         StyleName="SquareBar"
         WinHeight=1.000000
         bBoundToParent=True
         bScaleToParent=True
         bAcceptsInput=False
         bNeverFocus=True
         OnKeyEvent=VidOKBackground.InternalOnKeyEvent
     End Object
     Controls(0)=GUIButton'XInterface.Browser_AddBuddy.VidOKBackground'

     Begin Object Class=moEditBox Name=BuddyEntryBox
         LabelJustification=TXTA_Right
         CaptionWidth=0.550000
         Caption="Buddy Name: "
         LabelFont="UT2SmallFont"
         LabelColor=(B=255,G=255,R=255)
         OnCreateComponent=BuddyEntryBox.InternalOnCreateComponent
         WinTop=0.466667
         WinLeft=0.160000
         WinHeight=0.050000
     End Object
     Controls(1)=moEditBox'XInterface.Browser_AddBuddy.BuddyEntryBox'

     Begin Object Class=GUIButton Name=CancelButton
         Caption="CANCEL"
         WinTop=0.750000
         WinLeft=0.650000
         WinWidth=0.200000
         bBoundToParent=True
         OnClick=Browser_AddBuddy.InternalOnClick
         OnKeyEvent=CancelButton.InternalOnKeyEvent
     End Object
     Controls(2)=GUIButton'XInterface.Browser_AddBuddy.CancelButton'

     Begin Object Class=GUILabel Name=AddBuddyDesc
         Caption="Add Buddy"
         TextAlign=TXTA_Center
         TextColor=(B=0,G=200,R=230)
         TextFont="UT2HeaderFont"
         WinTop=0.400000
         WinHeight=32.000000
     End Object
     Controls(3)=GUILabel'XInterface.Browser_AddBuddy.AddBuddyDesc'

     Begin Object Class=GUIButton Name=OkButton
         Caption="OK"
         WinTop=0.750000
         WinLeft=0.125000
         WinWidth=0.200000
         bBoundToParent=True
         OnClick=Browser_AddBuddy.InternalOnClick
         OnKeyEvent=OkButton.InternalOnKeyEvent
     End Object
     Controls(4)=GUIButton'XInterface.Browser_AddBuddy.OkButton'

     WinTop=0.375000
     WinHeight=0.250000
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Mon 23/10/2006 20:30:38.000 - Creation time: Wed 7/2/2007 19:16:35.218 - Created with UnCodeX