Lines Matching defs:Mode

11  * @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.Mode.Adjust.prototype.cleanUpCaches = function() {
56 ImageEditor.Mode.Adjust.prototype.reset = function() {
57 ImageEditor.Mode.prototype.reset.call(this);
66 ImageEditor.Mode.Adjust.prototype.update = function(options) {
67 ImageEditor.Mode.prototype.update.apply(this, arguments);
84 ImageEditor.Mode.Adjust.prototype.updatePreviewImage = function() {
109 ImageEditor.Mode.Adjust.prototype.createFilter = function(options) {
117 ImageEditor.Mode.ColorFilter = function() {
118 ImageEditor.Mode.Adjust.apply(this, arguments);
121 ImageEditor.Mode.ColorFilter.prototype =
122 {__proto__: ImageEditor.Mode.Adjust.prototype};
129 ImageEditor.Mode.ColorFilter.prototype.getHistogram = function() {
137 ImageEditor.Mode.Exposure = function() {
138 ImageEditor.Mode.ColorFilter.call(this, 'exposure', 'GALLERY_EXPOSURE');
141 ImageEditor.Mode.Exposure.prototype =
142 {__proto__: ImageEditor.Mode.ColorFilter.prototype};
148 ImageEditor.Mode.Exposure.prototype.createTools = function(toolbar) {
157 ImageEditor.Mode.Autofix = function() {
158 ImageEditor.Mode.ColorFilter.call(this, 'autofix', 'GALLERY_AUTOFIX');
162 ImageEditor.Mode.Autofix.prototype =
163 {__proto__: ImageEditor.Mode.ColorFilter.prototype};
169 ImageEditor.Mode.Autofix.prototype.createTools = function(toolbar) {
178 ImageEditor.Mode.Autofix.prototype.isApplicable = function() {
186 ImageEditor.Mode.Autofix.prototype.apply = function() {
194 ImageEditor.Mode.InstantAutofix = function() {
195 ImageEditor.Mode.Autofix.apply(this, arguments);
199 ImageEditor.Mode.InstantAutofix.prototype =
200 {__proto__: ImageEditor.Mode.Autofix.prototype};
205 ImageEditor.Mode.InstantAutofix.prototype.setUp = function() {
206 ImageEditor.Mode.Autofix.prototype.setUp.apply(this, arguments);
214 ImageEditor.Mode.Blur = function() {
215 ImageEditor.Mode.Adjust.call(this, 'blur');
218 ImageEditor.Mode.Blur.prototype =
219 {__proto__: ImageEditor.Mode.Adjust.prototype};
225 ImageEditor.Mode.Blur.prototype.createTools = function(toolbar) {
234 ImageEditor.Mode.Sharpen = function() {
235 ImageEditor.Mode.Adjust.call(this, 'sharpen');
238 ImageEditor.Mode.Sharpen.prototype =
239 {__proto__: ImageEditor.Mode.Adjust.prototype};
245 ImageEditor.Mode.Sharpen.prototype.createTools = function(toolbar) {