home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / mozil06.zip / bin / chrome / toolkit.jar / content / global / hiddenWindow.xul < prev    next >
Extensible Markup Language  |  2001-02-14  |  3KB  |  71 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.  
  23. <?xul-overlay href="chrome://navigator/content/navigatorOverlay.xul"?>
  24. <?xul-overlay href="chrome://communicator/content/tasksOverlay.xul"?>
  25. <?xul-overlay href="chrome://navigator/content/navExtraOverlay.xul"?>
  26.  
  27. <!-- hiddenwindow is a "minimal" XUL window intended for creating the,
  28.      er, hidden window.  This window is never shown, but on platforms
  29.      which leave the app running after the last (visible) window is shut
  30.      down, this window does hold a browser menubar.
  31.        Though this window looks a lot like navigator.xul, that xul
  32.      is unsuitable because it's subject to the whims of its associated
  33.      appcore, which among other things causes it to load content documents
  34.      undesirable for this window.
  35.        Arguably a simpler menu structure could be substituted, but
  36.      the full one was included for now in anticipation of the whole thing
  37.      becoming an included file someday. -->
  38.  
  39. <!-- Localizable string definitions from navigator.xul. -->
  40. <!DOCTYPE window [
  41. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  42. %brandDTD;
  43. <!ENTITY % navigatorDTD SYSTEM "chrome://navigator/locale/navigator.dtd" >
  44. %navigatorDTD;
  45. ]>
  46.  
  47. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  48.   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  49.   title="hidden"
  50.   titlemodifier="&mainWindow.titlemodifier;" 
  51.   titlemenuseparator="&mainWindow.titlemodifiermenuseparator;"
  52.   onload="hiddenWindowStartup();">
  53.  
  54.   <!-- JS from navigator.xul, to handle the menu commands -->
  55.   <script language="JavaScript" src="chrome://global/content/strres.js"/>
  56.   <script language="javascript" src="chrome://navigator/content/navigator.js"/>
  57.  
  58.   <!-- keys are appended from the overlay -->
  59.   <keyset id="keyset"/>
  60.   
  61.   <!-- broadcasters are appended from the overlay -->
  62.   <broadcasterset id="broadcasterset"/>
  63.  
  64.   <!-- it's the whole navigator.xul menubar! hidden windows need to
  65.        have a menubar for situations where they're the only window remaining
  66.        on a platform that wants to leave the app running, like the Mac.
  67.   -->
  68.   <menubar id="main-menubar"/>
  69.  
  70. </window>
  71.