mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
107 lines
3.6 KiB
XML
107 lines
3.6 KiB
XML
<?xml version="1.0"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
- You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/global.css"?>
|
|
|
|
<?xml-stylesheet href="chrome://mozapps/content/preferences/preferences.css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
|
|
<?xml-stylesheet
|
|
href="chrome://browser/skin/preferences/in-content/preferences.css"?>
|
|
<?xml-stylesheet
|
|
href="chrome://browser/content/preferences/handlers.css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/applications.css"?>
|
|
|
|
<!DOCTYPE page [
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
<!ENTITY % preferencesDTD SYSTEM
|
|
"chrome://browser/locale/preferences/preferences.dtd">
|
|
<!ENTITY % privacyDTD SYSTEM "chrome://browser/locale/preferences/privacy.dtd">
|
|
<!ENTITY % tabsDTD SYSTEM "chrome://browser/locale/preferences/tabs.dtd">
|
|
<!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
|
|
<!ENTITY % syncDTD SYSTEM "chrome://browser/locale/preferences/sync.dtd">
|
|
<!ENTITY % securityDTD SYSTEM
|
|
"chrome://browser/locale/preferences/security.dtd">
|
|
<!ENTITY % sanitizeDTD SYSTEM "chrome://browser/locale/sanitize.dtd">
|
|
<!ENTITY % mainDTD SYSTEM "chrome://browser/locale/preferences/main.dtd">
|
|
<!ENTITY % aboutHomeDTD SYSTEM "chrome://browser/locale/aboutHome.dtd">
|
|
<!ENTITY % contentDTD SYSTEM "chrome://browser/locale/preferences/content.dtd">
|
|
<!ENTITY % applicationsDTD SYSTEM
|
|
"chrome://browser/locale/preferences/applications.dtd">
|
|
<!ENTITY % advancedDTD SYSTEM
|
|
"chrome://browser/locale/preferences/advanced.dtd">
|
|
%brandDTD;
|
|
%preferencesDTD;
|
|
%privacyDTD;
|
|
%tabsDTD;
|
|
%syncBrandDTD;
|
|
%syncDTD;
|
|
%securityDTD;
|
|
%sanitizeDTD;
|
|
%mainDTD;
|
|
%aboutHomeDTD;
|
|
%contentDTD;
|
|
%applicationsDTD;
|
|
%advancedDTD;
|
|
]>
|
|
|
|
#ifdef XP_WIN
|
|
#define USE_WIN_TITLE_STYLE
|
|
#endif
|
|
#ifdef XP_OS2
|
|
#define USE_WIN_TITLE_STYLE
|
|
#endif
|
|
|
|
<page onload="init_all();"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
#ifdef USE_WIN_TITLE_STYLE
|
|
title="&prefWindow.titleWin;">
|
|
#else
|
|
title="&prefWindow.titleGNOME;">
|
|
#endif
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://browser/content/utilityOverlay.js"/>
|
|
<script type="application/javascript"
|
|
src="chrome://browser/content/preferences/in-content/preferences.js"/>
|
|
|
|
<stringbundle id="bundleBrand"
|
|
src="chrome://branding/locale/brand.properties"/>
|
|
<stringbundle id="bundlePreferences"
|
|
src="chrome://browser/locale/preferences/preferences.properties"/>
|
|
|
|
<stringbundleset id="appManagerBundleset">
|
|
<stringbundle id="appManagerBundle"
|
|
src="chrome://browser/locale/preferences/applicationManager.properties"/>
|
|
</stringbundleset>
|
|
|
|
<hbox id="header">
|
|
<toolbarbutton id="back-btn" class="nav-button header-button"
|
|
oncommand="cmd_back()" tooltiptext="&buttonBack.tooltip;"
|
|
disabled="true"/>
|
|
<toolbarbutton id="forward-btn" class="nav-button header-button"
|
|
oncommand="cmd_forward()" tooltiptext="&buttonForward.tooltip;"
|
|
disabled="true"/>
|
|
</hbox>
|
|
|
|
<hbox class="main-content" flex="1">
|
|
<prefpane flex="1" id="mainPrefPane">
|
|
#include landing.xul
|
|
#include main.xul
|
|
#include tabs.xul
|
|
#include privacy.xul
|
|
#include advanced.xul
|
|
#include applications.xul
|
|
#include content.xul
|
|
#include security.xul
|
|
#ifdef MOZ_SERVICES_SYNC
|
|
#include sync.xul
|
|
#endif
|
|
</prefpane>
|
|
</hbox>
|
|
|
|
</page>
|