gecko-dev/suite/common/pref/pref-colors.xul

113 строки
5.4 KiB
Plaintext
Исходник Обычный вид История

1999-06-05 03:28:56 +04:00
<?xml version="1.0"?>
1999-08-10 06:48:56 +04:00
<!--
The contents of this file are subject to the Netscape 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/NPL/
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 Mozilla Communicator client code, released
March 31, 1998.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998-1999 Netscape Communications Corporation. All
Rights Reserved.
Contributor(s):
Ben Goodger <ben@netscape.com>
1999-08-10 06:48:56 +04:00
-->
1999-06-05 03:28:56 +04:00
2006-05-17 06:24:52 +04:00
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
2006-05-17 06:24:27 +04:00
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/pref/platformPrefOverlay.xul"?>
2006-05-17 06:24:35 +04:00
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-colors.dtd" >
2006-05-17 06:24:52 +04:00
<window xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
2006-05-17 06:24:52 +04:00
class="color-dialog"
title="&window.title;"
orient="vertical"
onload="parent.initPanel('chrome://communicator/content/pref/pref-colors.xul');">
1999-06-05 03:28:56 +04:00
<script type="application/x-javascript">
2006-05-17 06:24:52 +04:00
<![CDATA[
var _elementIDs = ["foregroundText", "background", "browserUseSystemColors", "unvisitedLinks", "visitedLinks", "browserUnderlineAnchors", "browserUseDocumentColors", "syntaxHighlight"];
2006-05-17 06:24:52 +04:00
]]>
</script>
<script type="application/x-javascript" src="chrome://communicator/content/pref/pref-colors.js"/>
1999-06-05 03:28:56 +04:00
<box class="box-smallheader" title="&lHeader;"/>
2006-05-17 06:24:52 +04:00
<box>
<titledbox orient="vertical" flex="1" id="pageColours">
<label value="&color;"/>
2006-05-17 06:24:52 +04:00
<box>
<text class="label" value="&textColor.label;" accesskey="&textColor.accesskey;" for="foregroundtextmenu"/>
<spring flex="1"/>
<colorpicker type="button" id="foregroundtextmenu" palettename="standard" onchange="setColorWell(this)"/>
<data id="foregroundText" pref="true" preftype="color" prefstring="browser.display.foreground_color" prefattribute="value" wsm_attributes="value"/>
2006-05-17 06:24:52 +04:00
</box>
<box style="margin-top: 5px">
<text class="label" value="&backgroundColor.label;" accesskey="&backgroundColor.accesskey;" for="backgroundmenu"/>
2006-05-17 06:24:52 +04:00
<spring flex="1"/>
<colorpicker type="button" id="backgroundmenu" palettename="standard" onchange="setColorWell(this)"/>
<data id="background" pref="true" preftype="color" prefstring="browser.display.background_color" prefattribute="value" wsm_attributes="value"/>
2006-05-17 06:24:52 +04:00
</box>
<separator class="thin"/>
<box autostretch="never">
<checkbox id="browserUseSystemColors" label="&useSystemColors.label;" accesskey="&useSystemColors.accesskey;"
pref="true" preftype="bool" prefstring="browser.display.use_system_colors" prefattribute="checked"/>
</box>
2006-05-17 06:24:52 +04:00
</titledbox>
2006-05-17 06:23:32 +04:00
2006-05-17 06:24:52 +04:00
<titledbox orient="vertical" flex="1">
<label value="&links;"/>
2006-05-17 06:24:52 +04:00
<box>
<text class="label" value="&linkColor.label;" accesskey="&linkColor.accesskey;" for="unvisitedlinkmenu"/>
<spring flex="1"/>
<colorpicker type="button" id="unvisitedlinkmenu" palettename="standard" onchange="setColorWell(this)"/>
<data id="unvisitedLinks" pref="true" preftype="string" prefstring="browser.anchor_color" prefattribute="value" wsm_attributes="value"/>
2006-05-17 06:24:52 +04:00
</box>
<box style="margin-top: 5px">
2006-05-17 06:24:52 +04:00
<text class="label" value="&visitedLinkColor.label;" accesskey="&visitedLinkColor.accesskey;" for="visitedlinkmenu"/>
<spring flex="1"/>
<colorpicker type="button" id="visitedlinkmenu" palettename="standard" onchange="setColorWell(this)"/>
<data id="visitedLinks" pref="true" preftype="string" prefstring="browser.visited_color" prefattribute="value" wsm_attributes="value"/>
2006-05-17 06:24:52 +04:00
</box>
<separator class="thin"/>
<box autostretch="never">
<checkbox id="browserUnderlineAnchors" label="&underlineLinks.label;" accesskey="&underlineLinks.accesskey;"
pref="true" preftype="bool" prefstring="browser.underline_anchors" prefattribute="checked"/>
</box>
2006-05-17 06:24:09 +04:00
</titledbox>
2006-05-17 06:24:52 +04:00
</box>
<titledbox orient="vertical">
<html>&someProvColors;</html>
2006-05-17 06:24:52 +04:00
<radiogroup id="browserUseDocumentColors" orient="vertical" autostretch="never"
pref="true" preftype="bool" prefstring="browser.display.use_document_colors"
prefattribute="value">
<radio group="browserUseDocumentColors" value="true" label="&alwaysUseDocumentColors.label;" accesskey="&alwaysUseDocumentColors.accesskey;"/>
<radio group="browserUseDocumentColors" value="false" label="&useMyColors.label;" accesskey="&useMyColors.accesskey;"/>
2006-05-17 06:24:52 +04:00
</radiogroup>
</titledbox>
2006-05-17 06:24:09 +04:00
<titledbox orient="vertical">
<label value="&viewsource;"/>
<box autostretch="never">
<checkbox id="syntaxHighlight" label="&syntaxHighlight.label;" accesskey="&syntaxHighlight.accesskey;"
pref="true" preftype="bool" prefstring="view_source.syntax_highlight" prefattribute="checked"/>
</box>
</titledbox>
</window>