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

  1. package mx.core
  2. {
  3.    import flash.display.DisplayObject;
  4.    import flash.display.DisplayObjectContainer;
  5.    import flash.display.Sprite;
  6.    import mx.managers.ISystemManager;
  7.    
  8.    public interface IUIComponent extends IFlexDisplayObject
  9.    {
  10.        
  11.       
  12.       function set focusPane(param1:Sprite) : void;
  13.       
  14.       function get enabled() : Boolean;
  15.       
  16.       function set enabled(param1:Boolean) : void;
  17.       
  18.       function set isPopUp(param1:Boolean) : void;
  19.       
  20.       function get explicitMinHeight() : Number;
  21.       
  22.       function get percentWidth() : Number;
  23.       
  24.       function get isPopUp() : Boolean;
  25.       
  26.       function get owner() : DisplayObjectContainer;
  27.       
  28.       function get percentHeight() : Number;
  29.       
  30.       function get baselinePosition() : Number;
  31.       
  32.       function owns(param1:DisplayObject) : Boolean;
  33.       
  34.       function initialize() : void;
  35.       
  36.       function get maxWidth() : Number;
  37.       
  38.       function get minWidth() : Number;
  39.       
  40.       function getExplicitOrMeasuredWidth() : Number;
  41.       
  42.       function get explicitMaxWidth() : Number;
  43.       
  44.       function get explicitMaxHeight() : Number;
  45.       
  46.       function set percentHeight(param1:Number) : void;
  47.       
  48.       function get minHeight() : Number;
  49.       
  50.       function set percentWidth(param1:Number) : void;
  51.       
  52.       function get document() : Object;
  53.       
  54.       function get focusPane() : Sprite;
  55.       
  56.       function getExplicitOrMeasuredHeight() : Number;
  57.       
  58.       function set tweeningProperties(param1:Array) : void;
  59.       
  60.       function set explicitWidth(param1:Number) : void;
  61.       
  62.       function set measuredMinHeight(param1:Number) : void;
  63.       
  64.       function get explicitMinWidth() : Number;
  65.       
  66.       function get tweeningProperties() : Array;
  67.       
  68.       function get maxHeight() : Number;
  69.       
  70.       function set owner(param1:DisplayObjectContainer) : void;
  71.       
  72.       function set includeInLayout(param1:Boolean) : void;
  73.       
  74.       function setVisible(param1:Boolean, param2:Boolean = false) : void;
  75.       
  76.       function parentChanged(param1:DisplayObjectContainer) : void;
  77.       
  78.       function get explicitWidth() : Number;
  79.       
  80.       function get measuredMinHeight() : Number;
  81.       
  82.       function set measuredMinWidth(param1:Number) : void;
  83.       
  84.       function set explicitHeight(param1:Number) : void;
  85.       
  86.       function get includeInLayout() : Boolean;
  87.       
  88.       function get measuredMinWidth() : Number;
  89.       
  90.       function get explicitHeight() : Number;
  91.       
  92.       function set systemManager(param1:ISystemManager) : void;
  93.       
  94.       function set document(param1:Object) : void;
  95.       
  96.       function get systemManager() : ISystemManager;
  97.    }
  98. }
  99.