Overview
| Comment: | [tb] gc options: ui update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tb | tbme |
| Files: | files | file ages | folders |
| SHA3-256: |
66ee6776cc25895a64db954e8e65fa7e |
| User & Date: | olr on 2019-09-05 06:56:14 |
| Other Links: | branch diff | manifest | tags |
Context
|
2019-09-05
| ||
| 06:57 | [tb] gc options: ui update check-in: 780895ad13 user: olr tags: tb, tbme | |
| 06:56 | [tb] gc options: ui update check-in: 66ee6776cc user: olr tags: tb, tbme | |
| 06:00 | [tb] code cleaning check-in: 6a95ec929e user: olr tags: tb, tbme | |
Changes
Modified gc_lang/fr/mailext/content/gc_options.js from [ed480efba2] to [5410aeaf66].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
// JavaScript
const Cc = Components.classes;
const Ci = Components.interfaces;
// const Cu = Components.utils;
const prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService).getBranch("extensions.grammarchecker.");
var oOptControl = {
oOptions: null,
load: function () {
this._setDialogOptions(false);
},
_setDialogOptions: function (bDefaultOptions=false) {
try {
sOptions = bDefaultOptions ? prefs.getCharPref("sGCDefaultOptions") : prefs.getCharPref("sGCOptions");
this.oOptions = JSON.parse(sOptions);
for (let sParam in this.oOptions) {
if (document.getElementById("option_"+sParam) !== null) {
document.getElementById("option_"+sParam).checked = this.oOptions[sParam];
}
}
}
catch (e) {
console.error(e);
| > > > > > > > > > > < > < > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
// JavaScript
const Cc = Components.classes;
const Ci = Components.interfaces;
// const Cu = Components.utils;
const prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService).getBranch("extensions.grammarchecker.");
var oOptControl = {
oOptions: null,
load: function () {
this._setDialogOptions(false);
this.listen();
},
listen: function () {
document.addEventListener("dialogaccept", (event) => {
this.save();
});
document.addEventListener("dialogextra1", (event) => {
this.reset();
});
},
_setDialogOptions: function (bDefaultOptions=false) {
console.log("_setDialogOptions");
try {
sOptions = bDefaultOptions ? prefs.getCharPref("sGCDefaultOptions") : prefs.getCharPref("sGCOptions");
this.oOptions = JSON.parse(sOptions);
for (let sParam in this.oOptions) {
if (document.getElementById("option_"+sParam) !== null) {
document.getElementById("option_"+sParam).checked = this.oOptions[sParam];
}
}
}
catch (e) {
console.error(e);
}
},
save: function () {
console.log("save");
try {
for (let xNode of document.getElementsByClassName("option")) {
this.oOptions[xNode.id.slice(7)] = xNode.checked;
}
prefs.setCharPref("sGCOptions", JSON.stringify(this.oOptions));
}
catch (e) {
console.error(e);
}
},
reset: function () {
console.log("reset");
this._setDialogOptions(true);
}
}
oOptControl.load();
|
Modified gc_lang/fr/mailext/content/gc_options.xul from [6c88a5696a] to [2d497a7dd0].
1 2 3 4 5 6 7 8 9 10 11 | <?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <?xml-stylesheet href="chrome://grammarchecker/content/gc_options.css" type="text/css"?> <!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/gc_options.dtd"> <dialog id="grammalecte-gcoptions-window" title="&window.title;" orient="vertical" buttons="accept, cancel, extra1" | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://grammarchecker/content/gc_options.css" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/gc_options.dtd">
<dialog
id="grammalecte-gcoptions-window"
title="&window.title;"
orient="vertical"
buttons="accept, cancel, extra1"
buttonlabelextra1="&defaultbutton.label;"
defaultButton="accept"
width="400"
onload="document.getElementById('grammalecte-gcoptions-window').centerWindowOnScreen();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
|
| ︙ | ︙ |