aboutDialog.js
Go to the documentation of this file.
1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 #
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
8 #
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
12 # License.
13 #
14 # The Original Code is Mozilla Firebird about dialog.
15 #
16 # The Initial Developer of the Original Code is
17 # Blake Ross (blaker@netscape.com).
18 # Portions created by the Initial Developer are Copyright (C) 2002
19 # the Initial Developer. All Rights Reserved.
20 #
21 # Contributor(s):
22 # Ehsan Akhgari <ehsan.akhgari@gmail.com>
23 #
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the LGPL or the GPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
35 #
36 # ***** END LICENSE BLOCK ***** -->
37 
38 var gSelectedPage = 0;
39 
40 function init(aEvent)
41 {
42  if (aEvent.target != document)
43  return;
44 
45  var prefs = Components.classes["@mozilla.org/preferences-service;1"]
46  .getService(Components.interfaces.nsIPrefBranch);
47 
48  try {
49  var distroId = prefs.getCharPref("distribution.id");
50  if (distroId) {
51  var distroVersion = prefs.getCharPref("distribution.version");
52  var distroAbout = prefs.getComplexValue("distribution.about",
53  Components.interfaces.nsISupportsString);
54 
55  var distroField = document.getElementById("distribution");
56  distroField.value = distroAbout;
57  distroField.style.display = "block";
58 
59  var distroIdField = document.getElementById("distributionId");
60  distroIdField.value = distroId + " - " + distroVersion;
61  distroIdField.style.display = "block";
62  }
63  }
64  catch (e) {
65  // Pref is unset
66  }
67 
68  var userAgentField = document.getElementById("userAgent");
69  userAgentField.value = navigator.userAgent;
70 
71  var button = document.documentElement.getButton("extra2");
72  button.setAttribute("label", document.documentElement.getAttribute("creditslabel"));
73  button.setAttribute("accesskey", document.documentElement.getAttribute("creditsaccesskey"));
74  button.addEventListener("command", switchPage, false);
75 
76  var acceptButton = document.documentElement.getButton("accept");
77 #ifdef XP_UNIX
78  acceptButton.setAttribute("icon", "close");
79 #endif
80  acceptButton.focus();
81 
82 #ifdef XP_MACOSX
83  // it may not be sized at this point, and we need its width to calculate its position
84  window.sizeToContent();
85  window.moveTo((screen.availWidth / 2) - (window.outerWidth / 2), screen.availHeight / 5);
86 #endif
87 }
88 
89 function uninit(aEvent)
90 {
91  if (aEvent.target != document)
92  return;
93  var iframe = document.getElementById("creditsIframe");
94  iframe.setAttribute("src", "");
95 }
96 
97 function switchPage(aEvent)
98 {
99  var button = aEvent.target;
100  if (button.localName != "button")
101  return;
102 
103  var iframe = document.getElementById("creditsIframe");
104  if (gSelectedPage == 0) {
105  iframe.setAttribute("src", "chrome://browser/content/credits.xhtml");
106  button.setAttribute("label", document.documentElement.getAttribute("aboutlabel"));
107  button.setAttribute("accesskey", document.documentElement.getAttribute("aboutaccesskey"));
108  gSelectedPage = 1;
109  }
110  else {
111  iframe.setAttribute("src", "");
112  button.setAttribute("label", document.documentElement.getAttribute("creditslabel"));
113  button.setAttribute("accesskey", document.documentElement.getAttribute("creditsaccesskey"));
114  gSelectedPage = 0;
115  }
116  var modes = document.getElementById("modes");
117  modes.setAttribute("selectedIndex", gSelectedPage);
118 }
119 
function switchPage(aEvent)
Definition: aboutDialog.js:97
let window
var gSelectedPage
Definition: aboutDialog.js:38
var prefs
Definition: FeedWriter.js:1169
function init(aEvent)
Definition: aboutDialog.js:40
function uninit(aEvent)
Definition: aboutDialog.js:89