home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / toolkit.jar / content / global / helperAppLauncher.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  4KB  |  102 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): Dan Rosen <dr@netscape.com>
  23.  
  24. -->
  25.  
  26. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?> 
  27.  
  28. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  29.  
  30. <!DOCTYPE window [
  31.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  32.   %brandDTD;
  33.   <!ENTITY % helperAppLauncherDTD SYSTEM "chrome://global/locale/helperAppLauncher.dtd" >
  34.   %helperAppLauncherDTD;
  35. ]>            
  36.  
  37. <window id="helperAppLaunchConfirmation"
  38.         xmlns:html="http://www.w3.org/1999/xhtml"
  39.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  40.         title="&caption.label;"
  41.         onload="window.dialog = new nsHelperAppLauncherDialog()"
  42.         style="width: 40em;"
  43.         class="dialog"
  44.         align="vertical"
  45.         persist="screenX screenY"
  46.         screenX="24" screenY="24">
  47.               
  48.     <script language="javascript" src="chrome://global/content/strres.js"/>
  49.     <script language="javascript" src="chrome://global/content/globalOverlay.js"/>  
  50.     <script language="javascript" src="chrome://global/content/helperAppLauncher.js"/>
  51.     <script language="javascript" src="chrome://communicator/content/utilityOverlay.js"/>
  52.                    
  53.     <keyset id="keyset"/>
  54.            
  55.     <box>
  56.         <box orient="vertical">
  57.             <image class="question-icon"/>
  58.             <spring flex="1"/>
  59.         </box>
  60.         <separator orient="vertical" class="thin"/>
  61.         <box orient="vertical" flex="1">
  62.             <html id="intro">&intro.label;</html>
  63.             <separator orient="horizontal" class="thin"/>
  64.             <radiogroup id="mode" orient="vertical" oncommand="window.dialog.toggleChoice()">
  65.                 <box orient="vertical">
  66.                     <box autostretch="never">
  67.                         <radio id="runApp"
  68.                                group="mode"
  69.                                value="&runApp.label;"
  70.                                accesskey="&runApp.accesskey;"/>
  71.                     </box>
  72.                     <box class="indent">
  73.                         <textfield id="appName" readonly="true" flex="1"/>
  74.                         <button id="chooseApp"
  75.                                 class="dialog"
  76.                                 value="&chooseApp.label;"
  77.                                 accesskey="&chooseApp.accesskey;"
  78.                                 oncommand="dialog.chooseApp()"/>
  79.                     </box>
  80.                 </box>
  81.                 <box orient="vertical">
  82.                     <box autostretch="never">
  83.                         <radio id="saveToDisk"
  84.                                group="mode"
  85.                                value="&saveToDisk.label;"
  86.                                accesskey="&saveToDisk.accesskey;"/>
  87.                     </box>
  88.                  </box>
  89.             </radiogroup>
  90.             <separator orient="horizontal" class="thin"/>
  91.             <box autostretch="never">
  92.                 <checkbox id="alwaysAskMe" value="&alwaysAskMe.label;" accesskey="&alwaysAskMe.accesskey;"/>
  93.             </box>
  94.         </box>
  95.     </box>
  96.  
  97.     <separator class="groove"/>
  98.  
  99.     <box id="okCancelButtonsRight"/>
  100.            
  101. </window>
  102.