diff options
Diffstat (limited to 'comm/suite/editor/components/dialogs/content/EdImageProps.xhtml')
-rw-r--r-- | comm/suite/editor/components/dialogs/content/EdImageProps.xhtml | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/comm/suite/editor/components/dialogs/content/EdImageProps.xhtml b/comm/suite/editor/components/dialogs/content/EdImageProps.xhtml new file mode 100644 index 0000000000..11d7d03026 --- /dev/null +++ b/comm/suite/editor/components/dialogs/content/EdImageProps.xhtml @@ -0,0 +1,116 @@ +<?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://editor/skin/editor.css" type="text/css"?> +<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?> + +<!DOCTYPE dialog [ +<!ENTITY % edImageProperties SYSTEM "chrome://editor/locale/EditorImageProperties.dtd"> +%edImageProperties; +<!ENTITY % composeEditorOverlayDTD SYSTEM "chrome://messenger/locale/messengercompose/mailComposeEditorOverlay.dtd"> +%composeEditorOverlayDTD; +<!ENTITY % edDialogOverlay SYSTEM "chrome://editor/locale/EdDialogOverlay.dtd"> +%edDialogOverlay; +]> + +<!-- dialog containing a control requiring initial setup --> +<dialog id="imageDlg" title="&windowTitle.label;" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml" + onload="Startup()" + buttons="accept,cancel"> + + <script src="chrome://editor/content/editorUtilities.js"/> + <script src="chrome://editor/content/EdDialogCommon.js"/> + <script src="chrome://editor/content/EdImageProps.js"/> + <script src="chrome://editor/content/EdImageDialog.js"/> + <script src="chrome://editor/content/EdImageLinkLoader.js"/> + + <spacer id="location" offsetY="50" persist="offsetX offsetY"/> + + <tabbox id="TabBox"> + <tabs flex="1"> + <tab id="imageLocationTab" label="&imageLocationTab.label;"/> + <tab id="imageDimensionsTab" label="&imageDimensionsTab.label;"/> + <tab id="imageAppearanceTab" label="&imageAppearanceTab.label;"/> + <tab id="imageLinkTab" label="&imageLinkTab.label;"/> + </tabs> + <tabpanels> +#include edImage.inc.xhtml + <vbox> + <spacer class="spacer"/> + <vbox id="LinkLocationBox"> + <label control="hrefInput" + accesskey="&LinkURLEditField2.accessKey;" + width="1">&LinkURLEditField2.label;</label> + <textbox id="hrefInput" type="text" + class="uri-element padded" oninput="ChangeLinkLocation();"/> + <hbox align="center"> + <checkbox id="MakeRelativeLink" + for="hrefInput" + label="&makeUrlRelative.label;" + accesskey="&makeUrlRelative.accessKey;" + oncommand="MakeInputValueRelativeOrAbsolute(this);" + tooltiptext="&makeUrlRelative.tooltip;"/> + <spacer flex="1"/> + <button label="&chooseFileLinkButton.label;" accesskey="&chooseFileLinkButton.accessKey;" + oncommand="chooseLinkFile();"/> + </hbox> + </vbox> + <spacer class="spacer"/> + <hbox> + <checkbox id="showLinkBorder" + label="&showImageLinkBorder.label;" + accesskey="&showImageLinkBorder.accessKey;" + oncommand="ToggleShowLinkBorder();"/> + <spacer flex="1"/> + <button id="LinkAdvancedEditButton" + label="&LinkAdvancedEditButton.label;" + accesskey="&LinkAdvancedEditButton.accessKey;" + tooltiptext="&LinkAdvancedEditButton.tooltip;" + oncommand="onLinkAdvancedEdit();"/> + </hbox> + </vbox> + </tabpanels> + </tabbox> + + <hbox align="end"> + <groupbox id="imagePreview" orient="horizontal" flex="1"> + <hbox class="groupbox-title"> + <label class="header">&previewBox.label;</label> + </hbox> + <hbox id="preview-image-box" align="center"> + <spacer flex="1"/> + <description id="preview-image-holder"/> + <spacer flex="1"/> + </hbox> + <vbox id="PreviewSize" collapsed="true"> + <spacer flex="1"/> + <label value="&actualSize.label;"/> + <hbox> + <label value="&widthEditField.label;"/> + <spacer flex="1"/> + <label id="PreviewWidth"/> + </hbox> + <hbox> + <label value="&heightEditField.label;"/> + <spacer flex="1"/> + <label id="PreviewHeight"/> + </hbox> + <spacer flex="1"/> + </vbox> + </groupbox> + + <vbox id="AdvancedEdit"> + <hbox flex="1" style="margin-top: 0.2em" align="center"> + <!-- This will right-align the button --> + <spacer flex="1"/> + <button id="AdvancedEditButton1" oncommand="onAdvancedEdit()" label="&AdvancedEditButton.label;" + accesskey="&AdvancedEditButton.accessKey;" tooltiptext="&AdvancedEditButton.tooltip;"/> + </hbox> + </vbox> + </hbox> + <separator class="groove"/> + +</dialog> |