GUI
Class GUIVertScrollButton

source: C:\XIII\GUI\Classes\GUIVertScrollButton.uc
Core.Object
   |
   +--GUI.GUI
      |
      +--GUI.GUIComponent
         |
         +--GUI.GUIButton
            |
            +--GUI.GUIGFXButton
               |
               +--GUI.GUIVertScrollButton
Direct Known Subclasses:None

class GUIVertScrollButton
extends GUI.GUIGFXButton

// ==================================================================== // (c) 2002, Epic Games, Inc. All Rights Reserved // ====================================================================

Function Summary
 void InitComponent(GUIController MyController, GUIComponent MyOwner)
     
//#exec OBJ LOAD FILE=GUIContent.utx



Source Code


00001	// ====================================================================
00002	//  (c) 2002, Epic Games, Inc.  All Rights Reserved
00003	// ====================================================================
00004	
00005	class GUIVertScrollButton extends GUIGFXButton
00006			Native;
00007	
00008	//#exec OBJ LOAD FILE=GUIContent.utx
00009	
00010	var(Menu)	bool	UpButton;
00011	
00012	function InitComponent(GUIController MyController, GUIComponent MyOwner)
00013	{
00014		Super.Initcomponent(MyController, MyOwner);
00015		
00016		//if (UpButton)
00017			//Graphic = Material'GUIContent.Menu.ArrowBlueUp';
00018			//Graphic = texture'XIIIMenuStart.boutonHA';
00019		//else
00020			//Graphic = Material'GUIContent.Menu.ArrowBlueDown';
00021			//Graphic = texture'XIIIMenuStart.boutonHA';
00022	}
00023	
00024	
00025	
00026	
00027	defaultproperties
00028	{
00029	     Position=ICP_Scaled
00030	     bNeverFocus=True
00031	}

End Source Code