Searched defs:ImageEditor (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_editor.js8 * ImageEditor is the top level object that holds together and connects
13 * @param {ImageEditor.Prompt} prompt Prompt instance.
15 * @param {Array.<ImageEditor.Mode>} modes Available editor modes.
21 function ImageEditor( class
42 this.panControl_ = new ImageEditor.MouseControl(
46 this.mainToolbar_ = new ImageEditor.Toolbar(
49 this.modeToolbar_ = new ImageEditor.Toolbar(
63 ImageEditor.prototype.isLocked = function() {
70 ImageEditor.prototype.isBusy = function() {
78 ImageEditor
[all...]
H A Dimage_adjust.js11 * @extends {ImageEditor.Mode}
13 ImageEditor.Mode.Adjust = function() {
14 ImageEditor.Mode.apply(this, arguments);
20 ImageEditor.Mode.Adjust.prototype = {__proto__: ImageEditor.Mode.prototype};
23 ImageEditor.Mode.Adjust.prototype.getCommand = function() {
30 ImageEditor.Mode.Adjust.prototype.cleanUpUI = function() {
31 ImageEditor.Mode.prototype.cleanUpUI.apply(this, arguments);
38 ImageEditor.Mode.Adjust.prototype.hidePreview = function() {
48 ImageEditor
[all...]
H A Dimage_transform.js10 * @extends {ImageEditor.Mode}
13 ImageEditor.Mode.Crop = function() {
14 ImageEditor.Mode.call(this, 'crop', 'GALLERY_CROP');
17 ImageEditor.Mode.Crop.prototype = {__proto__: ImageEditor.Mode.prototype};
23 ImageEditor.Mode.Crop.prototype.setUp = function() {
24 ImageEditor.Mode.prototype.setUp.apply(this, arguments);
84 ImageEditor.Mode.Crop.prototype.createTools = function(toolbar) {
125 ImageEditor.Mode.Crop.prototype.onResized_ = function() {
132 ImageEditor
[all...]

Completed in 111 milliseconds