зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1038562 - Add API to register a new devtools theme. r=bgrins
This commit is contained in:
Родитель
1cef3e0ac6
Коммит
a6e6d54c09
|
@ -22,13 +22,13 @@ const EventEmitter = devtools.require("devtools/toolkit/event-emitter");
|
||||||
const FORBIDDEN_IDS = new Set(["toolbox", ""]);
|
const FORBIDDEN_IDS = new Set(["toolbox", ""]);
|
||||||
const MAX_ORDINAL = 99;
|
const MAX_ORDINAL = 99;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DevTools is a class that represents a set of developer tools, it holds a
|
* DevTools is a class that represents a set of developer tools, it holds a
|
||||||
* set of tools and keeps track of open toolboxes in the browser.
|
* set of tools and keeps track of open toolboxes in the browser.
|
||||||
*/
|
*/
|
||||||
this.DevTools = function DevTools() {
|
this.DevTools = function DevTools() {
|
||||||
this._tools = new Map(); // Map<toolId, tool>
|
this._tools = new Map(); // Map<toolId, tool>
|
||||||
|
this._themes = new Map(); // Map<themeId, theme>
|
||||||
this._toolboxes = new Map(); // Map<target, toolbox>
|
this._toolboxes = new Map(); // Map<target, toolbox>
|
||||||
|
|
||||||
// destroy() is an observer's handler so we need to preserve context.
|
// destroy() is an observer's handler so we need to preserve context.
|
||||||
|
@ -229,6 +229,136 @@ DevTools.prototype = {
|
||||||
return definitions.sort(this.ordinalSort);
|
return definitions.sort(this.ordinalSort);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register a new theme for developer tools toolbox.
|
||||||
|
*
|
||||||
|
* A definition is a light object that holds various information about a
|
||||||
|
* theme.
|
||||||
|
*
|
||||||
|
* Each themeDefinition has the following properties:
|
||||||
|
* - id: Unique identifier for this theme (string|required)
|
||||||
|
* - label: Localized name for the theme to be displayed to the user
|
||||||
|
* (string|required)
|
||||||
|
* - stylesheets: Array of URLs pointing to a CSS document(s) containing
|
||||||
|
* the theme style rules (array|required)
|
||||||
|
* - classList: Array of class names identifying the theme within a document.
|
||||||
|
* These names are set to document element when applying
|
||||||
|
* the theme (array|required)
|
||||||
|
* - onApply: Function that is executed by the framework when the theme
|
||||||
|
* is applied. The function takes the current iframe window
|
||||||
|
* and the previous theme id as arguments (function)
|
||||||
|
* - onUnapply: Function that is executed by the framework when the theme
|
||||||
|
* is unapplied. The function takes the current iframe window
|
||||||
|
* and the new theme id as arguments (function)
|
||||||
|
*/
|
||||||
|
registerTheme: function DT_registerTheme(themeDefinition) {
|
||||||
|
let themeId = themeDefinition.id;
|
||||||
|
|
||||||
|
if (!themeId) {
|
||||||
|
throw new Error("Invalid theme id");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this._themes.get(themeId)) {
|
||||||
|
throw new Error("Theme with the same id is already registered");
|
||||||
|
}
|
||||||
|
|
||||||
|
this._themes.set(themeId, themeDefinition);
|
||||||
|
|
||||||
|
this.emit("theme-registered", themeId);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes an existing theme from the list of registered themes.
|
||||||
|
* Needed so that add-ons can remove themselves when they are deactivated
|
||||||
|
*
|
||||||
|
* @param {string|object} theme
|
||||||
|
* Definition or the id of the theme to unregister.
|
||||||
|
*/
|
||||||
|
unregisterTheme: function DT_unregisterTheme(theme) {
|
||||||
|
let themeId = null;
|
||||||
|
if (typeof theme == "string") {
|
||||||
|
themeId = theme;
|
||||||
|
theme = this._themes.get(theme);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
themeId = theme.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
let currTheme = Services.prefs.getCharPref("devtools.theme");
|
||||||
|
|
||||||
|
// Change the current theme if it's being dynamically removed together
|
||||||
|
// with the owner (bootstrapped) extension.
|
||||||
|
// But, do not change it if the application is just shutting down.
|
||||||
|
if (!Services.startup.shuttingDown && theme.id == currTheme) {
|
||||||
|
Services.prefs.setCharPref("devtools.theme", "light");
|
||||||
|
|
||||||
|
let data = {
|
||||||
|
pref: "devtools.theme",
|
||||||
|
newValue: "light",
|
||||||
|
oldValue: currTheme
|
||||||
|
};
|
||||||
|
|
||||||
|
gDevTools.emit("pref-changed", data);
|
||||||
|
|
||||||
|
this.emit("theme-unregistered", theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
this._themes.delete(themeId);
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get a theme definition if it exists.
|
||||||
|
*
|
||||||
|
* @param {string} themeId
|
||||||
|
* The id of the theme
|
||||||
|
*
|
||||||
|
* @return {ThemeDefinition|null} theme
|
||||||
|
* The ThemeDefinition for the id or null.
|
||||||
|
*/
|
||||||
|
getThemeDefinition: function DT_getThemeDefinition(themeId) {
|
||||||
|
let theme = this._themes.get(themeId);
|
||||||
|
if (!theme) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return theme;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get map of registered themes.
|
||||||
|
*
|
||||||
|
* @return {Map} themes
|
||||||
|
* A map of the the theme definitions registered in this instance
|
||||||
|
*/
|
||||||
|
getThemeDefinitionMap: function DT_getThemeDefinitionMap() {
|
||||||
|
let themes = new Map();
|
||||||
|
|
||||||
|
for (let [id, definition] of this._themes) {
|
||||||
|
if (this.getThemeDefinition(id)) {
|
||||||
|
themes.set(id, definition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return themes;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get registered themes definitions sorted by ordinal value.
|
||||||
|
*
|
||||||
|
* @return {Array} themes
|
||||||
|
* A sorted array of the theme definitions registered in this instance
|
||||||
|
*/
|
||||||
|
getThemeDefinitionArray: function DT_getThemeDefinitionArray() {
|
||||||
|
let definitions = [];
|
||||||
|
|
||||||
|
for (let [id, definition] of this._themes) {
|
||||||
|
if (this.getThemeDefinition(id)) {
|
||||||
|
definitions.push(definition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return definitions.sort(this.ordinalSort);
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show a Toolbox for a target (either by creating a new one, or if a toolbox
|
* Show a Toolbox for a target (either by creating a new one, or if a toolbox
|
||||||
* already exists for the target, by bring to the front the existing one)
|
* already exists for the target, by bring to the front the existing one)
|
||||||
|
|
|
@ -5,6 +5,7 @@ support-files =
|
||||||
browser_toolbox_options_disable_js_iframe.html
|
browser_toolbox_options_disable_js_iframe.html
|
||||||
browser_toolbox_options_disable_cache.sjs
|
browser_toolbox_options_disable_cache.sjs
|
||||||
head.js
|
head.js
|
||||||
|
doc_theme.css
|
||||||
|
|
||||||
[browser_devtools_api.js]
|
[browser_devtools_api.js]
|
||||||
[browser_dynamic_tool_enabling.js]
|
[browser_dynamic_tool_enabling.js]
|
||||||
|
@ -32,6 +33,7 @@ skip-if = e10s # Bug 1030318
|
||||||
[browser_toolbox_window_title_changes.js]
|
[browser_toolbox_window_title_changes.js]
|
||||||
[browser_toolbox_zoom.js]
|
[browser_toolbox_zoom.js]
|
||||||
[browser_toolbox_custom_host.js]
|
[browser_toolbox_custom_host.js]
|
||||||
|
[browser_toolbox_theme_registration.js]
|
||||||
|
|
||||||
# We want this test to run for mochitest-dt as well, so we include it here:
|
# We want this test to run for mochitest-dt as well, so we include it here:
|
||||||
[../../../base/content/test/general/browser_parsable_css.js]
|
[../../../base/content/test/general/browser_parsable_css.js]
|
||||||
|
|
|
@ -0,0 +1,113 @@
|
||||||
|
/* vim: set ts=2 et sw=2 tw=80: */
|
||||||
|
/* Any copyright is dedicated to the Public Domain.
|
||||||
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||||
|
|
||||||
|
const CHROME_URL = "chrome://mochitests/content/browser/browser/devtools/framework/test/";
|
||||||
|
|
||||||
|
let toolbox;
|
||||||
|
|
||||||
|
function test()
|
||||||
|
{
|
||||||
|
gBrowser.selectedTab = gBrowser.addTab();
|
||||||
|
let target = TargetFactory.forTab(gBrowser.selectedTab);
|
||||||
|
|
||||||
|
gBrowser.selectedBrowser.addEventListener("load", function onLoad(evt) {
|
||||||
|
gBrowser.selectedBrowser.removeEventListener(evt.type, onLoad, true);
|
||||||
|
gDevTools.showToolbox(target).then(testRegister);
|
||||||
|
}, true);
|
||||||
|
|
||||||
|
content.location = "data:text/html,test for dynamically registering and unregistering themes";
|
||||||
|
}
|
||||||
|
|
||||||
|
function testRegister(aToolbox)
|
||||||
|
{
|
||||||
|
toolbox = aToolbox
|
||||||
|
gDevTools.once("theme-registered", themeRegistered);
|
||||||
|
|
||||||
|
gDevTools.registerTheme({
|
||||||
|
id: "test-theme",
|
||||||
|
label: "Test theme",
|
||||||
|
stylesheets: [CHROME_URL + "doc_theme.css"],
|
||||||
|
classList: ["theme-test"],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function themeRegistered(event, themeId)
|
||||||
|
{
|
||||||
|
is(themeId, "test-theme", "theme-registered event handler sent theme id");
|
||||||
|
|
||||||
|
ok(gDevTools.getThemeDefinitionMap().has(themeId), "theme added to map");
|
||||||
|
|
||||||
|
// Test that new theme appears in the Options panel
|
||||||
|
let target = TargetFactory.forTab(gBrowser.selectedTab);
|
||||||
|
gDevTools.showToolbox(target, "options").then(() => {
|
||||||
|
let panel = toolbox.getCurrentPanel();
|
||||||
|
let doc = panel.panelWin.frameElement.contentDocument;
|
||||||
|
let themeOption = doc.querySelector("#devtools-theme-box > radio[value=test-theme]");
|
||||||
|
|
||||||
|
ok(themeOption, "new theme exists in the Options panel");
|
||||||
|
|
||||||
|
// Apply the new theme.
|
||||||
|
applyTheme();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyTheme()
|
||||||
|
{
|
||||||
|
let panelWin = toolbox.getCurrentPanel().panelWin;
|
||||||
|
let doc = panelWin.frameElement.contentDocument;
|
||||||
|
let testThemeOption = doc.querySelector("#devtools-theme-box > radio[value=test-theme]");
|
||||||
|
let lightThemeOption = doc.querySelector("#devtools-theme-box > radio[value=light]");
|
||||||
|
|
||||||
|
let color = panelWin.getComputedStyle(testThemeOption).color;
|
||||||
|
isnot(color, "rgb(255, 0, 0)", "style unapplied");
|
||||||
|
|
||||||
|
// Select test theme.
|
||||||
|
testThemeOption.click();
|
||||||
|
|
||||||
|
let color = panelWin.getComputedStyle(testThemeOption).color;
|
||||||
|
is(color, "rgb(255, 0, 0)", "style applied");
|
||||||
|
|
||||||
|
// Select light theme
|
||||||
|
lightThemeOption.click();
|
||||||
|
|
||||||
|
let color = panelWin.getComputedStyle(testThemeOption).color;
|
||||||
|
isnot(color, "rgb(255, 0, 0)", "style unapplied");
|
||||||
|
|
||||||
|
// Select test theme again.
|
||||||
|
testThemeOption.click();
|
||||||
|
|
||||||
|
// Then unregister the test theme.
|
||||||
|
testUnregister();
|
||||||
|
}
|
||||||
|
|
||||||
|
function testUnregister()
|
||||||
|
{
|
||||||
|
gDevTools.unregisterTheme("test-theme");
|
||||||
|
|
||||||
|
ok(!gDevTools.getThemeDefinitionMap().has("test-theme"), "theme removed from map");
|
||||||
|
|
||||||
|
let panelWin = toolbox.getCurrentPanel().panelWin;
|
||||||
|
let doc = panelWin.frameElement.contentDocument;
|
||||||
|
let themeBox = doc.querySelector("#devtools-theme-box");
|
||||||
|
|
||||||
|
// The default light theme must be selected now.
|
||||||
|
is(themeBox.selectedItem, themeBox.querySelector("[value=light]"),
|
||||||
|
"theme light must be selected");
|
||||||
|
|
||||||
|
// Make sure the tab-attaching process is done before we destroy the toolbox.
|
||||||
|
let target = TargetFactory.forTab(gBrowser.selectedTab);
|
||||||
|
let actor = target.activeTab.actor;
|
||||||
|
target.client.attachTab(actor, (response) => {
|
||||||
|
cleanup();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function cleanup()
|
||||||
|
{
|
||||||
|
toolbox.destroy().then(function() {
|
||||||
|
toolbox = null;
|
||||||
|
gBrowser.removeCurrentTab();
|
||||||
|
finish();
|
||||||
|
});
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
.theme-test #devtools-theme-box radio {
|
||||||
|
color: red !important;
|
||||||
|
}
|
|
@ -75,6 +75,8 @@ function OptionsPanel(iframeWindow, toolbox) {
|
||||||
this.isReady = false;
|
this.isReady = false;
|
||||||
|
|
||||||
this._prefChanged = this._prefChanged.bind(this);
|
this._prefChanged = this._prefChanged.bind(this);
|
||||||
|
this._themeRegistered = this._themeRegistered.bind(this);
|
||||||
|
this._themeUnregistered = this._themeUnregistered.bind(this);
|
||||||
|
|
||||||
this._addListeners();
|
this._addListeners();
|
||||||
|
|
||||||
|
@ -101,7 +103,9 @@ OptionsPanel.prototype = {
|
||||||
return targetPromise.then(() => {
|
return targetPromise.then(() => {
|
||||||
this.setupToolsList();
|
this.setupToolsList();
|
||||||
this.setupToolbarButtonsList();
|
this.setupToolbarButtonsList();
|
||||||
|
this.setupThemeList();
|
||||||
this.populatePreferences();
|
this.populatePreferences();
|
||||||
|
this.updateDefaultTheme();
|
||||||
|
|
||||||
this._disableJSClicked = this._disableJSClicked.bind(this);
|
this._disableJSClicked = this._disableJSClicked.bind(this);
|
||||||
|
|
||||||
|
@ -119,10 +123,14 @@ OptionsPanel.prototype = {
|
||||||
|
|
||||||
_addListeners: function() {
|
_addListeners: function() {
|
||||||
gDevTools.on("pref-changed", this._prefChanged);
|
gDevTools.on("pref-changed", this._prefChanged);
|
||||||
|
gDevTools.on("theme-registered", this._themeRegistered);
|
||||||
|
gDevTools.on("theme-unregistered", this._themeUnregistered);
|
||||||
},
|
},
|
||||||
|
|
||||||
_removeListeners: function() {
|
_removeListeners: function() {
|
||||||
gDevTools.off("pref-changed", this._prefChanged);
|
gDevTools.off("pref-changed", this._prefChanged);
|
||||||
|
gDevTools.off("theme-registered", this._themeRegistered);
|
||||||
|
gDevTools.off("theme-unregistered", this._themeUnregistered);
|
||||||
},
|
},
|
||||||
|
|
||||||
_prefChanged: function(event, data) {
|
_prefChanged: function(event, data) {
|
||||||
|
@ -132,6 +140,22 @@ OptionsPanel.prototype = {
|
||||||
|
|
||||||
cbx.checked = cacheDisabled;
|
cbx.checked = cacheDisabled;
|
||||||
}
|
}
|
||||||
|
else if (data.pref === "devtools.theme") {
|
||||||
|
this.updateCurrentTheme();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_themeRegistered: function(event, themeId) {
|
||||||
|
this.setupThemeList();
|
||||||
|
},
|
||||||
|
|
||||||
|
_themeUnregistered: function(event, theme) {
|
||||||
|
let themeBox = this.panelDoc.getElementById("devtools-theme-box");
|
||||||
|
let themeOption = themeBox.querySelector("[value=" + theme.id + "]");
|
||||||
|
|
||||||
|
if (themeOption) {
|
||||||
|
themeBox.removeChild(themeOption);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
setupToolbarButtonsList: function() {
|
setupToolbarButtonsList: function() {
|
||||||
|
@ -229,6 +253,26 @@ OptionsPanel.prototype = {
|
||||||
this.panelWin.focus();
|
this.panelWin.focus();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
setupThemeList: function() {
|
||||||
|
let themeBox = this.panelDoc.getElementById("devtools-theme-box");
|
||||||
|
themeBox.textContent = "";
|
||||||
|
|
||||||
|
let createThemeOption = theme => {
|
||||||
|
let radio = this.panelDoc.createElement("radio");
|
||||||
|
radio.setAttribute("value", theme.id);
|
||||||
|
radio.setAttribute("label", theme.label);
|
||||||
|
return radio;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Populating the default theme list
|
||||||
|
let themes = gDevTools.getThemeDefinitionArray();
|
||||||
|
for (let theme of themes) {
|
||||||
|
themeBox.appendChild(createThemeOption(theme));
|
||||||
|
}
|
||||||
|
|
||||||
|
this.updateCurrentTheme();
|
||||||
|
},
|
||||||
|
|
||||||
populatePreferences: function() {
|
populatePreferences: function() {
|
||||||
let prefCheckboxes = this.panelDoc.querySelectorAll("checkbox[data-pref]");
|
let prefCheckboxes = this.panelDoc.querySelectorAll("checkbox[data-pref]");
|
||||||
for (let checkbox of prefCheckboxes) {
|
for (let checkbox of prefCheckboxes) {
|
||||||
|
@ -258,9 +302,13 @@ OptionsPanel.prototype = {
|
||||||
pref: this.getAttribute("data-pref"),
|
pref: this.getAttribute("data-pref"),
|
||||||
newValue: this.selectedItem.getAttribute("value")
|
newValue: this.selectedItem.getAttribute("value")
|
||||||
};
|
};
|
||||||
|
|
||||||
data.oldValue = GetPref(data.pref);
|
data.oldValue = GetPref(data.pref);
|
||||||
SetPref(data.pref, data.newValue);
|
SetPref(data.pref, data.newValue);
|
||||||
gDevTools.emit("pref-changed", data);
|
|
||||||
|
if (data.newValue != data.oldValue) {
|
||||||
|
gDevTools.emit("pref-changed", data);
|
||||||
|
}
|
||||||
}.bind(radiogroup));
|
}.bind(radiogroup));
|
||||||
}
|
}
|
||||||
let prefMenulists = this.panelDoc.querySelectorAll("menulist[data-pref]");
|
let prefMenulists = this.panelDoc.querySelectorAll("menulist[data-pref]");
|
||||||
|
@ -292,6 +340,25 @@ OptionsPanel.prototype = {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
updateDefaultTheme: function() {
|
||||||
|
// Make sure a theme is set in case the previous one coming from
|
||||||
|
// an extension isn't available anymore.
|
||||||
|
let themeBox = this.panelDoc.getElementById("devtools-theme-box");
|
||||||
|
if (themeBox.selectedIndex == -1) {
|
||||||
|
themeBox.selectedItem = themeBox.querySelector("[value=light]");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
updateCurrentTheme: function() {
|
||||||
|
let currentTheme = GetPref("devtools.theme");
|
||||||
|
let themeBox = this.panelDoc.getElementById("devtools-theme-box");
|
||||||
|
let themeOption = themeBox.querySelector("[value=" + currentTheme + "]");
|
||||||
|
|
||||||
|
if (themeOption) {
|
||||||
|
themeBox.selectedItem = themeOption;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
_populateDisableJSCheckbox: function() {
|
_populateDisableJSCheckbox: function() {
|
||||||
let cbx = this.panelDoc.getElementById("devtools-disable-javascript");
|
let cbx = this.panelDoc.getElementById("devtools-disable-javascript");
|
||||||
cbx.checked = !this._origJavascriptEnabled;
|
cbx.checked = !this._origJavascriptEnabled;
|
||||||
|
|
|
@ -33,8 +33,6 @@
|
||||||
class="options-groupbox"
|
class="options-groupbox"
|
||||||
data-pref="devtools.theme"
|
data-pref="devtools.theme"
|
||||||
orient="horizontal">
|
orient="horizontal">
|
||||||
<radio value="light" label="&options.lightTheme.label;"/>
|
|
||||||
<radio value="dark" label="&options.darkTheme.label;"/>
|
|
||||||
</radiogroup>
|
</radiogroup>
|
||||||
<label>&options.commonPrefs.label;</label>
|
<label>&options.commonPrefs.label;</label>
|
||||||
<vbox id="commonprefs-options" class="options-groupbox">
|
<vbox id="commonprefs-options" class="options-groupbox">
|
||||||
|
|
|
@ -357,6 +357,31 @@ for (let definition of defaultTools) {
|
||||||
gDevTools.registerTool(definition);
|
gDevTools.registerTool(definition);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Tools.darkTheme = {
|
||||||
|
id: "dark",
|
||||||
|
label: l10n("options.darkTheme.label", toolboxStrings),
|
||||||
|
ordinal: 1,
|
||||||
|
stylesheets: ["chrome://browser/skin/devtools/dark-theme.css"],
|
||||||
|
classList: ["theme-dark"],
|
||||||
|
};
|
||||||
|
|
||||||
|
Tools.lightTheme = {
|
||||||
|
id: "light",
|
||||||
|
label: l10n("options.lightTheme.label", toolboxStrings),
|
||||||
|
ordinal: 2,
|
||||||
|
stylesheets: ["chrome://browser/skin/devtools/light-theme.css"],
|
||||||
|
classList: ["theme-light"],
|
||||||
|
};
|
||||||
|
|
||||||
|
let defaultThemes = [
|
||||||
|
Tools.darkTheme,
|
||||||
|
Tools.lightTheme,
|
||||||
|
];
|
||||||
|
|
||||||
|
for (let definition of defaultThemes) {
|
||||||
|
gDevTools.registerTheme(definition);
|
||||||
|
}
|
||||||
|
|
||||||
var unloadObserver = {
|
var unloadObserver = {
|
||||||
observe: function(subject, topic, data) {
|
observe: function(subject, topic, data) {
|
||||||
if (subject.wrappedJSObject === require("@loader/unload")) {
|
if (subject.wrappedJSObject === require("@loader/unload")) {
|
||||||
|
@ -364,6 +389,9 @@ var unloadObserver = {
|
||||||
for (let definition of gDevTools.getToolDefinitionArray()) {
|
for (let definition of gDevTools.getToolDefinitionArray()) {
|
||||||
gDevTools.unregisterTool(definition.id);
|
gDevTools.unregisterTool(definition.id);
|
||||||
}
|
}
|
||||||
|
for (let definition of gDevTools.getThemeDefinitionArray()) {
|
||||||
|
gDevTools.unregisterTheme(definition.id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -24,24 +24,35 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (oldTheme && newTheme != oldTheme) {
|
let oldThemeDef = gDevTools.getThemeDefinition(oldTheme);
|
||||||
StylesheetUtils.removeSheet(
|
let newThemeDef = gDevTools.getThemeDefinition(newTheme);
|
||||||
window,
|
|
||||||
DEVTOOLS_SKIN_URL + oldTheme + "-theme.css",
|
// Unload all theme stylesheets related to the old theme.
|
||||||
"author"
|
if (oldThemeDef) {
|
||||||
);
|
for (let url of oldThemeDef.stylesheets) {
|
||||||
|
StylesheetUtils.removeSheet(window, url, "author");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StylesheetUtils.loadSheet(
|
// Load all stylesheets associated with the new theme.
|
||||||
window,
|
let newThemeDef = gDevTools.getThemeDefinition(newTheme);
|
||||||
DEVTOOLS_SKIN_URL + newTheme + "-theme.css",
|
|
||||||
"author"
|
|
||||||
);
|
|
||||||
|
|
||||||
// Floating scrollbars à la osx
|
// The theme might not be available anymore (e.g. uninstalled)
|
||||||
|
// Use the default one.
|
||||||
|
if (!newThemeDef) {
|
||||||
|
newThemeDef = gDevTools.getThemeDefinition("light");
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let url of newThemeDef.stylesheets) {
|
||||||
|
StylesheetUtils.loadSheet(window, url, "author");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Floating scroll-bars like in OSX
|
||||||
let hiddenDOMWindow = Cc["@mozilla.org/appshell/appShellService;1"]
|
let hiddenDOMWindow = Cc["@mozilla.org/appshell/appShellService;1"]
|
||||||
.getService(Ci.nsIAppShellService)
|
.getService(Ci.nsIAppShellService)
|
||||||
.hiddenDOMWindow;
|
.hiddenDOMWindow;
|
||||||
|
|
||||||
|
// TODO: extensions might want to customize scrollbar styles too.
|
||||||
if (!hiddenDOMWindow.matchMedia("(-moz-overlay-scrollbars)").matches) {
|
if (!hiddenDOMWindow.matchMedia("(-moz-overlay-scrollbars)").matches) {
|
||||||
let scrollbarsUrl = Services.io.newURI(
|
let scrollbarsUrl = Services.io.newURI(
|
||||||
DEVTOOLS_SKIN_URL + "floating-scrollbars-light.css", null, null);
|
DEVTOOLS_SKIN_URL + "floating-scrollbars-light.css", null, null);
|
||||||
|
@ -62,8 +73,26 @@
|
||||||
forceStyle();
|
forceStyle();
|
||||||
}
|
}
|
||||||
|
|
||||||
documentElement.classList.remove("theme-" + oldTheme);
|
if (oldThemeDef) {
|
||||||
documentElement.classList.add("theme-" + newTheme);
|
for (let name of oldThemeDef.classList) {
|
||||||
|
documentElement.classList.remove(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (oldThemeDef.onUnapply) {
|
||||||
|
oldThemeDef.onUnapply(window, newTheme);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let name of newThemeDef.classList) {
|
||||||
|
documentElement.classList.add(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newThemeDef.onApply) {
|
||||||
|
newThemeDef.onApply(window, oldTheme);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Final notification for further theme-switching related logic.
|
||||||
|
gDevTools.emit("theme-switched", window, newTheme, oldTheme);
|
||||||
}
|
}
|
||||||
|
|
||||||
function handlePrefChange(event, data) {
|
function handlePrefChange(event, data) {
|
||||||
|
|
|
@ -114,8 +114,6 @@
|
||||||
- the heading of the radiobox corresponding to the theme of the developer
|
- the heading of the radiobox corresponding to the theme of the developer
|
||||||
- tools. -->
|
- tools. -->
|
||||||
<!ENTITY options.selectDevToolsTheme.label "Choose DevTools theme:">
|
<!ENTITY options.selectDevToolsTheme.label "Choose DevTools theme:">
|
||||||
<!ENTITY options.darkTheme.label "Dark theme">
|
|
||||||
<!ENTITY options.lightTheme.label "Light theme">
|
|
||||||
|
|
||||||
<!-- LOCALIZATION NOTE (options.webconsole.label): This is the label for the
|
<!-- LOCALIZATION NOTE (options.webconsole.label): This is the label for the
|
||||||
- heading of the group of Web Console preferences in the options panel. -->
|
- heading of the group of Web Console preferences in the options panel. -->
|
||||||
|
|
|
@ -70,3 +70,11 @@ browserConsoleCmd.commandkey=j
|
||||||
# LOCALIZATION NOTE (pickButton.tooltip)
|
# LOCALIZATION NOTE (pickButton.tooltip)
|
||||||
# This is the tooltip of the pick button in the toolbox toolbar
|
# This is the tooltip of the pick button in the toolbox toolbar
|
||||||
pickButton.tooltip=Pick an element from the page
|
pickButton.tooltip=Pick an element from the page
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (options.darkTheme.label)
|
||||||
|
# Used as a label for dark theme
|
||||||
|
options.darkTheme.label=Dark theme
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (options.lightTheme.label)
|
||||||
|
# Used as a label for light theme
|
||||||
|
options.lightTheme.label=Light theme
|
||||||
|
|
Загрузка…
Ссылка в новой задаче