home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / mail.xpi / bin / chrome / messenger.jar / content / messenger / newFolderDialog.xul < prev    next >
Extensible Markup Language  |  2001-08-31  |  3KB  |  87 lines

  1. <?xml version="1.0"?>
  2. <!--
  3.   - The contents of this file are subject to the Netscape Public
  4.   - License Version 1.1 (the "License"); you may not use this file
  5.   - except in compliance with the License. You may obtain a copy of
  6.   - the License at http://www.mozilla.org/NPL/
  7.   -
  8.   - Software distributed under the License is distributed on an "AS
  9.   - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.   - implied. See the License for the specific language governing
  11.   - rights and limitations under the License.
  12.   -
  13.   - The Original Code is Mozilla Communicator client code, released
  14.   - March 31, 1998.
  15.   -
  16.   - The Initial Developer of the Original Code is Netscape
  17.   - Communications Corporation. Portions created by Netscape are
  18.   - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.   - Rights Reserved.
  20.   -
  21.   - Contributor(s):
  22.   -   Fabian Guisset <hidday@geocities.com>
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://messenger/skin/dialogs.css" type="text/css"?>
  26.  
  27. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  28. <?xul-overlay href="chrome://messenger/content/msgFolderPickerOverlay.xul"?>
  29.  
  30. <!DOCTYPE window SYSTEM "chrome://messenger/locale/newFolderDialog.dtd">
  31.  
  32. <window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  33.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.         title="&newFolderDialog.title;"
  35.         orient="vertical"
  36.         class="dialog"
  37.         onload="onLoad();">
  38.  
  39.   <stringbundleset id="stringbundleset"/>
  40.   <script type="application/x-javascript" src="chrome://messenger/content/mailCommands.js"/>
  41.   <script type="application/x-javascript" src="chrome://messenger/content/newFolderDialog.js"/>
  42.  
  43.   <keyset id="dialogKeys"/>
  44.  
  45.   <vbox>
  46.  
  47.     <spring flex="1"/>
  48.  
  49.     <text value="&name.label;" class="label" accesskey="&name.accesskey;" for="name"/>
  50.     <textbox tabindex="0" id="name" oninput="doEnabling();"/>
  51.  
  52.     <separator/>
  53.  
  54.     <text value="&description.label;" class="label" accesskey="&description.accesskey;" for="msgNewFolderPicker"/>
  55.  
  56.     <hbox>
  57.       <menu id="msgNewFolderPicker" oncommand="doEnabling();" crop="right" flex="1"/>
  58.       <spring flex="1"/>
  59.     </hbox>
  60.  
  61.     <vbox hidden="true" id="newFolderTypeBox">
  62.  
  63.       <separator class="thin"/>
  64.  
  65.       <text value="&folderRestriction1.label;"/>
  66.       <text value="&folderRestriction2.label;"/>
  67.  
  68.       <separator class="thin"/>
  69.  
  70.       <radiogroup id="folderGroup">
  71.         <radio group="folderGroup" oncommand="onFoldersOnly();" label="&foldersOnly.label;"/>
  72.         <radio group="folderGroup" oncommand="onMessagesOnly();" label="&messagesOnly.label;" checked="true"/>
  73.         <spring flex="100%"/>
  74.       </radiogroup>
  75.  
  76.     </vbox>
  77.  
  78.     <spring flex="1"/>
  79.  
  80.     <separator/>
  81.  
  82.     <hbox id="okCancelButtonsRight"/>
  83.  
  84.   </vbox>
  85.  
  86. </window>
  87.