home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / core / IWindow.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  1003 b   |  45 lines

  1. package mx.core
  2. {
  3.    import flash.display.NativeWindow;
  4.    
  5.    public interface IWindow
  6.    {
  7.       function get minimizable() : Boolean;
  8.       
  9.       function set titleIcon(param1:Class) : void;
  10.       
  11.       function set status(param1:String) : void;
  12.       
  13.       function get nativeWindow() : NativeWindow;
  14.       
  15.       function get systemChrome() : String;
  16.       
  17.       function get visible() : Boolean;
  18.       
  19.       function get resizable() : Boolean;
  20.       
  21.       function maximize() : void;
  22.       
  23.       function restore() : void;
  24.       
  25.       function set title(param1:String) : void;
  26.       
  27.       function get titleIcon() : Class;
  28.       
  29.       function get status() : String;
  30.       
  31.       function get maximizable() : Boolean;
  32.       
  33.       function get title() : String;
  34.       
  35.       function get transparent() : Boolean;
  36.       
  37.       function get type() : String;
  38.       
  39.       function minimize() : void;
  40.       
  41.       function close() : void;
  42.    }
  43. }
  44.  
  45.