Sha256: 3f080f02ebe28ccee42c4cd6a19e02a34664671e2c09e7ce190dbfabbd566f9c

Contents?: true

Size: 1.73 KB

Versions: 7

Compression:

Stored size: 1.73 KB

Contents

/*   Riassence Framework
 *   Copyright 2006 Riassence Inc.
 *   http://riassence.com/
 *
 *   You should have received a copy of the GNU General Public License along
 *   with this software package. If not, contact licensing@riassence.com
 */

/*** = Description
  ** HVSlider (vertical version of the slider control) is a control unit that enables the user
  ** to choose a value in a range of values. Sliders support both dragging the handle and 
  ** clicking the mouse anywhere on the slider to move the handle towards the mouse, 
  ** as well as keyboard support after the handle is in active mode. 
  ** Naturally, sliders are commonly used as colour mixers, volume controls, 
  ** graphical equalizers and seekers in media applications. 
  ** A typical slider is a drag-able knob along vertical or horizontal line.
  **
  ** = Instance variables
  ** +minValue+::       The smallest allowed value.
  ** +maxValue+::       The biggest allowed value.
  ** +repeatDelay+::    The key repetition initial delay when changing the slider
  **                    with cursor keys. Defaults to 300 (ms)
  ** +repeatInterval+:: The key repetition interval when changing the slider
  **                    with cursor keys. Defaults to 50 (ms)
  ** +inveseAxis+::     Inverse Scrollwheel axis.
  **                    As there is only one scrollwheel event, sideways
  **                    scrolling doesn't work logically for horizonal
  **                    scrollbars by default, so set this to true to
  **                    have horizonal sliders work logically
  **                    with sideways scrolling, where supported.
  ***/
HVSlider = HSlider.extend({
  
  componentName: "vslider",
    
  // This overrides the HSlider property.
  _isVertical: true
  
});

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rsence-2.0.0.5.pre js/controls/sliders/vslider/vslider.js
rsence-2.0.0.4.pre js/controls/sliders/vslider/vslider.js
rsence-2.0.0.3.pre js/controls/sliders/vslider/vslider.js
rsence-2.0.0.2.pre js/controls/sliders/vslider/vslider.js
rsence-2.0.0.1.pre js/controls/sliders/vslider/vslider.js
rsence-2.0.0.0.pre js/controls/sliders/vslider/vslider.js
rsence-2.0.0.pre js/controls/sliders/vslider/vslider.js