SOURCE CODE: Uize.Widget.ImageWipe (view docs)

/*______________
|       ______  |   U I Z E    J A V A S C R I P T    F R A M E W O R K
|     /      /  |   ---------------------------------------------------
|    /    O /   |    MODULE : Uize.Widget.ImageWipe Class
|   /    / /    |
|  /    / /  /| |    ONLINE : http://uize.com
| /____/ /__/_| | COPYRIGHT : (c)2005-2016 UIZE
|          /___ |   LICENSE : Available under MIT License or GNU General Public License
|_______________|             http://uize.com/license.html
*/

/* Module Meta Data
  type: Class
  importance: 3
  codeCompleteness: 100
  docCompleteness: 100
*/

/*?
  Introduction
    The =Uize.Widget.ImageWipe= class enables a wide variety of sophisticated animated image wipe effects, used for transitioning from one image to another.

    *DEVELOPERS:* `Chris van Rensburg`

    This widget class can be used in conjunction with the =Uize.Widget.SlideShow= class when creating slideshow experiences. A number of preset wipe effect settings are available in the =Uize.Widget.ImageWipe.xPresets= extension module.

  How It Works
    Understanding how the image wipe effect works will enable you to come up with your own unique wipes by helping you to understand how the various state properties affect the wipe.

    In a Nutshell
      The image wipe is not terribly complicated, in its essence.

      Essentially, revealing a new image involves having a number of image nodes stacked on top of one another above the previous image that is to be covered. The src attribute for each of those image nodes is set to the URL of the new image. Then, for each image node, initial and final coordinates for a crop rect are calculated. During the course of the wipe, the crop rect coordinates are interpolated between the initial coordinates and the final coordinates. The final coordinates are calculated such that, at the end of the wipe, all of the image nodes combined block out the previous image.

      Additional nuances provide for a wide variety of interesting effects, such as being able to control the start times of the animations for the different image nodes, being able to fade in their opacity, being able to control the order in which they animate, and being able to control their initial coordinates and final coordinates through settings of the effect.

    In More Detail
      Now, let's get into a more detailed description of the mechanics. For the purpose of this discussion, a number of terms and concepts are defined, as follows...

      Wipe Port
        The "port" in which the wipe effect is viewed is termed the `wipe port`.

        The `wipe port` contains two pane stacks - one `pane stack` for displaying the current image, and another `pane stack` for revealing the next image. Both pane stacks are positioned absolutely and right on top of one another.

      Pane Stack
        A pane stack is a stack of image nodes that are all positioned absolutely and right on top of one another, where each image node corresponds to what is termed a `pane`.

        One pane stack is used to display one image, even though it is comprised of many image nodes. The number of image nodes in the pane stack used for showing the current image is the same as the number of image nodes in the pane stack used for showing the next image, and is calculated as the product of the =divisionsX= and =divisionsY= state properties. So, for example, if =divisionsX= were set to the value =8= and =divisionsY= were set to the value =2=, then the two pane stacks in the `wipe port` would each have 16 image nodes. Moreover, a 1x16, 2x8, 4x4, 8x2, and 16x1 wipe would all produce a wipe effect using 16 image nodes per `pane stack`.

      Pane
        One image node in a `pane stack` is termed a pane.

        When a wipe is performed, initial crop rect coordinates (termed the `pane seed`) and final crop rect coordinates (termed the `pane final`) are calculated for every pane in the pane stack that is being used to reveal the next image. When a specific pane is being animated, its crop rect coordinates are interpolated between the pane seed coordinates and the pane final coordinates. Additionally, its opacity will be faded from completely transparent to completely opaque over the course of the animation if the =dissolve= state property is set to =true=.

      Wipe Port Matrix
        The wipe port matrix is a matrix of `wipe port matrix cell` coordinates, produced by dividing the `wipe port` into a number of rows and columns, as determined by the =divisionsY= and =divisionsX= state properties, respectively.

        The coordinates of the wipe port matrix are used in determining the coordinates of the `pane seed` and `pane final` for each `pane` of the `pane stack`.

      Wipe Port Matrix Cell
        Each cell in the wipe port matrix is termed a wipe port matrix cell.

        The height of a wipe port matrix cell is influenced by the number of vertical divisions (as specified by the =divisionsY= state property), as well as the value of the =firstPaneSizeY= property. Similarly, the width of a wipe port matrix cell is influenced by the number of horizontal divisions (as specified by the =divisionsX= state property), as well as the value of the =firstPaneSizeX= property.

        The coordinates of each wipe port matrix cell influences the coordinates of the `pane seed` and the `pane final` for each `pane` of the `pane stack`, factoring in the effects of the =paneSeedContext= and =allToFull= state properties.

      Pane Seed
        The `pane seed` is the initial coordinates for a `pane`.

        The pane seed coordinates are calculated by combining the coordinates of the `pane seed context` and the values of the =alignX=, =alignY=, =paneSeedSizeX=, and =paneSeedSizeY= state properties. Specifically, the width of the pane seed is calculated as a percentage of the width of the `pane seed context` (as specified by the =paneSeedSizeX= state property), and the height of the pane seed is calculated as a percentage of the height of the `pane seed context` (as specified by the =paneSeedSizeY= state property).

        Moreover, the pane seed is positioned within the pane seed context using the =alignX= and =alignY= state properties, where these properties are floating point numbers in the range of =0= to =1= and where the value =0= represents left and top alignment, the value =1= represents right and bottom alignment, and the value =.5= represents center alignment.

      Pane Seed Context
        The pane seed context is the coordinates that provide the context for calculating the `pane seed` coordinates.

        Each `pane` is associated with a corresponding `wipe port matrix cell`. The =paneSeedContext= state property lets one specify the `pane seed context` for a pane as a blend between the coordinates of a pane's corresponding wipe port matrix cell and the coordinates of the `wipe port`. When =paneSeedContext= is set to =0=, then the pane seed context will be exactly the coordinates of pane's corresponding wipe port matrix cell. When =paneSeedContext= is set to =100=, then the pane seed context will be exactly the coordinates of the wipe port. And when =paneSeedContext= is set to =50=, then the pane seed context will be calculated as a 50% blend between the coordinates of the pane's corresponding wipe port matrix cell and the coordinates of the wipe port.

      Pane Final
        The `pane final` is the final coordinates for a `pane`.

        The pane final coordinates are calculated by combining the coordinates of a pane's corresponding wipe port matrix cell with the coordinates of the `wipe port` and the value of the =allToFull= state property. Specifically, the width of the pane final is calculated as the blend of the width of a pane's corresponding wipe port matrix cell and the width of the `wipe port`, as specified by the =allToFull= state property. Similarly, the height of the pane final is calculated as the blend of the height of a pane's corresponding wipe port matrix cell and the height of the `wipe port`, as specified by the =allToFull= state property.

        When =allToFull= is set to =0=, then the pane final coordinates will be exactly the coordinates of pane's corresponding wipe port matrix cell. When =allToFull= is set to =100=, then the pane final coordinates will be exactly the coordinates of the wipe port. And when =allToFull= is set to =50=, then the pane final coordinates will be calculated as a 50% blend between the coordinates of the pane's corresponding wipe port matrix cell and the coordinates of the wipe port.

      Value Range Declaration
        The values for certain state properties can be specified with a value range declaration that allows a range of values to be specified, so that each `pane` in a `pane stack` can have a different value along a continous range.

        This facility allows for more sophisticated effects, since it allows for controlled variation in the animations of all the panes that comprise the wipe effect. Some of the more compelling wipe effect presets available in the =Uize.Widget.ImageWipe.xPresets= extension take advantage of this mechanism for some of their settings.

        The syntax for a value range declaration is as follows...

        .......................................................................
        {
          start:startValueNUM,  // the start value
          end:endValueNUM,      // the end value
          keyedTo:keyedToSTR,   // 'row' | 'column' | 'pane' | 'random'
          wraps:wrapsINT,       // optional, default is 1
          wrapMode:wrapModeSTR  // optional, 'triangle' | 'sawtooth' (default)
        }
        .......................................................................

        start
          A number, specifying the start value for the range.

        end
          A number, specifying the end value for the range.

        keyedTo
          A string, specifying what the interpolation between the =start= value and =end= value should be keyed to.

          - the value ='row'= means that the interpolation will be keyed to the row number of the current `pane` for which the value is being calculated, where the interpolated value for panes in the first row will be the specified =start= value, and the interpolated value for panes in the last row will be the specified =end= value. This is useful when specifying a value range for state properties that apply to the Y-axis, such as =alignY= and =paneSeedSizeY=, although there's nothing to say that you couldn't key the interpolation of an X-axis state property to row number.

          - the value ='column'= means that the interpolation will be keyed to the column number of the current `pane` for which the value is being calculated, where the interpolated value for panes in the first column will be the specified =start= value, and the interpolated value for panes in the last column will be the specified =end= value. This is useful when specifying a value range for state properties that apply to the X-axis, such as =alignX= and =paneSeedSizeX=, although there's nothing to say that you couldn't key the interpolation of a Y-axis state property to column number.

          - the value ='pane'= means that the interpolation will be keyed to the pane number of the current `pane` for which the value is being calculated, where the interpolated value for the first pane will be the specified =start= value, and the interpolated value for the last pane will be the specified =end= value. When the value =1= is specified for the =divisionsY= state property (i.e. only one row), then the values ='column'= and ='pane'= for =keyedTo= will have the same effect. Similarly, when the value =1= is specified for the =divisionsX= state property (i.e. only one column), then the values ='row'= and ='pane'= for =keyedTo= will have the same effect.

          - the value ='random'= means that the interpolation will be keyed to a random number, so that the value being calculated for each `pane` will be some random blend between the =start= value and the =end= value. *NOTE:* When using this value, the =wraps= and =wrapMode= properties become pretty much meaningless.

        wraps
          A positive integer, specifying the number of times that the value range should repeat across the series of the panes.

          By default, the value range is not repeated across the series of the panes (or, put another way, there is only one repeat). When a value greater than =1= is specified for this optional property, then the value range will be repeated in either a sawtooth wave pattern or a triangular wave pattern across the series of panes, as determined by the value of the optional =wrapMode= property.

          NOTES
          - The effect of this property's value is defeated by specifying the value ='random'= for the =keyedTo= property.

        wrapMode
          A string, specifying the wrap mode that should be used when a value greater than =1= is specified for the =wraps= property.

          - the default value of ='sawtooth'= means that the value range will be repeated in a sawtooth wave pattern. This means that each time when the =end= value is reached, the interpolated value will wrap back around to the =start= value.

          - the value ='triangle'= means that the value range will be repeated in a triangular wave pattern. This means that each time when the =end= value is reached, the direction of interpolated values will change and head back in the direction of the =start= value. And, each time when the =start= value is reached, the direction of interpolated values will change and head back in the direction of the =end= value. The interpolated value will "bounce" back and forth like this between the =start= value and the =end= value for as many wraps as are specified in the =wraps= property.

          NOTES
          - The effect of this property's value is defeated by specifying the value ='random'= for the =keyedTo= property.
          - The value of this property is not meaningful if the =wraps= property is not specified, or if its value is =1=.

        State properties of this class that support a value range declaration include: =allToFull=, =alignX=, =alignY=, =paneSeedSizeX=, =paneSeedSizeY=, and =paneSeedContext=.
*/

