home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / GUI / Classes / STY_SquareBar.uc < prev    next >
Text File  |  2003-06-30  |  747b  |  22 lines

  1. // ====================================================================
  2. //  Written by Joe Wilcox
  3. //  (c) 2002, Epic Games, Inc.  All Rights Reserved
  4. //
  5. //    Generic bar used to display most popup dialogs / menus
  6. //    Background...  (Mid-Game Menu, for example)
  7. // ====================================================================
  8.  
  9. class STY_SquareBar extends STY_RoundButton;
  10.  
  11. defaultproperties
  12. {
  13.     KeyName="SquareBar"
  14.     Images(0)=Material'GUIContent.Menu.SquareBoxA'
  15.     Images(4)=Material'GUIContent.Menu.SquareBoxA'
  16.     FontColors(0)=(R=160,G=160,B=160,A=255)    
  17.     FontColors(1)=(R=160,G=160,B=160,A=255)    
  18.     FontColors(2)=(R=160,G=160,B=160,A=255)    
  19.     FontColors(3)=(R=160,G=160,B=160,A=255)    
  20.     FontColors(4)=(R=160,G=160,B=160,A=255)    
  21. }
  22.