mediawiki-extensions-Visual.../modules/ve/ce/ve.ce.RangyRange.js
Inez Korczyński a5e56718cd Introduction of ve.ce.RangyRange class.
Change-Id: I44bcb79a5967c362774603ea27181b9c64d2ea96
2013-02-22 17:02:42 -08:00

48 lines
1.3 KiB
JavaScript

/*!
* VisualEditor RangyRange class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* RangyRange.
*
* @class
* @constructor
* @param {DOMElement} focusNode Selection focus node
* @param {number} focusOffset Selection focus offset
* @param {DOMElement} anchorNode Selection anchor node
* @param {number} anchorOffset Selection anchor offset
*/
ve.ce.RangyRange = function VeCeRangyRange( focusNode, focusOffset, anchorNode, anchorOffset ) {
this.focusNode = focusNode;
this.focusOffset = focusOffset;
this.anchorNode = anchorNode;
this.anchorOffset = anchorOffset;
};
/* Static Methods */
ve.ce.RangyRange.newFromRangySelection = function ( selection ) {
return new ve.ce.RangyRange(
selection.focusNode, selection.focusOffset, selection.anchorNode, selection.anchorOffset
);
};
/* Methods */
ve.ce.RangyRange.prototype.equals = function ( other ) {
return other &&
this.focusNode === other.focusNode &&
this.focusOffset === other.focusOffset &&
this.anchorNode === other.anchorNode &&
this.anchorOffset === other.anchorOffset;
};
ve.ce.RangyRange.prototype.getRange = function () {
return new ve.Range(
ve.ce.getOffset( this.anchorNode, this.anchorOffset ),
ve.ce.getOffset( this.focusNode, this.focusOffset )
);
};