mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
1d74945dfc
Change-Id: Ic104debc3a941e4cf8e4dca19633dcad04a0fe0a
70 lines
1.4 KiB
JavaScript
70 lines
1.4 KiB
JavaScript
/**
|
|
* DataModel surface.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.EventEmitter}
|
|
* @param {ve.dm.Document} doc Document model to create surface for
|
|
*/
|
|
ve.dm.Surface = function( doc ) {
|
|
// Inheritance
|
|
ve.EventEmitter.call( this );
|
|
// Properties
|
|
this.documentModel = doc;
|
|
this.selection = null;
|
|
};
|
|
|
|
/**
|
|
* Gets the document model of the surface.
|
|
*
|
|
* @method
|
|
* @returns {ve.dm.DocumentNode} Document model of the surface
|
|
*/
|
|
ve.dm.Surface.prototype.getDocument = function() {
|
|
return this.documentModel;
|
|
};
|
|
|
|
/**
|
|
* Gets the selection
|
|
*
|
|
* @method
|
|
* @returns {ve.Range} Current selection
|
|
*/
|
|
ve.dm.Surface.prototype.getSelection = function() {
|
|
return this.selection;
|
|
};
|
|
|
|
/**
|
|
* Sets the selection
|
|
*
|
|
* @method
|
|
* @param {ve.Range} selection
|
|
*/
|
|
ve.dm.Surface.prototype.setSelection = function( selection ) {
|
|
selection.normalize();
|
|
|
|
if (
|
|
( !this.selection ) ||
|
|
( !this.selection.equals ( selection ) )
|
|
)
|
|
{
|
|
this.selection = selection;
|
|
this.emit ('select', this.selection.clone() );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Applies a series of transactions to the content data.
|
|
*
|
|
* @method
|
|
* @param {ve.dm.Transaction} transactions Tranasction to apply to the document
|
|
*/
|
|
ve.dm.Surface.prototype.transact = function( transaction ) {
|
|
ve.dm.TransactionProcessor.commit( this.documentModel, transaction );
|
|
this.emit( 'transact', transaction );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.dm.Surface, ve.EventEmitter );
|