Files
palemoon27/toolkit/content/viewZoomOverlay.js
T
roytam1 24dc63cddd import changes from `dev' branch of rmottola/Arctic-Fox:
- Bug 1205941 - Make TimerFirings logging output post-processible with fix_linux_stack.py. r=glandium. (042e3968a2)
- Bug 1203427 (part 6) - Add link to MDN docs about TimerFirings logging. r=me. (19967a22e7)
- missing bit of Bug 1178890 (b421ab56a1)
- Bug 1207497 - Part 1: Remove use of expression closure from toolkit/, exept tests. r=Gijs (4cf4abbf3d)
- Bug 1207497 - Part 2: Remove use of expression closure from tests in toolkit/. r=Gijs (6c4517c20e)
- Bug 1207497 - Part 3: Fix wrong replacement in debug print in toolkit/mozapps/downloads/tests/unit/test_lowMinutes.js. r=me DONTBUILD (5311950d45)
- bug 1171649 - Implement arm/iOS support in JS JITs. r=jandem (0eb06f1d3d)
- Bug 1205708: Check if validation failed before reporting helper thread failure in Odin; r=luke (0bd8b70919)
- missing bit of Bug 1112627: Remove redundant inline specifier in SIMD (76cea80b8c)
- Bug 1189059: Replace setObjectMetadataCallback with enableObjectMetadataCallback, fix callers. r=fitzgen (053ae86af2)
- Bug 1125412 - Draw a graph of memory usage, r=terrence (4ac21380a4)
- Bug 1147985 - Avoid blank space when heap size graph is unavailable, r=terrence (9b48d4d435)
- Bug 1170372 - Skip js1_5/Regress/regress-312588.js on SM(cgc) builds due to timeouts. (5298485837)
- Bug 1160149 - Skip basic/testManyVars.js on SM(cgc) builds for frequent timeouts. (562cfc2713)
- Bug 1198549 - Switch from | to $ as the preferred separator token (due to operator|), r=me\ (cc6fdb0697)
- Bug 963738 - Handle Arrays in the analysis, r=terrence (589b285306)
- Bug 1209696 - Check the return value of fopen, r=terrence (8c2378f3f9)
- Bug 1197941 - Allow getline() to malloc its own buffer to avoid intermittent crashes, r=shu (e37b934fcc)
- Bug 1180985 - Implement a JS GDB pretty-printer for JS::GCCellPtr. r=sfink (8848723b3a)
- Bug 1180984 - JS GDB pretty-printers: Support Python 3. r=sfink (ae4c76014d)
- Bug 1198628 - IonMonkey: ARM: Redefine FloatRegisters::Code and use it in the right way. r=nbp (d0d608b1cc)
- Bug 1198145 - guard calls to getInst(). r=me (bb8c4e2e4b)
2022-09-19 14:02:02 +08:00

116 lines
3.1 KiB
JavaScript

// -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
/* 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/. */
/** Document Zoom Management Code
*
* To use this, you'll need to have a getBrowser() function or use the methods
* that accept a browser to be modified.
**/
var ZoomManager = {
get _prefBranch() {
delete this._prefBranch;
return this._prefBranch = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch);
},
get MIN() {
delete this.MIN;
return this.MIN = this._prefBranch.getIntPref("zoom.minPercent") / 100;
},
get MAX() {
delete this.MAX;
return this.MAX = this._prefBranch.getIntPref("zoom.maxPercent") / 100;
},
get useFullZoom() {
return this._prefBranch.getBoolPref("browser.zoom.full");
},
set useFullZoom(aVal) {
this._prefBranch.setBoolPref("browser.zoom.full", aVal);
return aVal;
},
get zoom() {
return this.getZoomForBrowser(getBrowser());
},
getZoomForBrowser: function ZoomManager_getZoomForBrowser(aBrowser) {
return (this.useFullZoom || aBrowser.isSyntheticDocument)
? aBrowser.fullZoom : aBrowser.textZoom;
},
set zoom(aVal) {
this.setZoomForBrowser(getBrowser(), aVal);
return aVal;
},
setZoomForBrowser: function ZoomManager_setZoomForBrowser(aBrowser, aVal) {
if (aVal < this.MIN || aVal > this.MAX)
throw Components.results.NS_ERROR_INVALID_ARG;
if (this.useFullZoom || aBrowser.isSyntheticDocument) {
aBrowser.textZoom = 1;
aBrowser.fullZoom = aVal;
} else {
aBrowser.textZoom = aVal;
aBrowser.fullZoom = 1;
}
},
get zoomValues() {
var zoomValues = this._prefBranch.getCharPref("toolkit.zoomManager.zoomValues")
.split(",").map(parseFloat);
zoomValues.sort((a, b) => a - b);
while (zoomValues[0] < this.MIN)
zoomValues.shift();
while (zoomValues[zoomValues.length - 1] > this.MAX)
zoomValues.pop();
delete this.zoomValues;
return this.zoomValues = zoomValues;
},
enlarge: function ZoomManager_enlarge() {
var i = this.zoomValues.indexOf(this.snap(this.zoom)) + 1;
if (i < this.zoomValues.length)
this.zoom = this.zoomValues[i];
},
reduce: function ZoomManager_reduce() {
var i = this.zoomValues.indexOf(this.snap(this.zoom)) - 1;
if (i >= 0)
this.zoom = this.zoomValues[i];
},
reset: function ZoomManager_reset() {
this.zoom = 1;
},
toggleZoom: function ZoomManager_toggleZoom() {
var zoomLevel = this.zoom;
this.useFullZoom = !this.useFullZoom;
this.zoom = zoomLevel;
},
snap: function ZoomManager_snap(aVal) {
var values = this.zoomValues;
for (var i = 0; i < values.length; i++) {
if (values[i] >= aVal) {
if (i > 0 && aVal - values[i - 1] < values[i] - aVal)
i--;
return values[i];
}
}
return values[i - 1];
}
};