scott%scott-macgregor.org 1c62218c6d Bug #284144 --> Consolidate the new preferences UI directory.
git-svn-id: svn://10.0.0.236/trunk@170688 18797224-902f-48f8-a5cc-f745e15eee43
2005-03-15 06:24:32 +00:00

204 lines
7.4 KiB
JavaScript

# -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
# 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 the Thunderbird Preferences System.
#
# The Initial Developer of the Original Code is Scott MacGregor.
# Portions created by the Initial Developer are Copyright (C) 2005
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Scott MacGregor <mscott@mozilla.org>
#
# 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 *****
var gGeneralPane = {
mPane: null,
mMapiBundle: null,
mBrandBundle: null,
mSound: null,
init: function ()
{
this.mPane = document.getElementById("paneGeneral");
this.mBrandBundle = document.getElementById("brandBundle");
this.mMapiBundle = document.getElementById("mapiBundle");
#ifdef XP_WIN
this.onReadDefaultMailPref();
this.onReadDefaultNewsPref();
this.onReadDefaultFeedPref();
#endif
#ifdef XP_MACOSX
document.getElementById("defaultClientBox").hidden = true;
#endif
#ifdef MOZ_WIDGET_GTK2
// first check whether GNOME is available. if it's not, hide the whole
// default mail/news app section.
var mapiReg;
try {
mapiReg = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
} catch (e) {}
if (!mapiReg)
document.getElementById("defaultClientBox").hidden = true;
#endif
},
#ifdef XP_WIN
onReadDefaultMailPref: function()
{
var mapiRegistry = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
document.getElementById('defaultMailClient').checked = mapiRegistry.isDefaultMailClient;
return mapiRegistry.isDefaultMailClient;
},
onWriteDefaultMailPref: function()
{
var mapiRegistry = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
var makeDefaultMailClient = document.getElementById('mail.checkDefaultMail').value;
if (mapiRegistry.isDefaultMailClient != makeDefaultMailClient)
mapiRegistry.isDefaultMailClient = makeDefaultMailClient;
},
onReadDefaultNewsPref: function()
{
var mapiRegistry = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
document.getElementById('defaultNewsClient').checked = mapiRegistry.isDefaultNewsClient;
return mapiRegistry.isDefaultNewsClient;
},
onWriteDefaultNewsPref: function()
{
var mapiRegistry = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
var makeDefaultNewsClient = document.getElementById('mail.checkDefaultNews').value;
if (mapiRegistry.isDefaultNewsClient != makeDefaultNewsClient)
mapiRegistry.isDefaultNewsClient = makeDefaultNewsClient;
},
onReadDefaultFeedPref: function()
{
var mapiRegistry = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
document.getElementById('defaultFeedClient').checked = mapiRegistry.isDefaultFeedClient;
return mapiRegistry.isDefaultFeedClient;
},
onWriteDefaultFeed: function()
{
var mapiRegistry = Components.classes["@mozilla.org/mapiregistry;1"].getService(Components.interfaces.nsIMapiRegistry);
var makeDefaultFeedClient = document.getElementById('mail.checkDefaultFeed').value;
if (mapiRegistry.isDefaultFeedClient != makeDefaultFeedClient)
mapiRegistry.isDefaultFeedClient = makeDefaultFeedClient;
},
#endif
#ifdef MOZ_WIDGET_GTK2
checkDefaultMailNow: function (isNews)
{
var mapiReg = Components.classes["@mozilla.org/mapiregistry;1"]
.getService(Components.interfaces.nsIMapiRegistry);
var brandShortName = this.mBrandBundle.getString("brandRealShortName");
var promptTitle = this.mMapiBundle.getFormattedString("dialogTitle",
[brandShortName]);
var promptMessage;
var IPS = Components.interfaces.nsIPromptService;
var prompt = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(IPS);
var isDefault;
var str;
if (isNews)
{
isDefault = mapiReg.isDefaultNewsClient;
str = "News";
}
else
{
isDefault = mapiReg.isDefaultMailClient;
str = "Mail";
}
if (!isDefault)
{
promptMessage = this.mMapiBundle.getFormattedString("setDefault" + str,
[brandShortName]);
var rv = prompt.confirmEx(window, promptTitle, promptMessage,
(IPS.BUTTON_TITLE_YES * IPS.BUTTON_POS_0) +
(IPS.BUTTON_TITLE_NO * IPS.BUTTON_POS_1),
null, null, null, null, { });
if (rv == 0)
{
if (isNews)
mapiReg.isDefaultNewsClient = true;
else
mapiReg.isDefaultMailClient = true;
}
}
else
{
promptMessage = this.mMapiBundle.getFormattedString("alreadyDefault" + str,
[brandShortName]);
prompt.alert(window, promptTitle, promptMessage);
}
},
#endif
startPageCheck: function()
{
document.getElementById("mailnewsStartPageUrl").disabled = !document.getElementById("mailnewsStartPageEnabled").checked;
},
setHomePageToDefaultPage: function ()
{
var prefService = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefService);
var pref = prefService.getDefaultBranch(null);
var url = pref.getComplexValue("mailnews.start_page.url",
Components.interfaces.nsIPrefLocalizedString).data;
var startPageUrlField = document.getElementById("mailnewsStartPageUrl");
startPageUrlField.value = url;
this.mPane.userChangedValue(startPageUrlField);
},
showConnections: function ()
{
document.documentElement.openSubDialog("chrome://messenger/content/preferences/connection.xul",
"", null);
},
showAdvancedSound: function()
{
document.documentElement.openSubDialog("chrome://messenger/content/preferences/notifications.xul",
"", null);
},
};