home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2012 April / ME_04_2012.iso / Video-Tutorial / iPhoto / media / player.swf / scripts / mx / managers / IFocusManager.as < prev    next >
Encoding:
Text File  |  2011-11-11  |  1.3 KB  |  46 lines

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