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 |
//----------------------------------------------------------- // //----------------------------------------------------------- class ROUT2k4Browser_IRC extends UT2k4Browser_IRC; function InitComponent(GUIController MyController, GUIComponent MyOwner) { local int i; Super.Initcomponent(MyController, MyOwner); class'ROInterfaceUtil'.static.SetROStyle(MyController, Controls); // Change the Style of the Tabs /*c_Channel.TabHeight=0.06; c_Channel.BackgroundStyle = None; c_Channel.BackgroundStyleName = "";*/ for ( i = 0; i < c_Channel.TabStack.Length; i++ ) { if ( c_Channel.TabStack[i] != None ) { //c_Channel.TabStack[i].Style=None; // needed to reset style c_Channel.TabStack[i].FontScale=FNS_Medium; c_Channel.TabStack[i].bAutoSize=True; c_Channel.TabStack[i].bAutoShrink=False; //c_Channel.TabStack[i].StyleName="ROTabButton"; //c_Channel.TabStack[i].Initcomponent(MyController, c_Channel); } } } /* function UT2K4IRC_Channel AddChannel( string ChannelName, optional bool bPrivate ) { local UT2K4IRC_Channel channel; local int i; channel = UT2K4IRC_Channel( c_Channel.AddTab(ChannelName, Eval( bPrivate, PrivateChannelClass, PublicChannelClass )) ); // Change the Style of the Tabs c_Channel.TabHeight=0.06; c_Channel.BackgroundStyle = None; c_Channel.BackgroundStyleName = ""; for ( i = 0; i < c_Channel.TabStack.Length; i++ ) { if ( c_Channel.TabStack[i] != None ) { c_Channel.TabStack[i].Style=None; // needed to reset style c_Channel.TabStack[i].FontScale=FNS_Medium; c_Channel.TabStack[i].bAutoSize=True; c_Channel.TabStack[i].bAutoShrink=False; c_Channel.TabStack[i].StyleName="ROTabButton"; c_Channel.TabStack[i].Initcomponent(localController, c_Channel); } } return channel; } */ defaultproperties { SystemPageClass="ROInterface.ROUT2K4IRC_System" PublicChannelClass="ROInterface.ROUT2K4IRC_Channel" PrivateChannelClass="ROInterface.ROUT2K4IRC_Private" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |