home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / toolkit.jar / content / global / nsHelperAppDlg.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-09-01  |  4.1 KB  |  114 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.     Bill Law    <law@netscape.com>
  24.  
  25. -->
  26.  
  27. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?> 
  28.  
  29. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  30.  
  31. <!DOCTYPE window [
  32.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  33.   %brandDTD;
  34.   <!ENTITY % nsHelperAppDlgDTD SYSTEM "chrome://global/locale/nsHelperAppDlg.dtd" >
  35.   %nsHelperAppDlgDTD;
  36. ]>            
  37.  
  38. <window id="nsHelperAppDlg"
  39.         xmlns:html="http://www.w3.org/1999/xhtml"
  40.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  41.         title="&caption.label;"
  42.         onload="dialog.initDialog()"
  43.         style="width: 40em;"
  44.         class="dialog"
  45.         orient="vertical">
  46.  
  47.             
  48.     <keyset id="dialogKeys"/>
  49.            
  50.     <vbox>
  51.       <hbox flex="1">
  52.         <vbox flex="1">
  53.           <html id="intro">&intro.label;</html>    
  54.           <description id="location" crop="center" value=""/>
  55.           <separator orient="horizontal" class="thin"/>
  56.           <html id="prompt">&prompt.label;</html>
  57.         </vbox>
  58.         <image id="contentTypeImage"/>
  59.       </hbox>
  60.  
  61.       <separator orient="horizontal" class="thin"/>
  62.       <radiogroup id="mode" orient="vertical" oncommand="dialog.toggleChoice()">
  63.         <hbox flex="1">
  64.           <hbox autostretch="never" flex="1">
  65.             <radio id="openUsing" flex="1"
  66.                    group="mode"
  67.                    label="&openUsing.label;"
  68.                    accesskey="&openUsing.accesskey;"/>
  69.           </hbox>
  70.                
  71.           <hbox class="indent" autostretch="never">
  72.             <button id="chooseApp"
  73.                     class="dialog"
  74.                     label="&chooseApp.label;"
  75.                     accesskey="&chooseApp.accesskey;"
  76.                     oncommand="dialog.chooseApp()"/>
  77.           </hbox>
  78.         </hbox>
  79.         <vbox>
  80.           <hbox autostretch="never">
  81.             <radio id="saveToDisk"
  82.                        group="mode"
  83.                        label="&saveToDisk.label;"
  84.                        accesskey="&saveToDisk.accesskey;"/>
  85.           </hbox>
  86.         </vbox>
  87.       </radiogroup>
  88.       <separator orient="horizontal" class="thin"/>
  89.       <hbox autostretch="never">
  90.         <checkbox id="alwaysAskMe" label="&alwaysAsk.label;" accesskey="&alwaysAsk.accesskey;"/>
  91.       </hbox>
  92.     </vbox>
  93.  
  94.     <separator class="groove"/>
  95.  
  96.     <hbox>
  97.       <button class="dialog" id="default.set" label="&default.set.label;" accesskey="&default.set.accesskey;"
  98.         oncommand="dialog.setDefault()"/>
  99.       <spring flex="1"/>
  100.       <hbox id="okCancelButtonsRight"/>
  101.     </hbox>
  102.            
  103.     <!-- Localizable strings (from .dtd) -->
  104.     <strings style="display:none;">
  105.         <string id="brandShortName">         &brandShortName;         </string>
  106.         <string id="intro.withDesc">         &intro.label;            </string>
  107.         <string id="intro.noDesc">           &intro.noDesc.label;     </string>
  108.         <string id="openUsingString">        &openUsing.label;  </string>
  109.         <string id="badApp">                 &badApp;                 </string>
  110.         <string id="badApp.title">           &badApp.title;           </string>
  111.         <string id="noApplicationSpecified"> &noApplicationSpecified.label;</string>
  112.     </strings>
  113. </window>
  114.