gecko-dev/editor/ui/dialogs/content/EdColorPicker.xul

97 строки
4.0 KiB
XML

<?xml version="1.0"?>
<!--
- 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):
-->
<?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
<!DOCTYPE window SYSTEM "chrome://editor/locale/EdColorPicker.dtd">
<window class="dialog"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload = "Startup()"
orient="vertical"
>
<script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
<script type="application/x-javascript" src="chrome://editor/content/EdColorPicker.js"/>
<script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
<script type="application/x-javascript" src="chrome://global/content/strres.js"/>
<broadcaster id="args" value=""/>
<spring id="location" offsetY="50" persist="offsetX offsetY"/>
<keyset id="dialogKeys"/>
<box id="TableOrCellGroup" valign="middle" autostretch="never" collapsed="true">
<text value="&background.label;"/>
<radiogroup id="1" orient="horizontal">
<radio group="1" id="TableRadio" label="&table.label;"/>
<radio group="1" id="CellRadio" label="&cell.label;"/>
</radiogroup>
</box>
<colorpicker id="ColorPicker" palettename="standard"
persist="palettename"
onselect="SelectColor();"/>
<!-- Web palette is not implemented???
<box valign="middle" autostretch="never">
<text class="label" value="&palette.label;"/>
<radio id="StandardPalette" label="&standardPalette.label;" oncommand="ChangePalette('standard')"/>
<radio id="WebPalette" label="&webPalette.label;" oncommand="ChangePalette('web')"/>
</box>
-->
<spring class="spacer"/>
<box orient="vertical" flex="1">
<stack valign="middle" autostretch="never">
<button id="LastPickedButton" class="dialog" label="&lastPickedColor.label;"
style="margin-left:0px; margin-right: 0px;"
onclick="SelectLastPickedColor();"/>
<box style="margin-left: 5px" mousethrough="always">
<box orient="vertical" autostretch="never">
<spring flex="1"/>
<spring id="LastPickedColor"
LastTextColor="" LastBackgroundColor=""
persist="LastTextColor LastBackgroundColor"/>
<spring flex="1"/>
</box>
<spring flex="1"/>
</box>
</stack>
<text class="label" value="&setColor1.label;"/>
<text class="label" value="&setColor2.label;"/>
<text class="label" value="&setColorExample.label;"/>
<box valign="middle" autostretch="never" flex="1=">
<textbox id="ColorInput" style="width: 8em" oninput="SetColorSwatch()"/>
<spring flex="1"/>
<spring id="ColorPickerSwatch"/>
<spring flex="1"/>
<button id="DefaultColorButton" class="dialog" label="&default.label;"
style="margin-right:0px;" oncommand="RemoveColor()"/>
</box>
</box>
<separator class="groove"/>
<!-- from global dialogOverlay -->
<box id="okCancelButtons"/>
</window>