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

  1. package mx.core
  2. {
  3.    import flash.display.InteractiveObject;
  4.    import flash.geom.Matrix;
  5.    import mx.managers.ILayoutManager;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class UIComponentGlobals
  10.    {
  11.       mx_internal static var layoutManager:ILayoutManager;
  12.       
  13.       mx_internal static var nextFocusObject:InteractiveObject;
  14.       
  15.       mx_internal static var callLaterSuspendCount:int = 0;
  16.       
  17.       mx_internal static var callLaterDispatcherCount:int = 0;
  18.       
  19.       mx_internal static var tempMatrix:Matrix = new Matrix();
  20.       
  21.       mx_internal static var designTime:Boolean = false;
  22.       
  23.       private static var _catchCallLaterExceptions:Boolean = false;
  24.       
  25.       public function UIComponentGlobals()
  26.       {
  27.          super();
  28.       }
  29.       
  30.       public static function set catchCallLaterExceptions(param1:Boolean) : void
  31.       {
  32.          _catchCallLaterExceptions = param1;
  33.       }
  34.       
  35.       public static function get designMode() : Boolean
  36.       {
  37.          return mx_internal::designTime;
  38.       }
  39.       
  40.       public static function set designMode(param1:Boolean) : void
  41.       {
  42.          mx_internal::designTime = param1;
  43.       }
  44.       
  45.       public static function get catchCallLaterExceptions() : Boolean
  46.       {
  47.          return _catchCallLaterExceptions;
  48.       }
  49.    }
  50. }
  51.  
  52.