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

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?>
  4.  
  5. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  6.  
  7. <!DOCTYPE window SYSTEM "chrome://messenger/locale/am-main.dtd" >
  8.  
  9. <window xmlns:html="http://www.w3.org/1999/xhtml"
  10.      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.      flex="1" class="color-dialog" 
  12.      onload="parent.onPanelLoaded('am-main.xul');"
  13.      orient="vertical">
  14.  
  15.     <stringbundle id="bundle_prefutilities" src="chrome://communicator/locale/pref/prefutilities.properties"/>
  16.     <script type="application/x-javascript" src="chrome://messenger/content/am-main.js"/>
  17.  
  18.     <hbox class="box-smallheader" title="&accountTitle.label;"/>
  19.     
  20.     <html>&accountSettingsDesc.label;</html>
  21.     <hbox autostretch="never">
  22.       <text class="label" value="&accountName.label;" for="server.prettyName"/>
  23.       <textbox wsm_persist="true" size="30" id="server.prettyName" flex="1"
  24.                pref="true" preftype="string" prefattribute="value"
  25.                prefstring="mail.server.%serverkey%.name"/>
  26.     </hbox>
  27.     
  28.     <separator class="thin"/>
  29.     
  30.     <groupbox orient="vertical" flex="1" style="width: 20em !important;">
  31.       <label value="&identityTitle.label;"/>
  32.       <html>&identityDesc.label;</html>
  33.       <separator class="thin"/>
  34.       <grid flex="1">
  35.         <columns>
  36.           <column/>
  37.           <column flex="1"/>
  38.         </columns>
  39.         <rows>
  40.           <row autostretch="never">
  41.             <text class="label" value="&name.label;" for="identity.fullName"/>
  42.             <textbox wsm_persist="true" id="identity.fullName" size="30"
  43.                      pref="true" preftype="string" prefattribute="value"
  44.                      prefstring="mail.identity.%identitykey%.fullName"/>
  45.           </row>
  46.           <row autostretch="never">
  47.             <text class="label" value="&email.label;" for="identity.email"/>
  48.             <textbox wsm_persist="true" id="identity.email" 
  49.                      pref="true" preftype="string" prefattribute="value"
  50.                      prefstring="mail.identity.%identitykey%.useremail"/>
  51.           </row>
  52.           <row autostretch="never">
  53.             <text class="label" value="&replyTo.label;" for="identity.replyTo"/>
  54.             <textbox wsm_persist="true" id="identity.replyTo"
  55.                      pref="true" preftype="string" prefattribute="value"
  56.                      prefstring="mail.identity.%identitykey%.reply_to"/>
  57.           </row>
  58.           <row autostretch="never">
  59.             <text class="label" value="&organization.label;" for="identity.organization"/>
  60.             <textbox wsm_persist="true" id="identity.organization"
  61.                      pref="true" preftype="string" prefattribute="value"
  62.                      prefstring="mail.identity.%identitykey%.organization"/>
  63.           </row>
  64.         </rows>
  65.       </grid>
  66.  
  67.       <hbox autostretch="never">
  68.         <checkbox wsm_persist="true" id="identity.attachSignature" label="&signature.label;" flex="1"
  69.                   pref="true" preftype="bool" prefattribute="value"
  70.                   prefstring="mail.identity.%identitykey%.attach_signature"/>
  71.       </hbox>
  72.       <hbox autostretch="never" class="indent">
  73.         <textbox wsm_persist="true" id="identity.signature" datatype="nsILocalFile" flex="1" name="identity.signature"
  74.                  pref="true" preftype="string" prefattribute="value"
  75.                  prefstring="mail.identity.%identitykey%.sig_file"/>
  76.         <button class="dialog push" name="browse" type="button" label="&choose.label;"  
  77.                 oncommand="selectFile()"
  78.                 wsm_persist="true" id="identity.sigbrowsebutton"
  79.                 pref="true" preftype="bool" prefattribute="disabled"
  80.                 prefstring="mail.identity.%identitykey%.sigbrowse.disable"/>
  81.       </hbox>
  82.  
  83.       <separator class="thin"/>
  84.       
  85.       <hbox autostretch="never">
  86.         <checkbox wsm_persist="true" id="identity.composeHtml" label="&useHtml.label;"
  87.                   pref="true" preftype="bool" prefattribute="value"
  88.                   prefstring="mail.identity.%identitykey%.compose_html"/>
  89.       </hbox>
  90.  
  91.       <spring flex="1"/>
  92.  
  93.       <hbox>
  94.         <spring flex="1"/>
  95.         <button oncommand="onAdvanced();" label="&advancedButton.label;"
  96.                 wsm_persist="true" id="identity.advancedbutton"
  97.                 pref="true" preftype="bool" prefattribute="disabled"
  98.                 prefstring="mail.identity.%identitykey%.advanced.disable"/>
  99.         <text hidden="true" wsm_persist="true" id="identity.smtpServerKey" />
  100.       </hbox>
  101.  
  102.     </groupbox>
  103.  
  104. </window>
  105.