2011-04-20 01:18:00 -07:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et:
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
2011-05-09 07:51:52 -07:00
|
|
|
* The Original Code is Scratchpad.
|
2011-04-20 01:18:00 -07:00
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* The Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Rob Campbell <robcee@mozilla.com> (original author)
|
|
|
|
* Erik Vold <erikvvold@gmail.com>
|
|
|
|
* David Dahl <ddahl@mozilla.com>
|
|
|
|
* Mihai Sucan <mihai.sucan@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK *****/
|
|
|
|
|
2011-05-09 07:51:52 -07:00
|
|
|
/*
|
|
|
|
* Original version history can be found here:
|
|
|
|
* https://github.com/mozilla/workspace
|
|
|
|
*
|
|
|
|
* Copied and relicensed from the Public Domain.
|
|
|
|
* See bug 653934 for details.
|
|
|
|
* https://bugzilla.mozilla.org/show_bug.cgi?id=653934
|
|
|
|
*/
|
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
"use strict";
|
|
|
|
|
2011-04-20 01:18:00 -07:00
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
Cu.import("resource://gre/modules/NetUtil.jsm");
|
|
|
|
Cu.import("resource:///modules/PropertyPanel.jsm");
|
2011-08-11 14:35:10 -07:00
|
|
|
Cu.import("resource:///modules/source-editor.jsm");
|
2011-11-02 12:32:55 -07:00
|
|
|
Cu.import("resource:///modules/devtools/scratchpad-manager.jsm");
|
|
|
|
|
2011-04-20 01:18:00 -07:00
|
|
|
|
2011-05-09 07:51:52 -07:00
|
|
|
const SCRATCHPAD_CONTEXT_CONTENT = 1;
|
2011-05-19 14:10:41 -07:00
|
|
|
const SCRATCHPAD_CONTEXT_BROWSER = 2;
|
2011-10-27 08:35:13 -07:00
|
|
|
const SCRATCHPAD_L10N = "chrome://browser/locale/devtools/scratchpad.properties";
|
2011-04-19 13:42:56 -07:00
|
|
|
const DEVTOOLS_CHROME_ENABLED = "devtools.chrome.enabled";
|
2011-04-20 01:18:00 -07:00
|
|
|
|
|
|
|
/**
|
2011-05-09 07:51:52 -07:00
|
|
|
* The scratchpad object handles the Scratchpad window functionality.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
var Scratchpad = {
|
2011-04-20 01:18:00 -07:00
|
|
|
/**
|
2011-05-09 07:51:52 -07:00
|
|
|
* The script execution context. This tells Scratchpad in which context the
|
2011-04-20 01:18:00 -07:00
|
|
|
* script shall execute.
|
|
|
|
*
|
|
|
|
* Possible values:
|
2011-05-09 07:51:52 -07:00
|
|
|
* - SCRATCHPAD_CONTEXT_CONTENT to execute code in the context of the current
|
2011-04-20 01:18:00 -07:00
|
|
|
* tab content window object.
|
2011-05-19 14:10:41 -07:00
|
|
|
* - SCRATCHPAD_CONTEXT_BROWSER to execute code in the context of the
|
2011-04-20 01:18:00 -07:00
|
|
|
* currently active chrome window object.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
executionContext: SCRATCHPAD_CONTEXT_CONTENT,
|
2011-04-20 01:18:00 -07:00
|
|
|
|
|
|
|
/**
|
2011-10-26 04:35:32 -07:00
|
|
|
* Retrieve the xul:notificationbox DOM element. It notifies the user when
|
|
|
|
* the current code execution context is SCRATCHPAD_CONTEXT_BROWSER.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-10-26 04:35:32 -07:00
|
|
|
get notificationBox() document.getElementById("scratchpad-notificationbox"),
|
2011-04-20 01:18:00 -07:00
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* Get the selected text from the editor.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* The selected text.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-08-11 14:35:10 -07:00
|
|
|
get selectedText() this.editor.getSelectedText(),
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the editor content, in the given range. If no range is given you get
|
|
|
|
* the entire editor content.
|
|
|
|
*
|
|
|
|
* @param number [aStart=0]
|
|
|
|
* Optional, start from the given offset.
|
|
|
|
* @param number [aEnd=content char count]
|
|
|
|
* Optional, end offset for the text you want. If this parameter is not
|
|
|
|
* given, then the text returned goes until the end of the editor
|
|
|
|
* content.
|
|
|
|
* @return string
|
|
|
|
* The text in the given range.
|
|
|
|
*/
|
|
|
|
getText: function SP_getText(aStart, aEnd)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
return this.editor.getText(aStart, aEnd);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replace text in the source editor with the given text, in the given range.
|
|
|
|
*
|
|
|
|
* @param string aText
|
|
|
|
* The text you want to put into the editor.
|
|
|
|
* @param number [aStart=0]
|
|
|
|
* Optional, the start offset, zero based, from where you want to start
|
|
|
|
* replacing text in the editor.
|
|
|
|
* @param number [aEnd=char count]
|
|
|
|
* Optional, the end offset, zero based, where you want to stop
|
|
|
|
* replacing text in the editor.
|
|
|
|
*/
|
|
|
|
setText: function SP_setText(aText, aStart, aEnd)
|
|
|
|
{
|
|
|
|
this.editor.setText(aText, aStart, aEnd);
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
2011-11-02 12:32:55 -07:00
|
|
|
/**
|
|
|
|
* Set the filename in the scratchpad UI and object
|
|
|
|
*
|
|
|
|
* @param string aFilename
|
|
|
|
* The new filename
|
|
|
|
*/
|
|
|
|
setFilename: function SP_setFilename(aFilename)
|
|
|
|
{
|
|
|
|
document.title = this.filename = aFilename;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current state of the scratchpad. Called by the
|
|
|
|
* Scratchpad Manager for session storing.
|
|
|
|
*
|
|
|
|
* @return object
|
|
|
|
* An object with 3 properties: filename, text, and
|
|
|
|
* executionContext.
|
|
|
|
*/
|
|
|
|
getState: function SP_getState()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
filename: this.filename,
|
|
|
|
text: this.getText(),
|
|
|
|
executionContext: this.executionContext
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the filename and execution context using the given state. Called
|
|
|
|
* when scratchpad is being restored from a previous session.
|
|
|
|
*
|
|
|
|
* @param object aState
|
|
|
|
* An object with filename and executionContext properties.
|
|
|
|
*/
|
|
|
|
setState: function SP_getState(aState)
|
|
|
|
{
|
|
|
|
if (aState.filename) {
|
|
|
|
this.setFilename(aState.filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aState.executionContext == SCRATCHPAD_CONTEXT_BROWSER) {
|
|
|
|
this.setBrowserContext();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.setContentContext();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-04-20 01:18:00 -07:00
|
|
|
/**
|
|
|
|
* Get the most recent chrome window of type navigator:browser.
|
|
|
|
*/
|
|
|
|
get browserWindow() Services.wm.getMostRecentWindow("navigator:browser"),
|
|
|
|
|
2011-04-21 01:24:30 -07:00
|
|
|
/**
|
|
|
|
* Reference to the last chrome window of type navigator:browser. We use this
|
|
|
|
* to check if the chrome window changed since the last code evaluation.
|
|
|
|
*/
|
|
|
|
_previousWindow: null,
|
|
|
|
|
2011-04-20 01:18:00 -07:00
|
|
|
/**
|
|
|
|
* Get the gBrowser object of the most recent browser window.
|
|
|
|
*/
|
|
|
|
get gBrowser()
|
|
|
|
{
|
|
|
|
let recentWin = this.browserWindow;
|
|
|
|
return recentWin ? recentWin.gBrowser : null;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-04-21 01:24:30 -07:00
|
|
|
* Cached Cu.Sandbox object for the active tab content window object.
|
|
|
|
*/
|
|
|
|
_contentSandbox: null,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Cu.Sandbox object for the active tab content window object. Note
|
|
|
|
* that the returned object is cached for later reuse. The cached object is
|
2011-05-21 04:59:23 -07:00
|
|
|
* kept only for the current location in the current tab of the current
|
|
|
|
* browser window and it is reset for each context switch,
|
|
|
|
* navigator:browser window switch, tab switch or navigation.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
|
|
|
get contentSandbox()
|
|
|
|
{
|
|
|
|
if (!this.browserWindow) {
|
|
|
|
Cu.reportError(this.strings.
|
|
|
|
GetStringFromName("browserWindow.unavailable"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-21 01:24:30 -07:00
|
|
|
if (!this._contentSandbox ||
|
2011-05-21 04:59:23 -07:00
|
|
|
this.browserWindow != this._previousBrowserWindow ||
|
|
|
|
this._previousBrowser != this.gBrowser.selectedBrowser ||
|
|
|
|
this._previousLocation != this.gBrowser.contentWindow.location.href) {
|
2011-04-21 01:24:30 -07:00
|
|
|
let contentWindow = this.gBrowser.selectedBrowser.contentWindow;
|
|
|
|
this._contentSandbox = new Cu.Sandbox(contentWindow,
|
2011-08-21 16:02:24 -07:00
|
|
|
{ sandboxPrototype: contentWindow, wantXrays: false,
|
|
|
|
sandboxName: 'scratchpad-content'});
|
2011-04-21 01:24:30 -07:00
|
|
|
|
|
|
|
this._previousBrowserWindow = this.browserWindow;
|
2011-05-21 04:59:23 -07:00
|
|
|
this._previousBrowser = this.gBrowser.selectedBrowser;
|
|
|
|
this._previousLocation = contentWindow.location.href;
|
2011-04-21 01:24:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return this._contentSandbox;
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-04-21 01:24:30 -07:00
|
|
|
* Cached Cu.Sandbox object for the most recently active navigator:browser
|
2011-04-20 01:18:00 -07:00
|
|
|
* chrome window object.
|
|
|
|
*/
|
2011-04-21 01:24:30 -07:00
|
|
|
_chromeSandbox: null,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Cu.Sandbox object for the most recently active navigator:browser
|
|
|
|
* chrome window object. Note that the returned object is cached for later
|
|
|
|
* reuse. The cached object is kept only for the current browser window and it
|
|
|
|
* is reset for each context switch or navigator:browser window switch.
|
|
|
|
*/
|
2011-04-20 01:18:00 -07:00
|
|
|
get chromeSandbox()
|
|
|
|
{
|
|
|
|
if (!this.browserWindow) {
|
|
|
|
Cu.reportError(this.strings.
|
|
|
|
GetStringFromName("browserWindow.unavailable"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-21 01:24:30 -07:00
|
|
|
if (!this._chromeSandbox ||
|
|
|
|
this.browserWindow != this._previousBrowserWindow) {
|
|
|
|
this._chromeSandbox = new Cu.Sandbox(this.browserWindow,
|
2011-08-21 16:02:24 -07:00
|
|
|
{ sandboxPrototype: this.browserWindow, wantXrays: false,
|
|
|
|
sandboxName: 'scratchpad-chrome'});
|
2011-04-21 01:24:30 -07:00
|
|
|
|
|
|
|
this._previousBrowserWindow = this.browserWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._chromeSandbox;
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* Drop the editor selection.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
deselect: function SP_deselect()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
this.editor.dropSelection();
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* Select a specific range in the Scratchpad editor.
|
2011-04-20 01:18:00 -07:00
|
|
|
*
|
|
|
|
* @param number aStart
|
|
|
|
* Selection range start.
|
|
|
|
* @param number aEnd
|
|
|
|
* Selection range end.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
selectRange: function SP_selectRange(aStart, aEnd)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
this.editor.setSelection(aStart, aEnd);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current selection range.
|
|
|
|
*
|
|
|
|
* @return object
|
|
|
|
* An object with two properties, start and end, that give the
|
|
|
|
* selection range (zero based offsets).
|
|
|
|
*/
|
|
|
|
getSelectionRange: function SP_getSelection()
|
|
|
|
{
|
|
|
|
return this.editor.getSelection();
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Evaluate a string in the active tab content window.
|
|
|
|
*
|
|
|
|
* @param string aString
|
|
|
|
* The script you want evaluated.
|
|
|
|
* @return mixed
|
|
|
|
* The script evaluation result.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
evalInContentSandbox: function SP_evalInContentSandbox(aString)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-11-03 08:39:32 -07:00
|
|
|
let error, result;
|
2011-04-20 01:18:00 -07:00
|
|
|
try {
|
|
|
|
result = Cu.evalInSandbox(aString, this.contentSandbox, "1.8",
|
2011-05-09 07:51:52 -07:00
|
|
|
"Scratchpad", 1);
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
this.openWebConsole();
|
|
|
|
|
|
|
|
let contentWindow = this.gBrowser.selectedBrowser.contentWindow;
|
|
|
|
|
|
|
|
let scriptError = Cc["@mozilla.org/scripterror;1"].
|
|
|
|
createInstance(Ci.nsIScriptError2);
|
|
|
|
|
|
|
|
scriptError.initWithWindowID(ex.message + "\n" + ex.stack, ex.fileName,
|
|
|
|
"", ex.lineNumber, 0, scriptError.errorFlag,
|
|
|
|
"content javascript",
|
2011-08-24 13:44:35 -07:00
|
|
|
this.getInnerWindowId(contentWindow));
|
2011-04-20 01:18:00 -07:00
|
|
|
|
|
|
|
Services.console.logMessage(scriptError);
|
2011-11-03 08:39:32 -07:00
|
|
|
|
|
|
|
error = true;
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
|
2011-11-03 08:39:32 -07:00
|
|
|
return [error, result];
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Evaluate a string in the most recent navigator:browser chrome window.
|
|
|
|
*
|
|
|
|
* @param string aString
|
|
|
|
* The script you want evaluated.
|
|
|
|
* @return mixed
|
|
|
|
* The script evaluation result.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
evalInChromeSandbox: function SP_evalInChromeSandbox(aString)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-11-03 08:39:32 -07:00
|
|
|
let error, result;
|
2011-04-20 01:18:00 -07:00
|
|
|
try {
|
|
|
|
result = Cu.evalInSandbox(aString, this.chromeSandbox, "1.8",
|
2011-05-09 07:51:52 -07:00
|
|
|
"Scratchpad", 1);
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
catch (ex) {
|
|
|
|
Cu.reportError(ex);
|
|
|
|
Cu.reportError(ex.stack);
|
|
|
|
this.openErrorConsole();
|
2011-11-03 08:39:32 -07:00
|
|
|
|
|
|
|
error = true;
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
|
2011-11-03 08:39:32 -07:00
|
|
|
return [error, result];
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Evaluate a string in the currently desired context, that is either the
|
|
|
|
* chrome window or the tab content window object.
|
|
|
|
*
|
|
|
|
* @param string aString
|
|
|
|
* The script you want to evaluate.
|
|
|
|
* @return mixed
|
|
|
|
* The script evaluation result.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
evalForContext: function SP_evaluateForContext(aString)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-05-09 07:51:52 -07:00
|
|
|
return this.executionContext == SCRATCHPAD_CONTEXT_CONTENT ?
|
2011-04-20 01:18:00 -07:00
|
|
|
this.evalInContentSandbox(aString) :
|
|
|
|
this.evalInChromeSandbox(aString);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* Execute the selected text (if any) or the entire editor content in the
|
2011-04-20 01:18:00 -07:00
|
|
|
* current context.
|
|
|
|
*/
|
2011-05-21 04:59:23 -07:00
|
|
|
run: function SP_run()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
let selection = this.selectedText || this.getText();
|
2011-11-03 08:39:32 -07:00
|
|
|
let [error, result] = this.evalForContext(selection);
|
2011-04-20 01:18:00 -07:00
|
|
|
this.deselect();
|
2011-11-03 08:39:32 -07:00
|
|
|
return [selection, error, result];
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* Execute the selected text (if any) or the entire editor content in the
|
2011-04-20 01:18:00 -07:00
|
|
|
* current context. The resulting object is opened up in the Property Panel
|
|
|
|
* for inspection.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
inspect: function SP_inspect()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-11-03 08:39:32 -07:00
|
|
|
let [selection, error, result] = this.run();
|
2011-04-20 01:18:00 -07:00
|
|
|
|
2011-11-03 08:39:32 -07:00
|
|
|
if (!error) {
|
2011-04-20 01:18:00 -07:00
|
|
|
this.openPropertyPanel(selection, result);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* Execute the selected text (if any) or the entire editor content in the
|
|
|
|
* current context. The evaluation result is inserted into the editor after
|
|
|
|
* the selected text, or at the end of the editor content if there is no
|
2011-04-20 01:18:00 -07:00
|
|
|
* selected text.
|
|
|
|
*/
|
2011-05-21 04:59:23 -07:00
|
|
|
display: function SP_display()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
let selection = this.getSelectionRange();
|
|
|
|
let insertionPoint = selection.start != selection.end ?
|
|
|
|
selection.end : // after selected text
|
|
|
|
this.editor.getCharCount(); // after text end
|
2011-04-20 01:18:00 -07:00
|
|
|
|
2011-11-03 08:39:32 -07:00
|
|
|
let [selectedText, error, result] = this.run();
|
|
|
|
if (error) {
|
2011-04-20 01:18:00 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-03 08:39:32 -07:00
|
|
|
let newComment = "/*\n" + result + "\n*/";
|
2011-04-20 01:18:00 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
this.setText(newComment, insertionPoint, insertionPoint);
|
2011-04-20 01:18:00 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
// Select the new comment.
|
|
|
|
this.selectRange(insertionPoint, insertionPoint + newComment.length);
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the Property Panel to inspect the given object.
|
|
|
|
*
|
|
|
|
* @param string aEvalString
|
|
|
|
* The string that was evaluated. This is re-used when the user updates
|
|
|
|
* the properties list, by clicking the Update button.
|
|
|
|
* @param object aOutputObject
|
|
|
|
* The object to inspect, which is the aEvalString evaluation result.
|
|
|
|
* @return object
|
|
|
|
* The PropertyPanel object instance.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
openPropertyPanel: function SP_openPropertyPanel(aEvalString, aOutputObject)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
let self = this;
|
|
|
|
let propPanel;
|
|
|
|
// The property panel has a button:
|
|
|
|
// `Update`: reexecutes the string executed on the command line. The
|
|
|
|
// result will be inspected by this panel.
|
|
|
|
let buttons = [];
|
|
|
|
|
|
|
|
// If there is a evalString passed to this function, then add a `Update`
|
|
|
|
// button to the panel so that the evalString can be reexecuted to update
|
|
|
|
// the content of the panel.
|
|
|
|
if (aEvalString !== null) {
|
|
|
|
buttons.push({
|
|
|
|
label: this.strings.
|
|
|
|
GetStringFromName("propertyPanel.updateButton.label"),
|
|
|
|
accesskey: this.strings.
|
|
|
|
GetStringFromName("propertyPanel.updateButton.accesskey"),
|
|
|
|
oncommand: function () {
|
2011-11-03 08:39:32 -07:00
|
|
|
let [error, result] = self.evalForContext(aEvalString);
|
2011-04-20 01:18:00 -07:00
|
|
|
|
2011-11-03 08:39:32 -07:00
|
|
|
if (!error) {
|
|
|
|
propPanel.treeView.data = result;
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
let doc = this.browserWindow.document;
|
|
|
|
let parent = doc.getElementById("mainPopupSet");
|
|
|
|
let title = aOutputObject.toString();
|
|
|
|
propPanel = new PropertyPanel(parent, doc, title, aOutputObject, buttons);
|
|
|
|
|
|
|
|
let panel = propPanel.panel;
|
2011-05-09 07:51:52 -07:00
|
|
|
panel.setAttribute("class", "scratchpad_propertyPanel");
|
2011-04-20 01:18:00 -07:00
|
|
|
panel.openPopup(null, "after_pointer", 0, 0, false, false);
|
|
|
|
panel.sizeTo(200, 400);
|
|
|
|
|
|
|
|
return propPanel;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Menu Operations
|
|
|
|
|
|
|
|
/**
|
2011-05-09 07:51:52 -07:00
|
|
|
* Open a new Scratchpad window.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
openScratchpad: function SP_openScratchpad()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-11-02 12:32:55 -07:00
|
|
|
ScratchpadManager.openScratchpad();
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export the textbox content to a file.
|
|
|
|
*
|
|
|
|
* @param nsILocalFile aFile
|
|
|
|
* The file where you want to save the textbox content.
|
|
|
|
* @param boolean aNoConfirmation
|
|
|
|
* If the file already exists, ask for confirmation?
|
|
|
|
* @param boolean aSilentError
|
|
|
|
* True if you do not want to display an error when file save fails,
|
|
|
|
* false otherwise.
|
|
|
|
* @param function aCallback
|
|
|
|
* Optional function you want to call when file save completes. It will
|
|
|
|
* get the following arguments:
|
|
|
|
* 1) the nsresult status code for the export operation.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
exportToFile: function SP_exportToFile(aFile, aNoConfirmation, aSilentError,
|
2011-04-20 01:18:00 -07:00
|
|
|
aCallback)
|
|
|
|
{
|
|
|
|
if (!aNoConfirmation && aFile.exists() &&
|
|
|
|
!window.confirm(this.strings.
|
|
|
|
GetStringFromName("export.fileOverwriteConfirmation"))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let fs = Cc["@mozilla.org/network/file-output-stream;1"].
|
|
|
|
createInstance(Ci.nsIFileOutputStream);
|
|
|
|
let modeFlags = 0x02 | 0x08 | 0x20;
|
2011-08-11 14:35:10 -07:00
|
|
|
fs.init(aFile, modeFlags, 420 /* 0644 */, fs.DEFER_OPEN);
|
2011-04-20 01:18:00 -07:00
|
|
|
|
|
|
|
let converter = Cc["@mozilla.org/intl/scriptableunicodeconverter"].
|
|
|
|
createInstance(Ci.nsIScriptableUnicodeConverter);
|
|
|
|
converter.charset = "UTF-8";
|
2011-08-11 14:35:10 -07:00
|
|
|
let input = converter.convertToInputStream(this.getText());
|
2011-04-20 01:18:00 -07:00
|
|
|
|
|
|
|
let self = this;
|
|
|
|
NetUtil.asyncCopy(input, fs, function(aStatus) {
|
|
|
|
if (!aSilentError && !Components.isSuccessCode(aStatus)) {
|
|
|
|
window.alert(self.strings.GetStringFromName("saveFile.failed"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aCallback) {
|
|
|
|
aCallback.call(self, aStatus);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read the content of a file and put it into the textbox.
|
|
|
|
*
|
|
|
|
* @param nsILocalFile aFile
|
|
|
|
* The file you want to save the textbox content into.
|
|
|
|
* @param boolean aSilentError
|
|
|
|
* True if you do not want to display an error when file load fails,
|
|
|
|
* false otherwise.
|
|
|
|
* @param function aCallback
|
|
|
|
* Optional function you want to call when file load completes. It will
|
|
|
|
* get the following arguments:
|
|
|
|
* 1) the nsresult status code for the import operation.
|
|
|
|
* 2) the data that was read from the file, if any.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
importFromFile: function SP_importFromFile(aFile, aSilentError, aCallback)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
// Prevent file type detection.
|
|
|
|
let channel = NetUtil.newChannel(aFile);
|
|
|
|
channel.contentType = "application/javascript";
|
|
|
|
|
|
|
|
let self = this;
|
|
|
|
NetUtil.asyncFetch(channel, function(aInputStream, aStatus) {
|
|
|
|
let content = null;
|
|
|
|
|
|
|
|
if (Components.isSuccessCode(aStatus)) {
|
|
|
|
content = NetUtil.readInputStreamToString(aInputStream,
|
|
|
|
aInputStream.available());
|
2011-08-11 14:35:10 -07:00
|
|
|
self.setText(content);
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
else if (!aSilentError) {
|
|
|
|
window.alert(self.strings.GetStringFromName("openFile.failed"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aCallback) {
|
|
|
|
aCallback.call(self, aStatus, content);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-05-09 07:51:52 -07:00
|
|
|
* Open a file to edit in the Scratchpad.
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
openFile: function SP_openFile()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
|
|
|
|
fp.init(window, this.strings.GetStringFromName("openFile.title"),
|
|
|
|
Ci.nsIFilePicker.modeOpen);
|
|
|
|
fp.defaultString = "";
|
|
|
|
if (fp.show() != Ci.nsIFilePicker.returnCancel) {
|
2011-11-02 12:32:55 -07:00
|
|
|
this.setFilename(fp.file.path);
|
2011-04-20 01:18:00 -07:00
|
|
|
this.importFromFile(fp.file);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the textbox content to the currently open file.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
saveFile: function SP_saveFile()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
if (!this.filename) {
|
|
|
|
return this.saveFileAs();
|
|
|
|
}
|
|
|
|
|
|
|
|
let file = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);
|
|
|
|
file.initWithPath(this.filename);
|
|
|
|
this.exportToFile(file, true);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the textbox content to a new file.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
saveFileAs: function SP_saveFileAs()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
let fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
|
|
|
|
fp.init(window, this.strings.GetStringFromName("saveFileAs"),
|
|
|
|
Ci.nsIFilePicker.modeSave);
|
2011-05-09 07:51:52 -07:00
|
|
|
fp.defaultString = "scratchpad.js";
|
2011-04-20 01:18:00 -07:00
|
|
|
if (fp.show() != Ci.nsIFilePicker.returnCancel) {
|
|
|
|
document.title = this.filename = fp.file.path;
|
2011-08-11 07:12:24 -07:00
|
|
|
this.exportToFile(fp.file, true);
|
2011-04-20 01:18:00 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the Error Console.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
openErrorConsole: function SP_openErrorConsole()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
this.browserWindow.toJavaScriptConsole();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the Web Console.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
openWebConsole: function SP_openWebConsole()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
if (!this.browserWindow.HUDConsoleUI.getOpenHUD()) {
|
|
|
|
this.browserWindow.HUDConsoleUI.toggleHUD();
|
|
|
|
}
|
|
|
|
this.browserWindow.focus();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current execution context to be the active tab content window.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
setContentContext: function SP_setContentContext()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-10-26 04:35:32 -07:00
|
|
|
if (this.executionContext == SCRATCHPAD_CONTEXT_CONTENT) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-09 07:51:52 -07:00
|
|
|
let content = document.getElementById("sp-menu-content");
|
2011-05-19 14:10:41 -07:00
|
|
|
document.getElementById("sp-menu-browser").removeAttribute("checked");
|
2011-04-20 01:18:00 -07:00
|
|
|
content.setAttribute("checked", true);
|
2011-05-09 07:51:52 -07:00
|
|
|
this.executionContext = SCRATCHPAD_CONTEXT_CONTENT;
|
2011-10-26 04:35:32 -07:00
|
|
|
this.notificationBox.removeAllNotifications(false);
|
2011-04-21 01:24:30 -07:00
|
|
|
this.resetContext();
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current execution context to be the most recent chrome window.
|
|
|
|
*/
|
2011-05-19 14:10:41 -07:00
|
|
|
setBrowserContext: function SP_setBrowserContext()
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
2011-10-26 04:35:32 -07:00
|
|
|
if (this.executionContext == SCRATCHPAD_CONTEXT_BROWSER) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-21 04:59:23 -07:00
|
|
|
let browser = document.getElementById("sp-menu-browser");
|
2011-05-09 07:51:52 -07:00
|
|
|
document.getElementById("sp-menu-content").removeAttribute("checked");
|
2011-05-21 04:59:23 -07:00
|
|
|
browser.setAttribute("checked", true);
|
2011-05-19 14:10:41 -07:00
|
|
|
this.executionContext = SCRATCHPAD_CONTEXT_BROWSER;
|
2011-10-26 04:35:32 -07:00
|
|
|
this.notificationBox.appendNotification(
|
|
|
|
this.strings.GetStringFromName("browserContext.notification"),
|
|
|
|
SCRATCHPAD_CONTEXT_BROWSER,
|
|
|
|
null,
|
|
|
|
this.notificationBox.PRIORITY_WARNING_HIGH,
|
|
|
|
null);
|
2011-04-21 01:24:30 -07:00
|
|
|
this.resetContext();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset the cached Cu.Sandbox object for the current context.
|
|
|
|
*/
|
2011-05-09 07:51:52 -07:00
|
|
|
resetContext: function SP_resetContext()
|
2011-04-21 01:24:30 -07:00
|
|
|
{
|
|
|
|
this._chromeSandbox = null;
|
|
|
|
this._contentSandbox = null;
|
|
|
|
this._previousWindow = null;
|
2011-05-21 04:59:23 -07:00
|
|
|
this._previousBrowser = null;
|
|
|
|
this._previousLocation = null;
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-24 13:44:35 -07:00
|
|
|
* Gets the ID of the inner window of the given DOM window object.
|
2011-04-20 01:18:00 -07:00
|
|
|
*
|
|
|
|
* @param nsIDOMWindow aWindow
|
|
|
|
* @return integer
|
2011-08-24 13:44:35 -07:00
|
|
|
* the inner window ID
|
2011-04-20 01:18:00 -07:00
|
|
|
*/
|
2011-08-24 13:44:35 -07:00
|
|
|
getInnerWindowId: function SP_getInnerWindowId(aWindow)
|
2011-04-20 01:18:00 -07:00
|
|
|
{
|
|
|
|
return aWindow.QueryInterface(Ci.nsIInterfaceRequestor).
|
2011-08-24 13:44:35 -07:00
|
|
|
getInterface(Ci.nsIDOMWindowUtils).currentInnerWindowID;
|
2011-04-20 01:18:00 -07:00
|
|
|
},
|
2011-04-19 13:42:56 -07:00
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* The Scratchpad window DOMContentLoaded event handler. This method
|
|
|
|
* initializes the Scratchpad window and source editor.
|
|
|
|
*
|
|
|
|
* @param nsIDOMEvent aEvent
|
2011-04-19 13:42:56 -07:00
|
|
|
*/
|
2011-08-11 14:35:10 -07:00
|
|
|
onLoad: function SP_onLoad(aEvent)
|
2011-04-19 13:42:56 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
if (aEvent.target != document) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-19 13:42:56 -07:00
|
|
|
let chrome = Services.prefs.getBoolPref(DEVTOOLS_CHROME_ENABLED);
|
|
|
|
if (chrome) {
|
2011-10-26 04:35:32 -07:00
|
|
|
let environmentMenu = document.getElementById("sp-environment-menu");
|
|
|
|
let errorConsoleCommand = document.getElementById("sp-cmd-errorConsole");
|
|
|
|
let chromeContextCommand = document.getElementById("sp-cmd-browserContext");
|
|
|
|
environmentMenu.removeAttribute("hidden");
|
2011-04-19 13:42:56 -07:00
|
|
|
chromeContextCommand.removeAttribute("disabled");
|
2011-10-26 04:35:32 -07:00
|
|
|
errorConsoleCommand.removeAttribute("disabled");
|
2011-04-19 13:42:56 -07:00
|
|
|
}
|
2011-06-14 03:44:51 -07:00
|
|
|
|
2011-11-02 12:32:55 -07:00
|
|
|
let initialText = this.strings.GetStringFromName("scratchpadIntro");
|
|
|
|
if ("arguments" in window &&
|
|
|
|
window.arguments[0] instanceof Ci.nsIDialogParamBlock) {
|
|
|
|
let state = JSON.parse(window.arguments[0].GetString(0));
|
|
|
|
this.setState(state);
|
|
|
|
initialText = state.text;
|
|
|
|
}
|
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
this.editor = new SourceEditor();
|
2011-06-14 03:44:51 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
let config = {
|
|
|
|
mode: SourceEditor.MODES.JAVASCRIPT,
|
|
|
|
showLineNumbers: true,
|
2011-11-02 12:32:55 -07:00
|
|
|
placeholderText: initialText
|
2011-08-11 14:35:10 -07:00
|
|
|
};
|
2011-07-06 06:24:46 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
let editorPlaceholder = document.getElementById("scratchpad-editor");
|
|
|
|
this.editor.init(editorPlaceholder, config, this.onEditorLoad.bind(this));
|
|
|
|
},
|
2011-06-14 03:44:51 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
/**
|
|
|
|
* The load event handler for the source editor. This method does post-load
|
|
|
|
* editor initialization.
|
|
|
|
*/
|
|
|
|
onEditorLoad: function SP_onEditorLoad()
|
|
|
|
{
|
|
|
|
this.editor.addEventListener(SourceEditor.EVENTS.CONTEXT_MENU,
|
|
|
|
this.onContextMenu);
|
|
|
|
this.editor.focus();
|
|
|
|
this.editor.setCaretOffset(this.editor.getCharCount());
|
|
|
|
},
|
2011-06-14 03:44:51 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
/**
|
|
|
|
* Insert text at the current caret location.
|
|
|
|
*
|
|
|
|
* @param string aText
|
|
|
|
* The text you want to insert.
|
|
|
|
*/
|
|
|
|
insertTextAtCaret: function SP_insertTextAtCaret(aText)
|
|
|
|
{
|
|
|
|
let caretOffset = this.editor.getCaretOffset();
|
|
|
|
this.setText(aText, caretOffset, caretOffset);
|
|
|
|
this.editor.setCaretOffset(caretOffset + aText.length);
|
2011-06-14 03:44:51 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* The contextmenu event handler for the source editor. This method opens the
|
|
|
|
* Scratchpad context menu popup at the pointer location.
|
2011-06-14 03:44:51 -07:00
|
|
|
*
|
2011-08-11 14:35:10 -07:00
|
|
|
* @param object aEvent
|
|
|
|
* An event object coming from the SourceEditor. This object needs to
|
|
|
|
* hold the screenX and screenY properties.
|
2011-06-14 03:44:51 -07:00
|
|
|
*/
|
2011-08-11 14:35:10 -07:00
|
|
|
onContextMenu: function SP_onContextMenu(aEvent)
|
2011-06-14 03:44:51 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
let menu = document.getElementById("scratchpad-text-popup");
|
|
|
|
if (menu.state == "closed") {
|
|
|
|
menu.openPopupAtScreen(aEvent.screenX, aEvent.screenY, true);
|
2011-06-14 03:44:51 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2011-08-11 14:35:10 -07:00
|
|
|
* The popupshowing event handler for the Edit menu. This method updates the
|
|
|
|
* enabled/disabled state of the Undo and Redo commands, based on the editor
|
|
|
|
* state such that the menu items render correctly for the user when the menu
|
|
|
|
* shows.
|
|
|
|
*/
|
|
|
|
onEditPopupShowing: function SP_onEditPopupShowing()
|
|
|
|
{
|
2011-11-04 08:32:24 -07:00
|
|
|
goUpdateGlobalEditMenuItems();
|
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
let undo = document.getElementById("sp-cmd-undo");
|
|
|
|
undo.setAttribute("disabled", !this.editor.canUndo());
|
|
|
|
|
|
|
|
let redo = document.getElementById("sp-cmd-redo");
|
|
|
|
redo.setAttribute("disabled", !this.editor.canRedo());
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Undo the last action of the user.
|
|
|
|
*/
|
|
|
|
undo: function SP_undo()
|
|
|
|
{
|
|
|
|
this.editor.undo();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Redo the previously undone action.
|
|
|
|
*/
|
|
|
|
redo: function SP_redo()
|
|
|
|
{
|
|
|
|
this.editor.redo();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Scratchpad window unload event handler. This method unloads/destroys
|
|
|
|
* the source editor.
|
2011-06-14 03:44:51 -07:00
|
|
|
*
|
2011-08-11 14:35:10 -07:00
|
|
|
* @param nsIDOMEvent aEvent
|
2011-06-14 03:44:51 -07:00
|
|
|
*/
|
2011-08-11 14:35:10 -07:00
|
|
|
onUnload: function SP_onUnload(aEvent)
|
2011-06-14 03:44:51 -07:00
|
|
|
{
|
2011-08-11 14:35:10 -07:00
|
|
|
if (aEvent.target != document) {
|
|
|
|
return;
|
|
|
|
}
|
2011-06-14 03:44:51 -07:00
|
|
|
|
2011-08-11 14:35:10 -07:00
|
|
|
this.resetContext();
|
|
|
|
this.editor.removeEventListener(SourceEditor.EVENTS.CONTEXT_MENU,
|
|
|
|
this.onContextMenu);
|
|
|
|
this.editor.destroy();
|
|
|
|
this.editor = null;
|
2011-04-19 13:42:56 -07:00
|
|
|
},
|
2011-04-20 01:18:00 -07:00
|
|
|
};
|
|
|
|
|
2011-05-09 07:51:52 -07:00
|
|
|
XPCOMUtils.defineLazyGetter(Scratchpad, "strings", function () {
|
|
|
|
return Services.strings.createBundle(SCRATCHPAD_L10N);
|
2011-04-20 01:18:00 -07:00
|
|
|
});
|
|
|
|
|
2011-05-09 07:51:52 -07:00
|
|
|
addEventListener("DOMContentLoaded", Scratchpad.onLoad.bind(Scratchpad), false);
|
2011-08-11 14:35:10 -07:00
|
|
|
addEventListener("unload", Scratchpad.onUnload.bind(Scratchpad), false);
|