home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / comm.jar / content / navigator / openLocation.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  3KB  |  91 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.     Ben Goodger <ben@netscape.com>
  24.     Michael Lowe <michael.lowe@bigfoot.com> 
  25.  
  26. -->
  27.  
  28. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?> 
  29.  
  30. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  31.  
  32. <!DOCTYPE window [
  33.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  34.   %brandDTD;
  35.   <!ENTITY % openDialogDTD SYSTEM "chrome://navigator/locale/openLocation.dtd" >
  36.   %openDialogDTD;
  37. ]>            
  38.  
  39. <window id="openLocation"
  40.         xmlns:html="http://www.w3.org/1999/xhtml"
  41.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  42.         title="&caption.label;"
  43.         onload="onLoad()"
  44.         style="width: 40em;"
  45.         class="dialog"
  46.         align="vertical"
  47.         persist="screenX screenY"
  48.         screenX="24" screenY="24">
  49.               
  50.   <script language="javascript" src="chrome://global/content/strres.js"/>
  51.   <script language="javascript" src="chrome://global/content/globalOverlay.js"/>  
  52.   <script language="javascript" src="chrome://navigator/content/openLocation.js"/>
  53.   <script language="javascript" src="chrome://communicator/content/utilityOverlay.js"/>
  54.                    
  55.   <keyset id="keyset"/>
  56.            
  57.   <box>
  58.     <box orient="vertical">
  59.       <image class="question-icon"/>
  60.       <spring flex="1"/>
  61.     </box>
  62.     <separator orient="vertical" class="thin"/>
  63.     <box orient="vertical" flex="1">
  64.       <html>&enter.label;</html>
  65.       <separator class="thin"/>
  66.  
  67.       <box autostretch="never">
  68.         <textfield id="dialog.input" flex="1" oninput="doEnabling();"/>
  69.         <button value="&chooseFile.label;" onclick="onChooseFile();"/>
  70.       </box>
  71.       <box autostretch="never" valign="center">
  72.         <text class="label" value="&openWhere.label;"/>
  73.         <menulist id="openAppList">
  74.           <menupopup>
  75.             <menuitem data="0" id="currentWindow" value="&topWindow.label;"/>
  76.             <menuitem data="1" value="&newWindow.label;"/>
  77.             <menuseparator/>
  78.             <menuitem data="2" id="editWindow" value="&editNewWindow.label;"/>
  79.           </menupopup>
  80.         </menulist>
  81.         <spring flex="1"/>
  82.       </box>
  83.     </box>
  84.   </box> 
  85.  
  86.   <separator/>
  87.  
  88.   <box id="okCancelButtonsRight"/>
  89.            
  90.  </window>
  91.