UMenu
Class UMenuHelpClientWindow

source: e:\games\UnrealTournament\UMenu\Classes\UMenuHelpClientWindow.uc
Core.Object
   |
   +--UWindow.UWindowBase
      |
      +--UWindow.UWindowWindow
         |
         +--UWindow.UWindowClientWindow
            |
            +--UMenu.UMenuHelpClientWindow
Direct Known Subclasses:None

class UMenuHelpClientWindow
extends UWindow.UWindowClientWindow


Variables
 UMenuHelpTextArea TextArea


Function Summary
 void BeforePaint(Canvas C, float X, float Y)
 void Created()
 void Paint(Canvas C, float X, float Y)



Source Code


00001	class UMenuHelpClientWindow extends UWindowClientWindow;
00002	
00003	var UMenuHelpTextArea TextArea;
00004	
00005	function Created()
00006	{
00007		TextArea = UMenuHelpTextArea(CreateWindow(class'UMenuHelpTextArea', 20, 20, WinWidth-40, WinHeight-90));
00008	}
00009	
00010	function Paint(Canvas C, float X, float Y)
00011	{
00012		Tile(C, Texture'Background');
00013	}
00014	
00015	function BeforePaint(Canvas C, float X, float Y)
00016	{
00017		TextArea.WinWidth = WinWidth-40;
00018		TextArea.WinHeight = WinWidth-90;
00019	}
00020	
00021	defaultproperties
00022	{
00023	}

End Source Code