browser/components/preferences/preferences.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
michael@0 4 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 5 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 7
michael@0 8 <?xml-stylesheet href="chrome://global/skin/global.css"?>
michael@0 9 <?xml-stylesheet href="chrome://mozapps/content/preferences/preferences.css"?>
michael@0 10 <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
michael@0 11
michael@0 12 <!-- XXX This should be in applications.xul, but bug 393953 means putting it
michael@0 13 - there causes the Applications pane not to work the first time you open
michael@0 14 - the Preferences dialog in a browsing session, so we work around the problem
michael@0 15 - by putting it here instead.
michael@0 16 -->
michael@0 17 <?xml-stylesheet href="chrome://browser/content/preferences/handlers.css"?>
michael@0 18 <?xml-stylesheet href="chrome://browser/skin/preferences/applications.css"?>
michael@0 19
michael@0 20 <!DOCTYPE prefwindow [
michael@0 21 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
michael@0 22 <!ENTITY % preferencesDTD SYSTEM "chrome://browser/locale/preferences/preferences.dtd">
michael@0 23 %brandDTD;
michael@0 24 %preferencesDTD;
michael@0 25 ]>
michael@0 26
michael@0 27 #ifdef XP_WIN
michael@0 28 #define USE_WIN_TITLE_STYLE
michael@0 29 #endif
michael@0 30
michael@0 31 #ifdef XP_MACOSX
michael@0 32 <?xul-overlay href="chrome://browser/content/macBrowserOverlay.xul"?>
michael@0 33 #endif
michael@0 34
michael@0 35 <prefwindow type="prefwindow"
michael@0 36 id="BrowserPreferences"
michael@0 37 windowtype="Browser:Preferences"
michael@0 38 ondialoghelp="openPrefsHelp()"
michael@0 39 #ifdef USE_WIN_TITLE_STYLE
michael@0 40 title="&prefWindow.titleWin;"
michael@0 41 #else
michael@0 42 #ifdef XP_UNIX
michael@0 43 #ifndef XP_MACOSX
michael@0 44 title="&prefWindow.titleGNOME;"
michael@0 45 #endif
michael@0 46 #endif
michael@0 47 #endif
michael@0 48 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 49 #ifdef USE_WIN_TITLE_STYLE
michael@0 50 style="&prefWinMinSize.styleWin2;">
michael@0 51 #else
michael@0 52 #ifdef XP_MACOSX
michael@0 53 style="&prefWinMinSize.styleMac;">
michael@0 54 #else
michael@0 55 style="&prefWinMinSize.styleGNOME;">
michael@0 56 #endif
michael@0 57 #endif
michael@0 58
michael@0 59 <script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/>
michael@0 60
michael@0 61 <stringbundle id="bundleBrand" src="chrome://branding/locale/brand.properties"/>
michael@0 62 <stringbundle id="bundlePreferences"
michael@0 63 src="chrome://browser/locale/preferences/preferences.properties"/>
michael@0 64
michael@0 65 <prefpane id="paneMain" label="&paneGeneral.title;"
michael@0 66 src="chrome://browser/content/preferences/main.xul"/>
michael@0 67 <prefpane id="paneTabs" label="&paneTabs.title;"
michael@0 68 src="chrome://browser/content/preferences/tabs.xul"/>
michael@0 69 <prefpane id="paneContent" label="&paneContent.title;"
michael@0 70 src="chrome://browser/content/preferences/content.xul"/>
michael@0 71 <prefpane id="paneApplications" label="&paneApplications.title;"
michael@0 72 src="chrome://browser/content/preferences/applications.xul"/>
michael@0 73 <prefpane id="panePrivacy" label="&panePrivacy.title;"
michael@0 74 src="chrome://browser/content/preferences/privacy.xul"/>
michael@0 75 <prefpane id="paneSecurity" label="&paneSecurity.title;"
michael@0 76 src="chrome://browser/content/preferences/security.xul"/>
michael@0 77 #ifdef MOZ_SERVICES_SYNC
michael@0 78 <prefpane id="paneSync" label="&paneSync.title;"
michael@0 79 src="chrome://browser/content/preferences/sync.xul"/>
michael@0 80 #endif
michael@0 81 <prefpane id="paneAdvanced" label="&paneAdvanced.title;"
michael@0 82 src="chrome://browser/content/preferences/advanced.xul"/>
michael@0 83
michael@0 84 #ifdef XP_MACOSX
michael@0 85 #include ../../base/content/browserMountPoints.inc
michael@0 86 #endif
michael@0 87
michael@0 88 </prefwindow>
michael@0 89

mercurial