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 |
// ==================================================================== // Base class for header / footer bars // // Written by Joe Wilcox // Updated by Ron Prestenback // (c) 2002, Epic Games, Inc. All Rights Reserved // ==================================================================== class GUITitleBar extends GUIBorder Native; cpptext { void PreDraw(UCanvas* Canvas); } var GUITabControl DockedTabs; // Set this to a Tab control and that control will be centered undeneath var() ePageAlign DockAlign; // How to Align the tabs.. only Left, Center and right work var() bool bUseTextHeight; // Should this control scale to the text height var() bool bDockTop; // If True, dock the control ON TOP of this one var const Material Effect; // obsolete defaultproperties { bUseTextHeight=True bTabStop=False bNeverFocus=True bVisible=True DockAlign=PGA_None StyleName="TextLabel" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |