2013-10-04 17:51:44 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface SurfaceInspector class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserInterface surface inspector.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @abstract
|
2013-10-09 20:09:59 +00:00
|
|
|
* @extends OO.ui.Inspector
|
2013-10-04 17:51:44 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2013-10-09 19:59:03 +00:00
|
|
|
* @param {ve.ui.SurfaceWindowSet} windowSet Window set this inspector is part of
|
2013-10-04 17:51:44 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.SurfaceInspector = function VeUiSurfaceInspector( windowSet, config ) {
|
|
|
|
// Parent constructor
|
2013-10-09 20:09:59 +00:00
|
|
|
OO.ui.Inspector.call( this, windowSet, config );
|
2013-10-04 17:51:44 +00:00
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.surface = windowSet.getSurface();
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-09 20:09:59 +00:00
|
|
|
OO.inheritClass( ve.ui.SurfaceInspector, OO.ui.Inspector );
|
2013-10-04 17:51:44 +00:00
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle inspector setup events.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ui.SurfaceInspector.prototype.onSetup = function () {
|
|
|
|
this.previousSelection = this.surface.getModel().getSelection();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle inspector open events.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
|
|
|
ve.ui.SurfaceInspector.prototype.onOpen = function () {
|
|
|
|
this.initialSelection = this.surface.getModel().getSelection();
|
|
|
|
};
|