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

  1. // ====================================================================
  2. //  Class:  GUI.GUIVertScrollButton
  3. //
  4. //  Written by Joe Wilcox
  5. //  (c) 2002, Epic Games, Inc.  All Rights Reserved
  6. // ====================================================================
  7.  
  8. class GUIVertScrollButton extends GUIGFXButton
  9.         Native;
  10.  
  11. #exec OBJ LOAD FILE=GUIContent.utx
  12.  
  13. var(Menu)    bool    UpButton;
  14.  
  15. function InitComponent(GUIController MyController, GUIComponent MyOwner)
  16. {
  17.     Super.Initcomponent(MyController, MyOwner);
  18.  
  19.     if (UpButton)
  20.         Graphic = Material'GUIContent.Menu.ArrowBlueUp';
  21.     else
  22.         Graphic = Material'GUIContent.Menu.ArrowBlueDown';
  23. }
  24.  
  25.  
  26. defaultproperties
  27. {
  28.     StyleName="RoundScaledButton"
  29.     UpButton=false
  30.     Position=ICP_Scaled
  31.     bNeverFocus=true
  32.     bCaptureMouse=True
  33. }