Uize.module ({
  name:'Uize.Widget.ImageWipe',
  required:[
    'Uize.Dom.Basics',
    'Uize.Dom.Pos',
    'Uize.Dom.Util',
    'Uize.Fade',
    'Uize.Array.Order'
  ],
  builder:function (_superclass) {
    'use strict';

    var
      /*** Variables for Scruncher Optimization ***/
        _Uize_Dom_Basics = Uize.Dom.Basics,
        _blendValues = Uize.blendValues
    ;

    return _superclass.subclass ({
      alphastructor:function (_properties) {
        var m = this;

        /*** Private Instance Properties ***/
          m._panes = [];
          m._imageDims = [0,0];
          m._currentItemNo = 0;
          m._imagesLoaded = [];

        /*** Public Instance Properties ***/
          m.fade = Uize.Fade ();
          /*?
            Instance Properties
              fade
                An instance of the =Uize.Fade= class that drives the animation for the image wipe effect.

                This property allows access to the fade instance that drives the wipe animation. This allows us to modify properties of the animation, such as the =curve= and any of the other state properties supported by the =Uize.Fade= class.
          */

        m.fade.wire (
          'Changed.value',
          function () {
            for (
              var
                _paneNo = -1,
                _panes = m._panes,
                _panesLength = _panes.length,
                _paneNodes = m._paneNodes,
                _paneProgressDelay = m._paneProgressDelay,
                _progress = m.fade * (100 + (_panesLength - 1) * _paneProgressDelay)
              ;
              ++_paneNo < _panesLength;
            ) {
              var
                _pane = _panes [_paneNo],
                _paneInitCoords = _pane._initCoords,
                _paneFinalCoords = _pane._finalCoords,
                _paneCoords = _pane._coords,
                _paneProgressFraction =
                  Uize.constrain (_progress - _paneNo * _paneProgressDelay,0,100) / 100,
                _paneCoordsChanged
              ;
              for (var _coordPoint = -1, _newPaneCoord; ++_coordPoint < 4;) {
                if (
                  (_newPaneCoord =
                    Math.round (_paneInitCoords [_coordPoint] + (_paneFinalCoords [_coordPoint] - _paneInitCoords [_coordPoint]) * _paneProgressFraction)
                  ) !== _paneCoords [_coordPoint]
                ) {
                  _paneCoords [_coordPoint] = _newPaneCoord;
                  _paneCoordsChanged = true;
                }
              }
              var _paneNode = _paneNodes [_paneNo];
              _paneCoordsChanged &&
                _Uize_Dom_Basics.setClipRect (
                  _paneNode,
                  _paneCoords [1],_paneCoords [2],_paneCoords [3],_paneCoords [0]
                )
              ;
              var _opacity = m._dissolve ? _paneProgressFraction : 1;
              _opacity !== _pane._opacity &&
                _Uize_Dom_Basics.setOpacity (_paneNode,_pane._opacity = _opacity)
              ;
            }
          }
        );
      },

      instanceMethods:{
        prepareForNextItem:function (_currentItem,_nextItem) {
          var _currentItemPaneNodes = this._paneNodes;
          if (_currentItemPaneNodes) {
            /* NOTE:
              for better performance (especially in IE, it seems), make sure there is only one pane node for displaying the current item underneath the pane nodes for the next item
            */
            _Uize_Dom_Basics.display (_currentItemPaneNodes,false);
            _Uize_Dom_Basics.display (_currentItemPaneNodes [0]);
            _Uize_Dom_Basics.setStyle (_currentItemPaneNodes [0],{clip:'rect(auto, auto, auto, auto)',opacity:1});
          }
          _Uize_Dom_Basics.display (this._paneNodes = _nextItem.getElementsByTagName ('IMG'));
        },

        setCurrentItem:function (_currentItem) {
          var
            m = this,
            _divisionsX = m._divisionsX,
            _divisionsY = m._divisionsY,
            _imageDims = m._imageDims
          ;
          m._previousItem = m._currentItem;
          m._currentItem = _currentItem;

          /*** calculate sizes for rows and columns ***/
            var
              _paneW = [],
              _paneH = []
            ;
            function _sigma (_n) {return _n * (_n + 1) / 2}
            var
              _currentPaneSizeX = (_imageDims [0] / _divisionsX) * m._firstPaneSizeX / 100,
              _paneSizeIncrementX = (_imageDims [0] - _currentPaneSizeX * _divisionsX) / _sigma (_divisionsX - 1)
            ;
            for (var _xDivisionNo = -1; ++_xDivisionNo < _divisionsX;) {
              _paneW [_xDivisionNo] = _currentPaneSizeX;
              _currentPaneSizeX += _paneSizeIncrementX;
            }
            var
              _currentPaneSizeY = (_imageDims [1] / _divisionsY) * m._firstPaneSizeY / 100,
              _paneSizeIncrementY = (_imageDims [1] - _currentPaneSizeY * _divisionsY) / _sigma (_divisionsY - 1)
            ;
            for (var _yDivisionNo = -1; ++_yDivisionNo < _divisionsY;) {
              _paneH [_yDivisionNo] = _currentPaneSizeY;
              _currentPaneSizeY += _paneSizeIncrementY;
            }

          /*** generate pane coordinates ***/
            function _getInterpolatedValue (_valueSpec) {
              var _result;
              if (typeof _valueSpec == 'number') {
                _result = _valueSpec;
              } else if (typeof _valueSpec == 'object') {
                var _keyIndex, _keyContext;
                if (_valueSpec.keyedTo == 'column') {
                  _keyIndex = _xDivisionNo;
                  _keyContext = _divisionsX - 1;
                } else if (_valueSpec.keyedTo == 'row') {
                  _keyIndex = _yDivisionNo;
                  _keyContext = _divisionsY - 1;
                } else if (_valueSpec.keyedTo == 'pane') {
                  _keyIndex = _divisionNo;
                  _keyContext = _divisionsX * _divisionsY - 1;
                } else if (_valueSpec.keyedTo == 'random') {
                  _keyIndex = Math.random ();
                  _keyContext = 1;
                }
                if (_valueSpec.inverse === true)
                  _keyIndex = _keyContext - _keyIndex
                ;
                if (typeof _valueSpec.wraps == 'number')
                  _keyIndex =
                    (
                      _valueSpec.wrapMode === 'triangle' &&
                      Math.floor (_keyIndex * _valueSpec.wraps / (_keyContext + 1)) % 2 == 1
                        ? (_keyContext - _keyIndex)
                        : _keyIndex
                    ) * _valueSpec.wraps % (_keyContext + 1)
                ;
                _result = _valueSpec.start + (_valueSpec.end - _valueSpec.start) * _keyIndex / Math.max (_keyContext,1);
              }
              return _result;
            }
            var
              _top = m._panes.length = 0,
              _divisionNo,
              _currentAlignX, _currentAlignY,
              _currentAllToFull,
              _currentPaneSeedSizeX, _currentPaneSeedSizeY, _currentPaneSeedContext
            ;
            for (var _yDivisionNo = -1; ++_yDivisionNo < _divisionsY;) {
              var _left = 0;
              for (var _xDivisionNo = -1; ++_xDivisionNo < _divisionsX;) {
                _divisionNo = _yDivisionNo * _divisionsX + _xDivisionNo;
                _currentAlignX = _getInterpolatedValue (m._alignX);
                _currentAlignY = _getInterpolatedValue (m._alignY);
                _currentPaneSeedSizeX = _getInterpolatedValue (m._paneSeedSizeX);
                _currentPaneSeedSizeY = _getInterpolatedValue (m._paneSeedSizeY);
                _currentPaneSeedContext = _getInterpolatedValue (m._paneSeedContext);
                _currentAllToFull = _getInterpolatedValue (m._allToFull);
                var
                  _right = _left + _paneW [_xDivisionNo],
                  _bottom = _top + _paneH [_yDivisionNo],
                  _paneSeedContextL = _blendValues (_left,0,_currentPaneSeedContext / 100),
                  _paneSeedContextT = _blendValues (_top,0,_currentPaneSeedContext / 100),
                  _paneSeedContextR = _blendValues (_right,_imageDims [0],_currentPaneSeedContext / 100),
                  _paneSeedContextB = _blendValues (_bottom,_imageDims [1],_currentPaneSeedContext / 100),
                  _seedW = (_paneSeedContextR - _paneSeedContextL) * _currentPaneSeedSizeX / 100,
                  _seedH = (_paneSeedContextB - _paneSeedContextT) * _currentPaneSeedSizeY / 100,
                  _seedLeft = _paneSeedContextL + (_paneSeedContextR - _paneSeedContextL - _seedW) * _currentAlignX,
                  _seedRight = _seedLeft + _seedW,
                  _seedTop = _paneSeedContextT + (_paneSeedContextB - _paneSeedContextT - _seedH) * _currentAlignY,
                  _seedBottom = _seedTop + _seedH,
                  _initCoords = [_seedLeft,_seedTop,_seedRight,_seedBottom],
                  _finalCoords = [
                    _blendValues (_left,0,_currentAllToFull / 100),
                    _blendValues (_top,0,_currentAllToFull / 100),
                    _blendValues (_right,_imageDims [0],_currentAllToFull / 100),
                    _blendValues (_bottom,_imageDims [1],_currentAllToFull / 100)
                  ]
                ;
                m._panes [_divisionNo] = {
                  _coords:[],
                  _initCoords:[
                    _initCoords [0],_initCoords [1],
                    _initCoords [2],_initCoords [3]
                  ],
                  _finalCoords:[
                    _finalCoords [0],_finalCoords [1],
                    _finalCoords [2],_finalCoords [3]
                  ]
                };
                _left += _paneW [_xDivisionNo];
              }
              _top += _paneH [_yDivisionNo];
            }

          /*** carry out pane order scheme ***/
            Uize.Array.Order.reorder (m._panes,m._paneOrderScheme,false);

          /*** configure Uize.Fade object and start fade ***/
            m.fade.start ({startValue:0,endValue:1});
        },

        wireUi:function () {
          this.setNodeStyle ('',{overflow:'hidden'});
          _superclass.doMy (this,'wireUi');
        }
      },

      stateProperties:{
        _alignX:{
          name:'alignX',
          value:{start:1,end:0,keyedTo:'column'}
          /*?
            State Properties
              alignX
                A number in the range of =0= to =1=, specifying the horizontal alignment of each `pane seed`.

                A value of =0= specifies that a pane seed should be aligned to the left of its `pane seed context`, a value of =1= specifies that a pane seed should be right aligned, and a value of =.5= specifies that a pane seed should be center aligned.

                NOTES
                - the value for this property may also be a `value range declaration`
                - if the value of the =paneSeedSizeX= state property is =100=, then the =alignX= property will have no effect
                - see the companion =alignY= state property
                - the initial value is ={start:1,end:0,keyedTo:'column'}=
          */
        },
        _alignY:{
          name:'alignY',
          value:.5
          /*?
            State Properties
              alignY
                A number in the range of =0= to =1=, specifying the vertical alignment of each `pane seed`.

                A value of =0= specifies that a pane seed should be aligned to the top of its `pane seed context`, a value of =1= specifies that a pane seed should be bottom aligned, and a value of =.5= specifies that a pane seed should be center aligned.

                NOTES
                - the value for this property may also be a `value range declaration`
                - if the value of the =paneSeedSizeY= state property is =100=, then the =alignY= property will have no effect
                - see the companion =alignX= state property
                - the initial value is =.5=
          */
        },
        _allToFull:{
          name:'allToFull',
          value:0
          /*?
            State Properties
              allToFull
                A number in the range of =0= to =100=, representing the balance between the `pane seed context` coordinates and the `wipe port` coordinates that should be used when calculating the `pane final` coordinates for each `pane`.

                A value of =0= means that the pane final coordinates for a pane will be the pane seed context coordinates, a value of =100= means that the pane final coordinates will be the wipe port coordinates, and a value of =50= will create pane final coordinates that are a blend of 50% the pane seed context coordinates and 50% the wipe port coordinates.

                NOTES
                - the value for this property may also be a `value range declaration`
                - the initial value is =0=
          */
        },
        _background:'background',
        /*?
          State Properties
            background
              A string, specifying an optional background style that should be used for each `pane`.

              NOTES
              - the initial value is =undefined=
        */
        _dissolve:{
          name:'dissolve',
          value:false
          /*?
            State Properties
              dissolve
                A boolean, specifying whether or not each `pane` should fade in opacity - from being completely transparent to being completely opaque - during the course of its animation.

                When the value =false= is specified for this property, only the crop rect coordinates of a `pane` will be updated during its animation, but when the value =true= is specified it will be faded in as well. The latter setting allows for more sophisticated effects, although there is likely to be a cost in performance and the wipe may not appear as smooth - depending on the browser and the speed of the system it is running on.

                NOTES
                - the initial value is =false=
          */
        },
        _divisionsX:{
          name:'divisionsX',
          value:16
          /*?
            State Properties
              divisionsX
                A positive integer, specifying the number of horizontal divisions in the `wipe port matrix`.

                NOTES
                - see the companion =divisionsY= state property
                - the initial value is =16=
          */
        },
        _divisionsY:{
          name:'divisionsY',
          value:1
          /*?
            State Properties
              divisionsY
                A positive integer, specifying the number of vertical divisions in the `wipe port matrix`.

                NOTES
                - see the companion =divisionsX= state property
                - the initial value is =16=
          */
        },
        _duration:{
          name:'duration',
          onChange:function () {this.fade.set ({duration:this._duration})},
          value:3000
          /*?
            State Properties
              duration
                A positive integer, specifying the duration (in milliseconds) for the wipe effect.

                NOTES
                - the initial value is =3000=
          */
        },
        _firstPaneSizeX:{
          name:'firstPaneSizeX',
          value:100
          /*?
            State Properties
              firstPaneSizeX
                A number in the range of =0= to =100=, specifying the width of the first `wipe port matrix` column as a percentage of the normal column width.

                Normal column width is defined as the width of the `wipe port` divided by the number of columns (as specified by the =divisionsX= state property). If the first wipe port matrix column width is smaller or greater than the normal column width, then the difference will be distributed amongst the remaining columns to compenstate - according to a sigma series distribution. This allows us to bias the widths towards the first column or towards the last column.

                For example, specifying a value of =10= for the =firstPaneSizeX= state property means that the missing 90% of the normal column width for the first wipe port matrix column must be distributed across the remaining columns. In order for this distribution to look natural, the width would grow gradually from left to right. Consider the following representations...

                EVEN COLUMN WIDTH
                ..............................................................................
                |  6   |  6   |  6   |  6   |  6   |  6   |  6   |  6   |  6   |  6   |  6   |
                ..............................................................................

                This representation depicts a `wipe port` with a width of 66 and with 11 horizontal divisions (i.e. =divisionsX= is set to =6=), so the normal width for each wipe port matrix column would be 6 (i.e. 66 / 11).

                To achieve the above distribution, =firstPaneSizeX= would be set to =100= (i.e. 6 / 6), since the width of the first wipe port matrix column is 100% of the normal column width.

                SIGMA DISTRIBUTION
                ..............................................................................
                |1|2 | 3 | 4  |  5  |  6   |   7   |   8    |    9    |    10    |     11    |
                ..............................................................................

                To achieve the above distribution, =firstPaneSizeX= would be set to =16.666= (i.e. 1 / 6), since the width of the first wipe port matrix column is 16.666% of the normal column width.

                ANOTHER SIGMA DISTRIBUTION
                ..............................................................................
                |     11    |    10    |    9    |   8    |   7   |  6   |  5  | 4  | 3 |2 |1|
                ..............................................................................

                To achieve the above distribution, =firstPaneSizeX= would be set to =183.333= (i.e. 11 / 6), since the width of the first wipe port matrix column is 183.333% of the normal column width.

                NOTES
                - see the companion =firstPaneSizeY= state property
                - the initial value is =100=
          */
        },
        _firstPaneSizeY:{
          name:'firstPaneSizeY',
          value:100
          /*?
            State Properties
              firstPaneSizeY
                A number in the range of =0= to =100=, specifying the height of the first `wipe port matrix` row as a percentage of the normal row height.

                Normal row height is defined as the height of the `wipe port` divided by the number of rows (as specified by the =divisionsY= state property). If the first wipe port matrix row height is smaller or greater than the normal row height, then the difference will be distributed amongst the remaining rows to compenstate - according to a sigma series distribution. This allows us to bias the heights towards the first row or towards the last row.

                For a more in-depth explanation, and for some illustrations, consult the reference for the =firstPaneSizeX= state property, since the =firstPaneSizeY= property behaves in exactly the same way as the =firstPaneSizeX= property, excepting that it applies to the Y-axis rather than the X-axis.

                NOTES
                - see the companion =firstPaneSizeX= state property
                - the initial value is =100=
          */
        },
        _paneOrderScheme:{
          name:'paneOrderScheme',
          value:'inside out'
          /*?
            State Properties
              paneOrderScheme
                A string, specifying an ordering scheme for the panes that comprise the wipe effect.

                When a non-zero value is specified for the =paneProgressDelay= state property, then the value of the =paneOrderScheme= state property will determine the order in which the animation of the panes is started, making a wide array of interesting effects possible.

                The value for this property can be any of the values supported for the =reorderingModeSTR= parameter of the =Uize.Array.Order.reorder= static method, including ='normal'=, ='reverse'=, ='jumbled'=, ='inside out'=, and ='outside in'=.

                NOTES
                - when the =paneProgressDelay= state property is set to =0=, then the =paneOrderScheme= property will have no noticeable effect
                - the initial value is ='inside out'=
          */
        },
        _paneProgressDelay:{
          name:'paneProgressDelay',
          value:10
          /*?
            State Properties
              paneProgressDelay
                A number in the range of =0= to =100=, representing the percentage of the animation of a pane that should be complete before the animation of the next pane is started.

                When the value =0= is specified, the animation for all panes will be started at the same time. When the value =100= is specified, the animation for the next pane will only be started when the animation of the current pane is entirely complete. And when the value =50= is specified, then the animation of the next pane will be started when the animation of the current pane is 50% complete.

                Regardless of the value of this property, the entire wipe effect will always take the same amount of time (as specified by the =duration= state property). This means that as you increase the value of this property, the animation time per pane will be decreased. At a value of =0=, all panes will take the entire duration of the wipe to animate. And, at a value of =100=, the animation time for each pane will be the entire duration of the wipe divided by the total number of panes.

                When this property is set to the value =0=, then the =paneOrderScheme= state property will have no noticeable effect. Conversely, when this property is set to a non-zero value, then the value of the =paneOrderScheme= property will determine the order in which the panes are animated.

                NOTES
                - the initial value is =10=
          */
        },
        _paneSeedContext:{
          name:'paneSeedContext',
          value:0
          /*?
            State Properties
              paneSeedContext
                A number in the range of =0= to =100=, representing the balance between the `wipe port matrix cell` coordinates and the `wipe port` coordinates that should be used when calculating the `pane seed context` coordinates for each `pane`.

                A value of =0= means that the `pane seed context` for calculating a pane's coordinates will be the `wipe port matrix cell`, a value of =100= means that the context will be the `wipe port`, and a value of =50= will produce a context whose coordinates are a blend of 50% the `wipe port matrix cell` coordinates and 50% the `wipe port` coordinates.

                NOTES
                - the value for this property may also be a `value range declaration`
                - the initial value is =0=
          */
        },
        _paneSeedSizeX:{
          name:'paneSeedSizeX',
          value:0
          /*?
            State Properties
              paneSeedSizeX
                A number in the range of =0= to =100=, specifying the width for the `pane seed` as a percentage of the width of the `pane seed context`.

                A value of =0= means that the pane seed's width will be =0=, a value of =100= means that its width will be the full width of the `pane seed context`, and a value of =50= means that its width will be 50% of the width of the `pane seed context`.

                NOTES
                - the value for this property may also be a `value range declaration`
                - see the companion =paneSeedSizeY= state property
                - the initial value is =0=
          */
        },
        _paneSeedSizeY:{
          name:'paneSeedSizeY',
          value:100
          /*?
            State Properties
              paneSeedSizeY
                A number in the range of =0= to =100=, specifying the height for the `pane seed` as a percentage of the height of the `pane seed context`.

                A value of =0= means that the pane seed's height will be =0=, a value of =100= means that its height will be the full height of the `pane seed context`, and a value of =50= means that its height will be 50% of the height of the `pane seed context`.

                NOTES
                - the value for this property may also be a `value range declaration`
                - see the companion =paneSeedSizeX= state property
                - the initial value is =100=
          */
        },
        _src:{
          name:'src|value',
          onChange:function () {
            var m = this;
            if (m.isWired) {
              if (m.fade.get ('inProgress')) {
                m.fade.set ({value:1});
                /* NOTE: make sure this is the best way to handle this */
                m.fade.stop ();
              }
              var
                _currentItem = m.getNode ('item' + m._currentItemNo),
                _nextItemNo = 1 - m._currentItemNo,
                _nextItem = m.getNode ('item' + _nextItemNo)
              ;
              m.prepareForNextItem (_currentItem,_nextItem);
              var
                _paneNodes = m._paneNodes,
                _loadNextImage = function () {
                  var
                    _image = m._imagesLoaded [m._src],
                    _paneNodesLength = _paneNodes.length,
                    _src = m._src,
                    _totalLoaded = 0
                  ;
                  function _nextImageLoaded () {
                    /*** update the img node ("this" is a reference to the img node firing the event) ***/
                      this.Uize_Widget_ImageWipe_src = _src;
                      m.unwireNode (this);

                    if (++_totalLoaded == _paneNodesLength) {
                      _currentItem.style.zIndex = '0';
                      _nextItem.style.zIndex = '1';
                      m._currentItemNo = _nextItemNo;
                      m.setCurrentItem (_nextItem);
                    }
                  }
                  for (var _paneNodeNo = -1; ++_paneNodeNo < _paneNodesLength;) {
                    var _paneNode = _paneNodes [_paneNodeNo];
                    if (_paneNode.Uize_Widget_ImageWipe_src === _src) {
                      /* NOTE:
                        In IE 5.2 and Safari 1.3- on Mac OS X, the load event for an IMG node is not fired when that node's src is set again to its current value. So, when switching back and forth between two image URLs, the load event cannot be relied upon for triggering the reveal, since we're toggling between two IMG nodes and sometimes an IMG node used to display an image will already have loaded that image from a previous toggle.
                      */
                      _nextImageLoaded ();
                    } else {
                      m.wireNode (
                        _paneNode,
                        {
                          load:_nextImageLoaded,
                          error:_nextImageLoaded,
                          abort:_nextImageLoaded
                        }
                      );
                      _paneNode.src = _src;
                    }
                  }
                }
              ;
              if (m._imagesLoaded [m._src]) {
                _loadNextImage ();
              } else {
                var _imageLoader = new Image;
                /* NOTE:
                  We can't use the Uize.Dom.Basics.wire method here because Safari doesn't implement instances of the Image object as real IMG DOM nodes, and Uize.Dom.Basics.wire has no effect.
                */
                _imageLoader.onload = _imageLoader.onerror = _imageLoader.onabort =
                  function () {
                    _imageLoader = null;
                    m._imagesLoaded [m._src] = {
                      _width:m._width || this.width,
                      _height:m._height || this.height
                    };
                    _loadNextImage ();
                  }
                ;
                _imageLoader.src = m._src;
              }
            }
          }
          /*?
            State Properties
              src
                A string, representing the URL of the current image.

                After setting this property to a new value, the new image will first be loaded in each `pane` of the `pane stack` used for revealing the next image. Once it has been loaded, the wipe effect will be initiated to reveal the new image.

                NOTES
                - this property can also be accessed through the alias =value=
                - the initial value is =undefined=

              value
                An alias to the =src= state property, establishing the =src= property as the public value interface for this class.
          */
        }
      },

      set:{
        html:{
          process:function (input) {
            var
              m = this,
              _shellNode = m.getNode (),
              _shellSize = Uize.Dom.Pos.getDimensions (_shellNode),
              _background = input.background || Uize.Dom.Util.getEffectiveBgColor (_shellNode),
              _htmlChunks = []
            ;
            m._imageDims = [_shellSize.width,_shellSize.height];
            for (var _itemNo = -1; ++_itemNo < 2;) {
              _htmlChunks.push (
                '
' ); for (var _paneNo = -1; ++_paneNo < input.divisionsX * input.divisionsY;) _htmlChunks.push ('') ; _htmlChunks.push ('
'); } return _htmlChunks.join (''); } } } }); } });