home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / browser.jar / content / browser / search / search.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-29  |  1.8 KB  |  46 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://browser/skin/search/search.css" type="text/css"?>
  3.  
  4. <!DOCTYPE window SYSTEM "chrome://browser/locale/search/search.dtd">
  5.  
  6. <window id="search-window" title="&window.title.label;"
  7.     class="dialog" windowtype="search:window"
  8.   width="500" height="400" x="20" y="20" persist="width height x y"
  9.   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  10.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.   onload="loadPage(window.arguments[0], window.arguments[1])" onunload="doUnload()" >
  12.  
  13.   <menubar>
  14.     <menu label="&menu.file.label;">
  15.       <menupopup>
  16.         <menuitem label="&menuitem.close.label;" oncommand="window.close()" />
  17.       </menupopup>
  18.     </menu>
  19.     <menu label="&menu.edit.label;">
  20.       <menupopup>
  21.         <menuitem label="x&menuitem.undo.label;"/>
  22.         <menuseparator/>
  23.         <menuitem label="x&menuitem.cut.label;"/>
  24.         <menuitem label="x&menuitem.copy.label;"/>
  25.         <menuitem label="x&menuitem.paste.label;"/>
  26.       </menupopup>
  27.     </menu>
  28.   </menubar>
  29.  
  30.   <script type="application/x-javascript" src="chrome://browser/content/search/search.js" />
  31.  
  32.   <tabbox> 
  33.     <tabs> 
  34.       <tab id="findTab" oncommand="loadPage('find', null);" label="&find.title.label;"/>
  35.       <tab id="internetTab" oncommand="loadPage('internet', null);" label="&internet.title.label;"/>
  36.       <tab id="mailnewsTab" oncommand="loadPage('mail', null);" label="&mailnews.title.label;"/>
  37.       <tab id="addressbookTab" oncommand="loadPage('addressbook', null);" label="&addressbook.title.label;"/>
  38.     </tabs> 
  39.                     
  40.     <tabpanels/>
  41.   </tabbox> 
  42.  
  43.   <iframe src="about:blank" height="150" width="100%" style="height: 150; width: 100%;" id="content" />
  44.   <iframe src="about:blank" height="100%" width="100%" style="height: 100%; width: 100%;" flex="100%" id="results" />
  45. </window>
  46.