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

  1. // ====================================================================
  2. //  Class:  GUI.GUIGFXButton
  3. //
  4. //  Written by Joe Wilcox
  5. //  (c) 2002, Epic Games, Inc.  All Rights Reserved
  6. // ====================================================================
  7.  
  8. class GUICheckBoxButton extends GUIGFXButton
  9.     Native;
  10.  
  11.  
  12. function string LoadINI()
  13. {
  14.     local string s;
  15.  
  16.     s = Super.LoadINI();
  17.  
  18.     if (S=="")
  19.         return s;
  20.  
  21.     bChecked = bool(s);
  22.     return s;
  23. }
  24.  
  25. function SaveINI(string Value)
  26. {
  27.     Super.SaveINI(""$bChecked);
  28. }
  29.  
  30.  
  31. defaultproperties
  32. {
  33.     bCheckBox=true
  34.     Position=ICP_Scaled
  35.     bRepeatClick=false
  36.     Graphic=Material'GUIContent.menus.CheckBoxMark'
  37.     bTabStop=true
  38. }