mediawiki-extensions-Visual.../modules/ve2/dm/ve.dm.Surface.js
Trevor Parscal 1d74945dfc Fixes for Roan's crazy half-baked commit
Change-Id: Ic104debc3a941e4cf8e4dca19633dcad04a0fe0a
2012-05-04 16:13:54 -07:00

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 );