mediawiki-extensions-Visual.../modules/ve/ui/tools/ve.ui.HistoryButtonTool.js

64 lines
1.3 KiB
JavaScript
Raw Normal View History

2011-12-05 21:10:19 +00:00
/**
* Creates an ve.ui.HistoryButtonTool object.
*
2011-12-05 21:10:19 +00:00
* @class
* @constructor
* @extends {ve.ui.ButtonTool}
* @param {ve.ui.Toolbar} toolbar
2011-12-05 21:10:19 +00:00
* @param {String} name
*/
ve.ui.HistoryButtonTool = function( toolbar, name, title, data ) {
2011-12-05 21:10:19 +00:00
// Inheritance
ve.ui.ButtonTool.call( this, toolbar, name, title );
2011-12-05 21:10:19 +00:00
// Properties
2011-12-04 02:59:53 +00:00
this.data = data;
this.enabled = false;
2011-12-04 02:59:53 +00:00
};
2011-12-05 21:10:19 +00:00
/* Methods */
ve.ui.HistoryButtonTool.prototype.onClick = function() {
2011-12-04 02:59:53 +00:00
switch ( this.name ) {
case 'undo':
this.toolbar.surfaceView.model.undo( 1 );
break;
case 'redo':
this.toolbar.surfaceView.model.redo( 1 );
break;
}
};
ve.ui.HistoryButtonTool.prototype.updateState = function( annotations ) {
var surfaceModel = this.toolbar.surfaceView.model;
switch( this.name ) {
case 'undo':
this.enabled = surfaceModel.bigStack.length - surfaceModel.undoIndex > 0;
break;
case 'redo':
this.enabled = surfaceModel.undoIndex > 0;
break;
}
this.updateEnabled();
};
2011-12-04 02:59:53 +00:00
2011-12-05 21:10:19 +00:00
/* Registration */
ve.ui.Tool.tools.undo = {
'constructor': ve.ui.HistoryButtonTool,
'name': 'undo',
'title': 'Undo (ctrl/cmd + Z)'
2011-12-04 02:59:53 +00:00
};
ve.ui.Tool.tools.redo = {
'constructor': ve.ui.HistoryButtonTool,
'name': 'redo',
'title': 'Redo (ctrl/cmd + shift + Z)'
2011-12-04 02:59:53 +00:00
};
2011-12-05 21:10:19 +00:00
/* Inhertiance */
2011-12-04 02:59:53 +00:00
ve.extendClass( ve.ui.HistoryButtonTool, ve.ui.ButtonTool );