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

XInterface.UT2MainPage


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
//====================================================================
//  Parent: GUIPage
//   Class: XInterface.UT2K4MainPage
//    Date: 04-28-2003
//
//  Base class for all main menu pages.
//
//  Written by Ron Prestenback
//  (c) 2003, Epic Games, Inc.  All Rights Reserved
// ====================================================================
class UT2MainPage extends UT2K3GUIPage;

var automated GUITabControl 	c_Tabs;

var automated GUIHeader			t_Header;
var automated GUIFooter			t_Footer;

var array<string>				PanelClass;
var localized array<string>		PanelCaption;
var localized array<string>		PanelHint;

function InitComponent(GUIController MyC, GUIComponent MyO)
{
	Super.InitComponent(MyC, MyO);

	c_Tabs.OnChange = InternalOnChange;
	t_Header.DockedTabs = c_Tabs;
}

function InternalOnChange(GUIComponent Sender);

DefaultProperties
{
	Begin Object Class=GUITabControl Name=PageTabs
		WinWidth=1.0
		WinLeft=0
		WinTop=0.25
		WinHeight=48
		TabHeight=0.04
		bFillSpace=False
		bAcceptsInput=True
		bDockPanels=True
		OnChange=InternalOnChange
	End Object

	Background=Material'InterfaceContent.Backgrounds.bg10'

	c_Tabs=PageTabs
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:28.000 - Creation time: Do 14.8.2014 09:58:54.634 - Created with UnCodeX