2016-04-01 15:49:00 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This module defines the sorted list of menuitems inserted into the
|
|
|
|
* "Web Developer" menu.
|
|
|
|
* It also defines the key shortcuts that relates to them.
|
|
|
|
*
|
|
|
|
* Various fields are necessary for historical compatiblity with XUL/addons:
|
|
|
|
* - id:
|
|
|
|
* used as <xul:menuitem> id attribute
|
|
|
|
* - l10nKey:
|
|
|
|
* prefix used to locale localization strings from menus.properties
|
|
|
|
* - oncommand:
|
|
|
|
* function called when the menu item or key shortcut are fired
|
2017-07-18 12:05:47 +03:00
|
|
|
* - keyId:
|
|
|
|
* Identifier used in devtools/client/devtools-startup.js
|
|
|
|
* Helps figuring out the DOM id for the related <xul:key>
|
|
|
|
* in order to have the key text displayed in menus.
|
2016-04-01 15:49:00 +03:00
|
|
|
* - disabled:
|
|
|
|
* If true, the menuitem and key shortcut are going to be hidden and disabled
|
|
|
|
* on startup, until some runtime code eventually enable them.
|
|
|
|
* - checkbox:
|
|
|
|
* If true, the menuitem is prefixed by a checkbox and runtime code can
|
|
|
|
* toggle it.
|
|
|
|
*/
|
|
|
|
|
2018-04-25 13:01:13 +03:00
|
|
|
const { Cu } = require("chrome");
|
|
|
|
|
2016-04-01 15:49:00 +03:00
|
|
|
loader.lazyRequireGetter(this, "gDevToolsBrowser", "devtools/client/framework/devtools-browser", true);
|
2018-08-30 21:31:53 +03:00
|
|
|
loader.lazyRequireGetter(this, "CommandUtils", "devtools/client/shared/developer-toolbar", true);
|
2016-06-09 14:19:09 +03:00
|
|
|
loader.lazyRequireGetter(this, "TargetFactory", "devtools/client/framework/target", true);
|
2017-09-27 02:39:16 +03:00
|
|
|
loader.lazyRequireGetter(this, "ResponsiveUIManager", "devtools/client/responsive.html/manager", true);
|
2018-06-12 09:42:19 +03:00
|
|
|
loader.lazyRequireGetter(this, "openDocLink", "devtools/client/shared/link", true);
|
2016-04-01 15:49:00 +03:00
|
|
|
|
|
|
|
loader.lazyImporter(this, "BrowserToolboxProcess", "resource://devtools/client/framework/ToolboxProcess.jsm");
|
|
|
|
loader.lazyImporter(this, "ScratchpadManager", "resource://devtools/client/scratchpad/scratchpad-manager.jsm");
|
|
|
|
|
|
|
|
exports.menuitems = [
|
|
|
|
{ id: "menu_devToolbox",
|
|
|
|
l10nKey: "devToolboxMenuItem",
|
|
|
|
oncommand(event) {
|
2018-06-01 13:36:09 +03:00
|
|
|
const window = event.target.ownerDocument.defaultView;
|
2018-04-25 13:01:13 +03:00
|
|
|
gDevToolsBrowser.toggleToolboxCommand(window.gBrowser, Cu.now());
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
2017-07-18 12:05:47 +03:00
|
|
|
keyId: "toggleToolbox",
|
2016-04-01 15:49:00 +03:00
|
|
|
checkbox: true
|
|
|
|
},
|
|
|
|
{ id: "menu_devtools_separator",
|
|
|
|
separator: true },
|
|
|
|
{ id: "menu_webide",
|
|
|
|
l10nKey: "webide",
|
|
|
|
disabled: true,
|
|
|
|
oncommand() {
|
|
|
|
gDevToolsBrowser.openWebIDE();
|
|
|
|
},
|
2017-07-18 12:05:47 +03:00
|
|
|
keyId: "webide",
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
|
|
|
{ id: "menu_browserToolbox",
|
|
|
|
l10nKey: "browserToolboxMenu",
|
|
|
|
disabled: true,
|
|
|
|
oncommand() {
|
|
|
|
BrowserToolboxProcess.init();
|
|
|
|
},
|
2017-07-18 12:05:47 +03:00
|
|
|
keyId: "browserToolbox",
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
|
|
|
{ id: "menu_browserContentToolbox",
|
|
|
|
l10nKey: "browserContentToolboxMenu",
|
|
|
|
disabled: true,
|
2016-09-07 16:48:42 +03:00
|
|
|
oncommand(event) {
|
2018-06-01 13:36:09 +03:00
|
|
|
const window = event.target.ownerDocument.defaultView;
|
2016-09-07 16:48:42 +03:00
|
|
|
gDevToolsBrowser.openContentProcessToolbox(window.gBrowser);
|
2016-04-01 15:49:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{ id: "menu_browserConsole",
|
|
|
|
l10nKey: "browserConsoleCmd",
|
|
|
|
oncommand() {
|
2018-06-01 13:36:09 +03:00
|
|
|
const {HUDService} = require("devtools/client/webconsole/hudservice");
|
2016-04-01 15:49:00 +03:00
|
|
|
HUDService.openBrowserConsoleOrFocus();
|
|
|
|
},
|
2017-07-18 12:05:47 +03:00
|
|
|
keyId: "browserConsole",
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
|
|
|
{ id: "menu_responsiveUI",
|
|
|
|
l10nKey: "responsiveDesignMode",
|
|
|
|
oncommand(event) {
|
2018-06-01 13:36:09 +03:00
|
|
|
const window = event.target.ownerDocument.defaultView;
|
2018-03-13 22:52:34 +03:00
|
|
|
ResponsiveUIManager.toggle(window, window.gBrowser.selectedTab, {
|
|
|
|
trigger: "menu"
|
|
|
|
});
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
2017-07-18 12:05:47 +03:00
|
|
|
keyId: "responsiveDesignMode",
|
2016-04-01 15:49:00 +03:00
|
|
|
checkbox: true
|
|
|
|
},
|
|
|
|
{ id: "menu_eyedropper",
|
|
|
|
l10nKey: "eyedropper",
|
2018-08-30 21:31:53 +03:00
|
|
|
oncommand(event) {
|
2018-06-01 13:36:09 +03:00
|
|
|
const window = event.target.ownerDocument.defaultView;
|
|
|
|
const target = TargetFactory.forTab(window.gBrowser.selectedTab);
|
2018-08-30 21:31:53 +03:00
|
|
|
|
|
|
|
CommandUtils.executeOnTarget(target, "eyedropper --frommenu");
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
|
|
|
checkbox: true
|
|
|
|
},
|
|
|
|
{ id: "menu_scratchpad",
|
|
|
|
l10nKey: "scratchpad",
|
|
|
|
oncommand() {
|
|
|
|
ScratchpadManager.openScratchpad();
|
|
|
|
},
|
2017-07-18 12:05:47 +03:00
|
|
|
keyId: "scratchpad",
|
2016-04-01 15:49:00 +03:00
|
|
|
},
|
|
|
|
{ id: "menu_devtools_serviceworkers",
|
|
|
|
l10nKey: "devtoolsServiceWorkers",
|
|
|
|
disabled: true,
|
|
|
|
oncommand(event) {
|
2018-06-01 13:36:09 +03:00
|
|
|
const window = event.target.ownerDocument.defaultView;
|
2016-04-01 15:49:00 +03:00
|
|
|
gDevToolsBrowser.openAboutDebugging(window.gBrowser, "workers");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ id: "menu_devtools_connect",
|
|
|
|
l10nKey: "devtoolsConnect",
|
|
|
|
disabled: true,
|
|
|
|
oncommand(event) {
|
2018-06-01 13:36:09 +03:00
|
|
|
const window = event.target.ownerDocument.defaultView;
|
2016-04-01 15:49:00 +03:00
|
|
|
gDevToolsBrowser.openConnectScreen(window.gBrowser);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ separator: true,
|
|
|
|
id: "devToolsEndSeparator"
|
|
|
|
},
|
|
|
|
{ id: "getMoreDevtools",
|
|
|
|
l10nKey: "getMoreDevtoolsCmd",
|
|
|
|
oncommand(event) {
|
2018-06-12 09:42:19 +03:00
|
|
|
openDocLink("https://addons.mozilla.org/firefox/collections/mozilla/webdeveloper/");
|
2016-04-01 15:49:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
];
|