home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / HexiomConnect.swf / scripts / mx / core / IContainer.as < prev    next >
Text File  |  2008-08-29  |  4KB  |  119 lines

  1. package mx.core
  2. {
  3.    import flash.display.DisplayObject;
  4.    import flash.display.Graphics;
  5.    import flash.display.Sprite;
  6.    import flash.geom.Point;
  7.    import flash.geom.Rectangle;
  8.    import flash.media.SoundTransform;
  9.    import flash.text.TextSnapshot;
  10.    import mx.managers.IFocusManager;
  11.    
  12.    public interface IContainer extends IUIComponent
  13.    {
  14.        
  15.       
  16.       function set hitArea(param1:Sprite) : void;
  17.       
  18.       function swapChildrenAt(param1:int, param2:int) : void;
  19.       
  20.       function getChildByName(param1:String) : DisplayObject;
  21.       
  22.       function get doubleClickEnabled() : Boolean;
  23.       
  24.       function get graphics() : Graphics;
  25.       
  26.       function get useHandCursor() : Boolean;
  27.       
  28.       function addChildAt(param1:DisplayObject, param2:int) : DisplayObject;
  29.       
  30.       function set mouseChildren(param1:Boolean) : void;
  31.       
  32.       function set creatingContentPane(param1:Boolean) : void;
  33.       
  34.       function get textSnapshot() : TextSnapshot;
  35.       
  36.       function getChildIndex(param1:DisplayObject) : int;
  37.       
  38.       function set doubleClickEnabled(param1:Boolean) : void;
  39.       
  40.       function getObjectsUnderPoint(param1:Point) : Array;
  41.       
  42.       function get creatingContentPane() : Boolean;
  43.       
  44.       function setChildIndex(param1:DisplayObject, param2:int) : void;
  45.       
  46.       function get soundTransform() : SoundTransform;
  47.       
  48.       function set useHandCursor(param1:Boolean) : void;
  49.       
  50.       function get numChildren() : int;
  51.       
  52.       function contains(param1:DisplayObject) : Boolean;
  53.       
  54.       function get verticalScrollPosition() : Number;
  55.       
  56.       function set defaultButton(param1:IFlexDisplayObject) : void;
  57.       
  58.       function swapChildren(param1:DisplayObject, param2:DisplayObject) : void;
  59.       
  60.       function set horizontalScrollPosition(param1:Number) : void;
  61.       
  62.       function get focusManager() : IFocusManager;
  63.       
  64.       function startDrag(param1:Boolean = false, param2:Rectangle = null) : void;
  65.       
  66.       function set mouseEnabled(param1:Boolean) : void;
  67.       
  68.       function getChildAt(param1:int) : DisplayObject;
  69.       
  70.       function set soundTransform(param1:SoundTransform) : void;
  71.       
  72.       function get tabChildren() : Boolean;
  73.       
  74.       function get tabIndex() : int;
  75.       
  76.       function set focusRect(param1:Object) : void;
  77.       
  78.       function get hitArea() : Sprite;
  79.       
  80.       function get mouseChildren() : Boolean;
  81.       
  82.       function removeChildAt(param1:int) : DisplayObject;
  83.       
  84.       function get defaultButton() : IFlexDisplayObject;
  85.       
  86.       function stopDrag() : void;
  87.       
  88.       function set tabEnabled(param1:Boolean) : void;
  89.       
  90.       function get horizontalScrollPosition() : Number;
  91.       
  92.       function get focusRect() : Object;
  93.       
  94.       function get viewMetrics() : EdgeMetrics;
  95.       
  96.       function set verticalScrollPosition(param1:Number) : void;
  97.       
  98.       function get dropTarget() : DisplayObject;
  99.       
  100.       function get mouseEnabled() : Boolean;
  101.       
  102.       function set tabChildren(param1:Boolean) : void;
  103.       
  104.       function set buttonMode(param1:Boolean) : void;
  105.       
  106.       function get tabEnabled() : Boolean;
  107.       
  108.       function get buttonMode() : Boolean;
  109.       
  110.       function removeChild(param1:DisplayObject) : DisplayObject;
  111.       
  112.       function set tabIndex(param1:int) : void;
  113.       
  114.       function addChild(param1:DisplayObject) : DisplayObject;
  115.       
  116.       function areInaccessibleObjectsUnderPoint(param1:Point) : Boolean;
  117.    }
  118. }
  119.