UMenu
Class UMenuMapListFrameCW

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

class UMenuMapListFrameCW
extends UMenu.UMenuDialogClientWindow


Variables
 UWindowControlFrame Frame


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



Source Code


00001	class UMenuMapListFrameCW expands UMenuDialogClientWindow;
00002	
00003	var UWindowControlFrame Frame;
00004	
00005	function Created()
00006	{
00007		Frame = UWindowControlFrame(CreateWindow(class'UWindowControlFrame', 0, 0, WinWidth, WinHeight));
00008		Super.Created();
00009	}
00010	
00011	function BeforePaint(Canvas C, float X, float Y)
00012	{
00013		Super.BeforePaint(C, X, Y);
00014	
00015		Frame.WinLeft = 5;
00016		Frame.WinTop = 5;
00017		Frame.SetSize(WinWidth - 10, WinHeight - 10);
00018	}
00019	
00020	defaultproperties
00021	{
00022	}

End Source Code