home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / comm.jar / content / editor / EdLinkProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-09-24  |  3.9 KB  |  94 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Netscape Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/NPL/
  8.    -  
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    -  
  14.    - The Original Code is Mozilla Communicator client code, released
  15.    - March 31, 1998.
  16.    - 
  17.    - The Initial Developer of the Original Code is Netscape
  18.    - Communications Corporation. Portions created by Netscape are
  19.    - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  26. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  27.  
  28. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?> 
  29. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  30. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  31.  
  32. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorLinkProperties.dtd">
  33.  
  34. <window title="&windowTitle.label;"
  35.    class="dialog"
  36.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  37.    xmlns:html="http://www.w3.org/1999/xhtml"
  38.    onload = "Startup()"
  39.    orient="vertical" >
  40.  
  41.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  42.   <script type="application/x-javascript" src="chrome://editor/content/EdLinkProps.js"/>
  43.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  44.   <script type="application/x-javascript" src="chrome://help/content/help.js"/>
  45.  
  46.   <broadcaster id="args" value=""/>
  47.   <spring id="location" offsetY="50" persist="offsetX offsetY"/>
  48.   <keyset id="dialogKeys"/>
  49.   <popupset id="aTooltipSet" />
  50.  
  51.   <vbox style="min-width: 20em">
  52.     <groupbox orient="vertical"><label id="linkTextCaption"/>
  53.       <text class="label" id="linkTextMessage"/> 
  54.         <textbox id="linkTextInput" flex="1"/>
  55.     </groupbox>
  56.  
  57.     <groupbox orient="vertical"><label value="&LinkURLBox.label;"/>
  58.       <text class="label" value="&LinkURLEditField.label;"/>
  59.       <hbox autostretch="never" valign="middle">
  60.         <textbox id="hrefInput" flex="1" style="min-width: 18em" oninput="ChangeLocation()"/>
  61.       </hbox>
  62.       <hbox autostretch="never" valign="middle">
  63.         <!-- from EdDialogOverlay.xul 'for' identifies the textfield to get URL from -->
  64.         <checkbox id="MakeRelativeCheckbox" for="hrefInput"/>
  65.         <spring flex="1"/>
  66.         <button class="dialog" id="ChooseFile"/>
  67.       </hbox>
  68.       <html class="wrap" flex="1" id="RemoveLinkMsg" style="margin-bottom: 7px">&RemoveLinkMsg.label;</html>
  69.       <spring class="smallspacer"/>
  70.       <hbox autostretch="never">
  71.         <button class="dialog" id="MoreFewerButton" oncommand="onMoreFewer()" persist="more"/>
  72.       </hbox>
  73.       <spring class="spacer"/>
  74.       <vbox id="MoreSection">
  75.         <spring class="spacer"/>
  76.         <text class="label" value="&NamedAnchorMsg.label;"/>
  77.         <tree rows="4" class="list" id="NamedAnchorList" onselect="SelectNamedAnchor()">
  78.           <treecolgroup><treecol flex="1"/></treecolgroup>
  79.         </tree>
  80.         <spring class="spacer"/>
  81.         <text class="label" value="&HeadingMsg.label;"/>
  82.         <tree rows="4" class="list" id="HeadingsList" onselect="SelectHeading()">
  83.           <treecolgroup><treecol flex="1"/></treecolgroup>
  84.         </tree>
  85.         <text class="label" flex="1" value="&HeadingMsg2.label;"/>
  86.       </vbox>
  87.     </groupbox>
  88.   </vbox>
  89.   <!-- from EdDialogOverlay -->
  90.   <vbox id="AdvancedEdit"/>
  91.   <!-- from global dialogOverlay -->
  92.   <hbox id="okCancelHelpButtonsRight"/> 
  93. </window>
  94.