2010-06-01 13:45:04 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is MozMill Test code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Henrik Skupin <hskupin@mozilla.com>
|
|
|
|
* Clint Talbert <ctalbert@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @fileoverview
|
|
|
|
* The PrefsAPI adds support for preferences related functions. It gives access
|
|
|
|
* to the preferences system and allows to handle the preferences dialog
|
|
|
|
*
|
|
|
|
* @version 1.0.1
|
|
|
|
*/
|
|
|
|
|
|
|
|
var MODULE_NAME = 'PrefsAPI';
|
|
|
|
|
|
|
|
const RELATIVE_ROOT = '.'
|
2010-09-17 17:18:06 -07:00
|
|
|
const MODULE_REQUIRES = ['ModalDialogAPI', 'UtilsAPI'];
|
2010-06-01 13:45:04 -07:00
|
|
|
|
|
|
|
const gTimeout = 5000;
|
|
|
|
|
|
|
|
// Preferences dialog element templates
|
|
|
|
const PREF_DIALOG_BUTTONS = '/{"type":"prefwindow"}/anon({"anonid":"dlg-buttons"})';
|
|
|
|
const PREF_DIALOG_DECK = '/{"type":"prefwindow"}/anon({"class":"paneDeckContainer"})/anon({"anonid":"paneDeck"})';
|
|
|
|
const PREF_DIALOG_SELECTOR = '/{"type":"prefwindow"}/anon({"orient":"vertical"})/anon({"anonid":"selector"})';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param {MozMillController} controller
|
|
|
|
* MozMill controller of the browser window to operate on.
|
|
|
|
*/
|
|
|
|
function preferencesDialog(controller)
|
|
|
|
{
|
|
|
|
this._controller = controller;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Preferences dialog object to simplify the access to this dialog
|
|
|
|
*/
|
|
|
|
preferencesDialog.prototype = {
|
|
|
|
/**
|
|
|
|
* Returns the MozMill controller
|
|
|
|
*
|
|
|
|
* @returns Mozmill controller
|
|
|
|
* @type {MozMillController}
|
|
|
|
*/
|
|
|
|
get controller() {
|
|
|
|
return this._controller;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the currently selected panel
|
|
|
|
*
|
|
|
|
* @returns The panel element
|
|
|
|
* @type {ElemBase}
|
|
|
|
*/
|
|
|
|
get selectedPane() {
|
|
|
|
return this.getElement({type: "deck_pane"});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the given pane id
|
|
|
|
*/
|
|
|
|
get paneId() {
|
|
|
|
// Check if the selector and the pane are consistent
|
|
|
|
var selector = this.getElement({type: "selector"});
|
|
|
|
|
|
|
|
this._controller.waitForEval("subject.selector.getAttribute('pane') == subject.dlg.selectedPane.getNode().id", gTimeout, 100,
|
|
|
|
{selector: selector.getNode().selectedItem, dlg: this});
|
|
|
|
|
|
|
|
return this.selectedPane.getNode().id;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the given pane by id
|
|
|
|
*
|
|
|
|
* @param {string} id of the pane
|
|
|
|
*/
|
|
|
|
set paneId(id) {
|
|
|
|
var button = this.getElement({type: "selector_button", value: id});
|
|
|
|
this._controller.waitThenClick(button, gTimeout);
|
|
|
|
|
|
|
|
// Check if the correct selector is selected
|
|
|
|
var selector = this.getElement({type: "selector"});
|
|
|
|
this._controller.waitForEval("subject.selector.getAttribute('pane') == subject.newPane", gTimeout, 100,
|
|
|
|
{selector: selector.getNode().selectedItem, newPane: id});
|
|
|
|
return this.paneId;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the preferences dialog
|
|
|
|
*
|
|
|
|
* @param {MozMillController} controller
|
|
|
|
* MozMillController of the window to operate on
|
|
|
|
* @param {boolean} saveChanges
|
|
|
|
* (Optional) If true the OK button is clicked on Windows which saves
|
|
|
|
* the changes. On OS X and Linux changes are applied immediately
|
|
|
|
*/
|
|
|
|
close : function preferencesDialog_close(saveChanges) {
|
|
|
|
saveChanges = (saveChanges == undefined) ? false : saveChanges;
|
|
|
|
|
|
|
|
if (mozmill.isWindows) {
|
|
|
|
var button = this.getElement({type: "button", subtype: (saveChanges ? "accept" : "cancel")});
|
|
|
|
this._controller.click(button);
|
|
|
|
} else {
|
|
|
|
this._controller.keypress(null, 'VK_ESCAPE', {});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-09-17 17:18:06 -07:00
|
|
|
/**
|
|
|
|
* Gets all the needed external DTD urls as an array
|
|
|
|
*
|
|
|
|
* @returns Array of external DTD urls
|
|
|
|
* @type [string]
|
|
|
|
*/
|
|
|
|
getDtds : function preferencesDialog_getDtds() {
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
2010-06-01 13:45:04 -07:00
|
|
|
/**
|
|
|
|
* Retrieve an UI element based on the given spec
|
|
|
|
*
|
|
|
|
* @param {object} spec
|
|
|
|
* Information of the UI element which should be retrieved
|
|
|
|
* type: General type information
|
|
|
|
* subtype: Specific element or property
|
|
|
|
* value: Value of the element or property
|
|
|
|
* @returns Element which has been created
|
|
|
|
* @type {ElemBase}
|
|
|
|
*/
|
|
|
|
getElement : function aboutSessionRestore_getElement(spec) {
|
|
|
|
var elem = null;
|
|
|
|
|
|
|
|
switch(spec.type) {
|
|
|
|
case "button":
|
|
|
|
elem = new elementslib.Lookup(this._controller.window.document, PREF_DIALOG_BUTTONS +
|
|
|
|
'/{"dlgtype":"' + spec.subtype + '"}');
|
|
|
|
break;
|
|
|
|
case "deck":
|
|
|
|
elem = new elementslib.Lookup(this._controller.window.document, PREF_DIALOG_DECK);
|
|
|
|
break;
|
|
|
|
case "deck_pane":
|
|
|
|
var deck = this.getElement({type: "deck"}).getNode();
|
|
|
|
|
|
|
|
// XXX: Bug 390724 - selectedPane is broken. So iterate through all elements
|
|
|
|
var panel = deck.boxObject.firstChild;
|
|
|
|
for (var ii = 0; ii < deck.selectedIndex; ii++)
|
|
|
|
panel = panel.nextSibling;
|
|
|
|
|
|
|
|
elem = new elementslib.Elem(panel);
|
|
|
|
break;
|
|
|
|
case "selector":
|
|
|
|
elem = new elementslib.Lookup(this._controller.window.document, PREF_DIALOG_SELECTOR);
|
|
|
|
break;
|
|
|
|
case "selector_button":
|
|
|
|
elem = new elementslib.Lookup(this._controller.window.document, PREF_DIALOG_SELECTOR +
|
|
|
|
'/{"pane":"' + spec.value + '"}');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(arguments.callee.name + ": Unknown element type - " + spec.type);
|
|
|
|
}
|
|
|
|
|
|
|
|
return elem;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Preferences object to simplify the access to the nsIPrefBranch.
|
|
|
|
*/
|
|
|
|
var preferences = {
|
2010-09-17 17:18:06 -07:00
|
|
|
_prefService : Cc["@mozilla.org/preferences-service;1"].
|
|
|
|
getService(Ci.nsIPrefService),
|
2010-06-01 13:45:04 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use branch to access low level functions of nsIPrefBranch
|
|
|
|
*
|
|
|
|
* @return Instance of the preferences branch
|
|
|
|
* @type nsIPrefBranch
|
|
|
|
*/
|
2010-09-17 17:18:06 -07:00
|
|
|
get prefBranch() {
|
|
|
|
return this._prefService.QueryInterface(Ci.nsIPrefBranch);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use defaultPrefBranch to access low level functions of the default branch
|
|
|
|
*
|
|
|
|
* @return Instance of the preferences branch
|
|
|
|
* @type nsIPrefBranch
|
|
|
|
*/
|
|
|
|
get defaultPrefBranch() {
|
|
|
|
return this._prefService.getDefaultBranch("");
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use prefService to access low level functions of nsIPrefService
|
|
|
|
*
|
|
|
|
* @return Instance of the pref service
|
|
|
|
* @type nsIPrefService
|
|
|
|
*/
|
|
|
|
get prefService() {
|
|
|
|
return this._prefService;
|
2010-06-01 13:45:04 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear a user set preference
|
|
|
|
*
|
|
|
|
* @param {string} prefName
|
|
|
|
* The user-set preference to clear
|
|
|
|
* @return False if the preference had the default value
|
|
|
|
* @type boolean
|
|
|
|
**/
|
|
|
|
clearUserPref : function preferences_clearUserPref(prefName) {
|
|
|
|
try {
|
2010-09-17 17:18:06 -07:00
|
|
|
this.prefBranch.clearUserPref(prefName);
|
2010-06-01 13:45:04 -07:00
|
|
|
return true;
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the value of an individual preference.
|
|
|
|
*
|
|
|
|
* @param {string} prefName
|
|
|
|
* The preference to get the value of.
|
|
|
|
* @param {boolean/number/string} defaultValue
|
|
|
|
* The default value if preference cannot be found.
|
2010-09-17 17:18:06 -07:00
|
|
|
* @param {boolean/number/string} defaultBranch
|
|
|
|
* If true the value will be read from the default branch (optional)
|
|
|
|
* @param {string} interfaceType
|
|
|
|
* Interface to use for the complex value (optional)
|
|
|
|
* (nsILocalFile, nsISupportsString, nsIPrefLocalizedString)
|
|
|
|
*
|
2010-06-01 13:45:04 -07:00
|
|
|
* @return The value of the requested preference
|
2010-09-17 17:18:06 -07:00
|
|
|
* @type boolean/int/string/complex
|
2010-06-01 13:45:04 -07:00
|
|
|
*/
|
2010-09-17 17:18:06 -07:00
|
|
|
getPref : function preferences_getPref(prefName, defaultValue, defaultBranch,
|
|
|
|
interfaceType) {
|
2010-06-01 13:45:04 -07:00
|
|
|
try {
|
2010-09-17 17:18:06 -07:00
|
|
|
branch = defaultBranch ? this.defaultPrefBranch : this.prefBranch;
|
|
|
|
|
|
|
|
// If interfaceType has been set, handle it differently
|
|
|
|
if (interfaceType != undefined) {
|
|
|
|
return branch.getComplexValue(prefName, interfaceType);
|
|
|
|
}
|
|
|
|
|
2010-06-01 13:45:04 -07:00
|
|
|
switch (typeof defaultValue) {
|
|
|
|
case ('boolean'):
|
2010-09-17 17:18:06 -07:00
|
|
|
return branch.getBoolPref(prefName);
|
2010-06-01 13:45:04 -07:00
|
|
|
case ('string'):
|
2010-09-17 17:18:06 -07:00
|
|
|
return branch.getCharPref(prefName);
|
2010-06-01 13:45:04 -07:00
|
|
|
case ('number'):
|
2010-09-17 17:18:06 -07:00
|
|
|
return branch.getIntPref(prefName);
|
2010-06-01 13:45:04 -07:00
|
|
|
default:
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
} catch(e) {
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value of an individual preference.
|
|
|
|
*
|
|
|
|
* @param {string} prefName
|
|
|
|
* The preference to set the value of.
|
2010-09-17 17:18:06 -07:00
|
|
|
* @param {boolean/number/string/complex} value
|
2010-06-01 13:45:04 -07:00
|
|
|
* The value to set the preference to.
|
2010-09-17 17:18:06 -07:00
|
|
|
* @param {string} interfaceType
|
|
|
|
* Interface to use for the complex value
|
|
|
|
* (nsILocalFile, nsISupportsString, nsIPrefLocalizedString)
|
2010-06-01 13:45:04 -07:00
|
|
|
*
|
|
|
|
* @return Returns if the value was successfully set.
|
|
|
|
* @type boolean
|
|
|
|
*/
|
2010-09-17 17:18:06 -07:00
|
|
|
setPref : function preferences_setPref(prefName, value, interfaceType) {
|
2010-06-01 13:45:04 -07:00
|
|
|
try {
|
|
|
|
switch (typeof value) {
|
|
|
|
case ('boolean'):
|
2010-09-17 17:18:06 -07:00
|
|
|
this.prefBranch.setBoolPref(prefName, value);
|
2010-06-01 13:45:04 -07:00
|
|
|
break;
|
|
|
|
case ('string'):
|
2010-09-17 17:18:06 -07:00
|
|
|
this.prefBranch.setCharPref(prefName, value);
|
2010-06-01 13:45:04 -07:00
|
|
|
break;
|
|
|
|
case ('number'):
|
2010-09-17 17:18:06 -07:00
|
|
|
this.prefBranch.setIntPref(prefName, value);
|
2010-06-01 13:45:04 -07:00
|
|
|
break;
|
|
|
|
default:
|
2010-09-17 17:18:06 -07:00
|
|
|
this.prefBranch.setComplexValue(prefName, interfaceType, value);
|
2010-06-01 13:45:04 -07:00
|
|
|
}
|
|
|
|
} catch(e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the preferences dialog and call the given handler
|
|
|
|
*
|
|
|
|
* @param {function} callback
|
|
|
|
* The callback handler to use to interact with the preference dialog
|
|
|
|
* @param {function} launcher
|
|
|
|
* (Optional) A callback handler to launch the preference dialog
|
|
|
|
*/
|
|
|
|
function openPreferencesDialog(callback, launcher)
|
|
|
|
{
|
|
|
|
if(!callback)
|
|
|
|
throw new Error("No callback given for Preferences Dialog");
|
|
|
|
|
|
|
|
if (mozmill.isWindows) {
|
|
|
|
// Preference dialog is modal on windows, set up our callback
|
|
|
|
var md = collector.getModule('ModalDialogAPI');
|
|
|
|
var prefModal = new md.modalDialog(callback);
|
|
|
|
prefModal.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Launch the preference dialog
|
|
|
|
if (launcher) {
|
|
|
|
launcher();
|
|
|
|
} else {
|
2010-09-17 17:18:06 -07:00
|
|
|
mozmill.getPreferencesController();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the window type of the preferences window depending on the application
|
|
|
|
var prefWindowType = null;
|
|
|
|
switch (mozmill.Application) {
|
|
|
|
case "Thunderbird":
|
|
|
|
prefWindowType = "Mail:Preferences";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
prefWindowType = "Browser:Preferences";
|
2010-06-01 13:45:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the dialog is not modal, run the callback directly
|
|
|
|
if (!mozmill.isWindows) {
|
2010-09-17 17:18:06 -07:00
|
|
|
var utilsAPI = collector.getModule('UtilsAPI');
|
|
|
|
utilsAPI.handleWindow("type", prefWindowType, callback);
|
2010-06-01 13:45:04 -07:00
|
|
|
}
|
|
|
|
}
|