treestyletab/modules/lib/prefs.js

177 lines
4.9 KiB
JavaScript
Raw Normal View History

/*
Preferences Library
Usage:
var value = window['piro.sakura.ne.jp'].prefs.getPref('my.extension.pref');
window['piro.sakura.ne.jp'].prefs.setPref('my.extension.pref', true);
window['piro.sakura.ne.jp'].prefs.clearPref('my.extension.pref');
var listener = {
domains : [
'browser.tabs',
'extensions.someextension'
],
observe : function(aSubject, aTopic, aData)
{
if (aTopic != 'nsPref:changed') return;
var value = window['piro.sakura.ne.jp'].prefs.getPref(aData);
}
};
window['piro.sakura.ne.jp'].prefs.addPrefListener(listener);
window['piro.sakura.ne.jp'].prefs.removePrefListener(listener);
2012-10-13 14:31:06 -04:00
license: The MIT License, Copyright (c) 2009-2010 YUKI "Piro" Hiroshi
http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/license.txt
original:
http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/prefs.js
http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/prefs.test.js
*/
/* To work as a JS Code Module */
if (typeof window == 'undefined' ||
(window && typeof window.constructor == 'function')) {
this.EXPORTED_SYMBOLS = ['prefs'];
// If namespace.jsm is available, export symbols to the shared namespace.
// See: http://www.cozmixng.org/repos/piro/fx3-compatibility-lib/trunk/namespace.jsm
try {
let ns = {};
Components.utils.import('resource://treestyletab-modules/lib/namespace.jsm', ns);
/* var */ window = ns.getNamespaceFor('piro.sakura.ne.jp');
}
catch(e) {
window = {};
}
}
(function() {
const currentRevision = 7;
if (!('piro.sakura.ne.jp' in window)) window['piro.sakura.ne.jp'] = {};
var loadedRevision = 'prefs' in window['piro.sakura.ne.jp'] ?
window['piro.sakura.ne.jp'].prefs.revision :
0 ;
if (loadedRevision && loadedRevision > currentRevision) {
return;
}
const Cc = Components.classes;
const Ci = Components.interfaces;
window['piro.sakura.ne.jp'].prefs = {
revision : currentRevision,
Prefs : Cc['@mozilla.org/preferences;1']
.getService(Ci.nsIPrefBranch)
.QueryInterface(Ci.nsIPrefBranch2),
DefaultPrefs : Cc['@mozilla.org/preferences-service;1']
.getService(Ci.nsIPrefService)
.getDefaultBranch(null),
getPref : function(aPrefstring, aInterface, aBranch)
{
if (!aInterface || aInterface instanceof Ci.nsIPrefBranch)
[aBranch, aInterface] = [aInterface, aBranch];
aBranch = aBranch || this.Prefs;
if (aInterface)
return (aBranch.getPrefType(aPrefstring) == aBranch.PREF_INVALID) ?
null :
aBranch.getComplexValue(aPrefstring, aInterface);
switch (aBranch.getPrefType(aPrefstring))
{
case aBranch.PREF_STRING:
return decodeURIComponent(escape(aBranch.getCharPref(aPrefstring)));
case aBranch.PREF_INT:
return aBranch.getIntPref(aPrefstring);
case aBranch.PREF_BOOL:
return aBranch.getBoolPref(aPrefstring);
case aBranch.PREF_INVALID:
default:
return null;
}
},
getDefaultPref : function(aPrefstring, aInterface)
{
return this.getPref(aPrefstring, this.DefaultPrefs, aInterface);
},
setPref : function(aPrefstring, aNewValue, aBranch)
{
aBranch = aBranch || this.Prefs;
switch (typeof aNewValue)
{
case 'string':
return aBranch.setCharPref(aPrefstring, unescape(encodeURIComponent(aNewValue)));
case 'number':
return aBranch.setIntPref(aPrefstring, parseInt(aNewValue));
default:
return aBranch.setBoolPref(aPrefstring, !!aNewValue);
}
},
setDefaultPref : function(aPrefstring, aNewValue)
{
return this.setPref(aPrefstring, aNewValue, this.DefaultPrefs);
},
clearPref : function(aPrefstring)
{
if (this.Prefs.prefHasUserValue(aPrefstring))
this.Prefs.clearUserPref(aPrefstring);
},
getDescendant : function(aRoot, aBranch)
{
aBranch = aBranch || this.Prefs;
return aBranch.getChildList(aRoot, {}).sort();
},
getChildren : function(aRoot, aBranch)
{
return this.getDescendant(aRoot, aBranch)
.filter(function(aPrefstring) {
var name = aPrefstring.replace(aRoot, '');
if (name.charAt(0) == '.')
name = name.substring(1);
return name.indexOf('.') < 0;
});
},
addPrefListener : function(aObserver)
{
var domains = ('domains' in aObserver) ? aObserver.domains : [aObserver.domain] ;
try {
for each (var domain in domains)
this.Prefs.addObserver(domain, aObserver, false);
}
catch(e) {
}
},
removePrefListener : function(aObserver)
{
var domains = ('domains' in aObserver) ? aObserver.domains : [aObserver.domain] ;
try {
for each (var domain in domains)
this.Prefs.removeObserver(domain, aObserver, false);
}
catch(e) {
}
}
};
})();
if (window != this) { // work as a JS Code Module
this.prefs = window['piro.sakura.ne.jp'].prefs;
}