Lines Matching refs:App

13 	App.mode = App.MODE_DEVICE;
68 var origAppMain = App.main;
70 App.main = function()
74 App.filesWorker = new Worker('electronFilesWorker.js');
76 App.filesWorkerReqId = 1;
77 App.filesWorkerReqInfo = {};
79 App.filesWorkerReq = function(msg, callback, error)
81 msg.reqId = App.filesWorkerReqId++;
82 App.filesWorkerReqInfo[msg.reqId] = {callback: callback, error: error};
83 App.filesWorker.postMessage(msg);
86 App.filesWorker.onmessage = function(e)
89 var callbacks = App.filesWorkerReqInfo[resp.reqId];
100 delete App.filesWorkerReqInfo[resp.reqId];
105 App.initPluginCallback();
319 editorUi.showLibraryDialog(null, null, null, null, App.MODE_DEVICE);
324 editorUi.pickLibrary(App.MODE_DEVICE);
646 for (var i = 0; i < App.publicPlugin.length; i++)
649 mxUtils.write(option, App.publicPlugin[i]);
650 option.value = App.publicPlugin[i];
719 callback(App.pluginRegistry[pluginsSelect.value]);
737 var appLoad = App.prototype.load;
739 App.prototype.load = function() class
781 App.prototype.loadArgs = function(argsObj)
928 App.prototype.pickFile = function()
960 App.prototype.pickLibrary = function(mode)
977 App.prototype.chooseFileEntry = function(fn)
1025 App.prototype.readGraphFile = function(fn, fnErr, path)
1391 App.filesWorkerReq({
1533 App.prototype.createFileSystemFilters = function(defaultExt)
1559 App.prototype.saveFile = function(forceDialog)
1601 App.prototype.saveLibrary = function(name, images, file, mode, noSpin, noReload, fn)
1681 App.prototype.checkForUpdates = function()
1687 var origUpdateHeader = App.prototype.updateHeader;
1689 App.prototype.updateHeader = function()