mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
f436292174
(merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41894 467b73ca-7a2a-4603-9d3b-597d59a354a9
98 lines
3.2 KiB
JavaScript
98 lines
3.2 KiB
JavaScript
/**
|
|
* @author Mateusz
|
|
*/
|
|
ImageHistory = {
|
|
|
|
initialize: function() {
|
|
this.history = new Array();
|
|
this.historyPointer = -1;
|
|
this.modifiedOriginalImage = false;
|
|
this.undo = ImageHistory.undo.bind(this);
|
|
this.redo = ImageHistory.redo.bind(this);
|
|
this.add = ImageHistory.add.bind(this);
|
|
this.addLinsteners = ImageHistory.addLinsteners.bind(this);
|
|
this.addLinsteners();
|
|
this.operationMade = ImageHistory.operationMade.bind(this);
|
|
this.onFakeImageLoad = ImageHistory.onFakeImageLoad.bind(this);
|
|
this.enable = ImageHistory.enable.bind(this);
|
|
this.disable = ImageHistory.disable.bind(this);
|
|
this.clear = ImageHistory.clear.bind(this);
|
|
},
|
|
|
|
undo: function() {
|
|
if(this.historyPointer >= 1) {
|
|
image = $('image');
|
|
fakeImage = $('fakeImg');
|
|
operation = this.history[this.historyPointer].operation;
|
|
if(operation == 'rotate' || operation == 'crop') {
|
|
if(this.operationMade(this.historyPointer-1,'rotate') || this.operationMade(this.historyPointer-1,'crop'))
|
|
this.modifiedOriginalImage = true; else this.modifiedOriginalImage = false;
|
|
}
|
|
image.src = this.history[this.historyPointer-1].fileUrl;
|
|
fakeImage.src = this.history[this.historyPointer-1].fileUrl;
|
|
Event.observe('fakeImg','load',this.onFakeImageLoad);
|
|
this.historyPointer--;
|
|
} else {
|
|
alert("No more undo");
|
|
}
|
|
},
|
|
|
|
redo: function() {
|
|
if(this.historyPointer < this.history.length-1) {
|
|
operation = this.history[this.historyPointer+1].operation;
|
|
if(operation == 'rotate' || operation == 'crop') this.modifiedOriginalImage = true;
|
|
$('image').src = this.history[this.historyPointer+1].fileUrl;
|
|
$('fakeImg').src = $('image').src;
|
|
Event.observe('fakeImg','load',this.onFakeImageLoad);
|
|
this.historyPointer++;
|
|
} else {
|
|
alert("No more redo");
|
|
}
|
|
},
|
|
|
|
add: function(operation,url) {
|
|
this.historyPointer++;
|
|
this.history[this.historyPointer] = {'operation': operation,'fileUrl' : url};
|
|
if(operation == 'rotate' || operation == 'crop') this.modifiedOriginalImage = true;
|
|
},
|
|
|
|
addLinsteners: function() {
|
|
this.undoListener = Event.observe('undoButton','click',this.undo);
|
|
this.redoListener = Event.observe('redoButton','click',this.redo);
|
|
},
|
|
|
|
operationMade: function(historyPointer,operation) {
|
|
for(i=historyPointer;i>=0;i--) {
|
|
if(this.history[i].operation == operation) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
|
|
onFakeImageLoad: function() {
|
|
imageBox.checkOutOfDrawingArea(fakeImage.width,fakeImage.height);
|
|
$('image').style.width = fakeImage.width + 'px';
|
|
$('image').style.height = fakeImage.height + 'px';
|
|
$('imageContainer').style.width = fakeImage.width + 'px';
|
|
$('imageContainer').style.height = fakeImage.height + 'px';
|
|
resize.imageContainerResize.originalWidth = fakeImage.width;
|
|
resize.imageContainerResize.originalHeight = fakeImage.height;
|
|
resize.imageContainerResize.placeClickBox();
|
|
imageToResize.onImageLoad();
|
|
},
|
|
|
|
enable: function() {
|
|
this.addLinsteners();
|
|
},
|
|
|
|
disable: function() {
|
|
Event.stopObserving($('undoButton'),'click', this.undo);
|
|
Event.stopObserving($('redoButton'),'click', this.redo);
|
|
},
|
|
|
|
clear: function() {
|
|
this.history = new Array();
|
|
this.historyPointer = -1;
|
|
}
|
|
}; |