1  /**
     2   * com.sekati.ui.IScrollable
     3   * @version 1.0.0
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8   
     9  import com.sekati.core.CoreInterface;
    10  
    11  /**
    12   * Interface describing {@link com.sekati.ui.Scroll} and other Scrollable ui classes.
    13   */
    14  interface com.sekati.ui.IScrollable extends CoreInterface {
    15  
    16  	function init():Void;
    17  
    18  	function slideContent(pos:Number, sec:Number):Void;
    19  
    20  	function slideScroller(pos:Number, sec:Number):Void;
    21  
    22  	function isScrollable():Boolean;
    23  
    24  	function isDragging():Boolean;
    25  
    26  	function isMouseInArea():Boolean;
    27  }