зеркало из https://github.com/mozilla/gecko-dev.git
89 строки
2.4 KiB
JavaScript
89 строки
2.4 KiB
JavaScript
/* 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";
|
|
|
|
const { Ci } = require("chrome");
|
|
const Services = require("Services");
|
|
const { KeyShortcuts } = require("devtools/client/shared/key-shortcuts");
|
|
|
|
const ZOOM_PREF = "devtools.toolbox.zoomValue";
|
|
const MIN_ZOOM = 0.5;
|
|
const MAX_ZOOM = 2;
|
|
|
|
const properties = "chrome://devtools/locale/toolbox.properties";
|
|
const bundle = Services.strings.createBundle(properties);
|
|
function l10n(key) {
|
|
return bundle.GetStringFromName(key);
|
|
}
|
|
|
|
/**
|
|
* Register generic keys to control zoom level of the given document.
|
|
* Used by both the toolboxes and the browser console.
|
|
*
|
|
* @param {DOMWindow} The window on which we should listent to key strokes and
|
|
* modify the zoom factor.
|
|
*/
|
|
exports.register = function (window) {
|
|
let shortcuts = new KeyShortcuts({
|
|
window
|
|
});
|
|
let docShell = window.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Ci.nsIWebNavigation)
|
|
.QueryInterface(Ci.nsIDocShell);
|
|
let contViewer = docShell.contentViewer;
|
|
let zoomValue = parseFloat(Services.prefs.getCharPref(ZOOM_PREF));
|
|
let zoomIn = function (name, event) {
|
|
setZoom(zoomValue + 0.1);
|
|
event.preventDefault();
|
|
};
|
|
|
|
let zoomOut = function (name, event) {
|
|
setZoom(zoomValue - 0.1);
|
|
event.preventDefault();
|
|
};
|
|
|
|
let zoomReset = function (name, event) {
|
|
setZoom(1);
|
|
event.preventDefault();
|
|
};
|
|
|
|
let setZoom = function (newValue) {
|
|
// cap zoom value
|
|
zoomValue = Math.max(newValue, MIN_ZOOM);
|
|
zoomValue = Math.min(zoomValue, MAX_ZOOM);
|
|
|
|
contViewer.fullZoom = zoomValue;
|
|
|
|
Services.prefs.setCharPref(ZOOM_PREF, zoomValue);
|
|
};
|
|
|
|
// Set zoom to whatever the last setting was.
|
|
setZoom(zoomValue);
|
|
|
|
shortcuts.on(l10n("toolbox.zoomIn.key"), zoomIn);
|
|
let zoomIn2 = l10n("toolbox.zoomIn2.key");
|
|
if (zoomIn2) {
|
|
shortcuts.on(zoomIn2, zoomIn);
|
|
}
|
|
let zoomIn3 = l10n("toolbox.zoomIn2.key");
|
|
if (zoomIn3) {
|
|
shortcuts.on(zoomIn3, zoomIn);
|
|
}
|
|
|
|
shortcuts.on(l10n("toolbox.zoomOut.key"),
|
|
zoomOut);
|
|
let zoomOut2 = l10n("toolbox.zoomOut2.key");
|
|
if (zoomOut2) {
|
|
shortcuts.on(zoomOut2, zoomOut);
|
|
}
|
|
|
|
shortcuts.on(l10n("toolbox.zoomReset.key"),
|
|
zoomReset);
|
|
let zoomReset2 = l10n("toolbox.zoomReset2.key");
|
|
if (zoomReset2) {
|
|
shortcuts.on(zoomReset2, zoomReset);
|
|
}
|
|
};
|