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

  1. package mx.managers
  2. {
  3.    public interface IFocusManagerComponent
  4.    {
  5.       function get focusEnabled() : Boolean;
  6.       
  7.       function set focusEnabled(param1:Boolean) : void;
  8.       
  9.       function get hasFocusableChildren() : Boolean;
  10.       
  11.       function set hasFocusableChildren(param1:Boolean) : void;
  12.       
  13.       function get mouseFocusEnabled() : Boolean;
  14.       
  15.       function get tabFocusEnabled() : Boolean;
  16.       
  17.       function get tabIndex() : int;
  18.       
  19.       function set tabIndex(param1:int) : void;
  20.       
  21.       function setFocus() : void;
  22.       
  23.       function drawFocus(param1:Boolean) : void;
  24.    }
  25. }
  26.  
  27.