UBrowser
Class UBrowserUpdateServerTextArea

source: e:\games\UnrealTournament\UBrowser\Classes\UBrowserUpdateServerTextArea.uc
Core.Object
   |
   +--UWindow.UWindowBase
      |
      +--UWindow.UWindowWindow
         |
         +--UWindow.UWindowDialogControl
            |
            +--UWindow.UWindowDynamicTextArea
               |
               +--UWindow.UWindowHTMLTextArea
                  |
                  +--UBrowser.UBrowserUpdateServerTextArea
Direct Known Subclasses:None

class UBrowserUpdateServerTextArea
extends UWindow.UWindowHTMLTextArea


Variables
 string StatusURL


Function Summary
 void BeforePaint(Canvas C, float X, float Y)
 void LaunchUnrealURL(string URL)
 void OverURL(string URL)



Source Code


00001	class UBrowserUpdateServerTextArea expands UWindowHTMLTextArea;
00002	
00003	var string StatusURL;
00004	
00005	function LaunchUnrealURL(string URL)
00006	{
00007		Super.LaunchUnrealURL(URL);
00008	
00009		GetParent(class'UWindowFramedWindow').Close();
00010		Root.Console.CloseUWindow();
00011	}
00012	
00013	function BeforePaint(Canvas C, float X, float Y)
00014	{
00015		StatusURL = "";
00016		Super.BeforePaint(C, X, Y);
00017	}
00018	
00019	function OverURL(string URL)
00020	{
00021		StatusURL = URL;
00022	}
00023	
00024	defaultproperties
00025	{
00026	}

End Source Code