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

  1. // ====================================================================
  2. //  Written by Joe Wilcox
  3. //  (c) 2002, Epic Games, Inc.  All Rights Reserved
  4. //
  5. //    Edit boxes...base class for all other boxes / buttons
  6. // ====================================================================
  7.  
  8. class STY_SquareButton extends GUIStyles;
  9.  
  10. defaultproperties
  11. {
  12.     KeyName="SquareButton"
  13.     Images(0)=Material'GUIContent.Menu.EditBox'
  14.     //Images(1)=Material'GUIContent.Menu.EditBoxWatched'
  15.     //Images(2)=Material'GUIContent.Menu.EditBoxFocused'
  16.     //Images(3)=Material'GUIContent.Menu.fbEditBoxPressed'
  17.     Images(1)=Material'GUIContent.Menu.EditBox'
  18.     Images(2)=Material'GUIContent.Menu.EditBox'
  19.     Images(3)=Material'GUIContent.Menu.EditBox'
  20.     Images(4)=Material'GUIContent.Menu.EditBox'
  21.     FontColors(0)=(R=255,G=255,B=255,A=255)    
  22.     FontColors(1)=(R=255,G=255,B=255,A=255)    
  23.     FontColors(2)=(R=255,G=255,B=255,A=255)    
  24.     FontColors(3)=(R=230,G=200,B=0,A=255)    
  25. //    FontColors(3)=(R=0,G=0,B=0,A=255)
  26.  
  27. }
  28.