home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Livebrush / Install-LivebrushLite.air / livebrush.swf / scripts / fl / managers / IFocusManager.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  1.1 KB  |  40 lines

  1. package fl.managers
  2. {
  3.    import fl.controls.Button;
  4.    import flash.display.InteractiveObject;
  5.    
  6.    public interface IFocusManager
  7.    {
  8.       function getFocus() : InteractiveObject;
  9.       
  10.       function deactivate() : void;
  11.       
  12.       function set defaultButton(param1:Button) : void;
  13.       
  14.       function set showFocusIndicator(param1:Boolean) : void;
  15.       
  16.       function get defaultButtonEnabled() : Boolean;
  17.       
  18.       function findFocusManagerComponent(param1:InteractiveObject) : InteractiveObject;
  19.       
  20.       function get nextTabIndex() : int;
  21.       
  22.       function get defaultButton() : Button;
  23.       
  24.       function get showFocusIndicator() : Boolean;
  25.       
  26.       function hideFocus() : void;
  27.       
  28.       function activate() : void;
  29.       
  30.       function showFocus() : void;
  31.       
  32.       function set defaultButtonEnabled(param1:Boolean) : void;
  33.       
  34.       function setFocus(param1:InteractiveObject) : void;
  35.       
  36.       function getNextFocusManagerComponent(param1:Boolean = false) : InteractiveObject;
  37.    }
  38. }
  39.  
  40.