home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 March / PCWorld_2005-03_cd.bin / komunikace / kmeleon / kmeleon09.exe / aggreg8.jar / content / menu.xul < prev    next >
Extensible Markup Language  |  2004-09-15  |  2KB  |  44 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE window SYSTEM "chrome://aggreg8/locale/aggreg8.dtd">
  3. <overlay id="aggreg8"
  4.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  5. <stringbundle id="_stringbundle" src="chrome://aggreg8/locale/strings.properties"/>
  6. <script type="application/x-javascript">
  7.   <![CDATA[
  8.     //function toaggreg8()
  9.     //{
  10.     //  if (!CycleWindow("aggreg8:main"))
  11.     //    Newaggreg8Window();
  12.     //}
  13.     function aggreg8_tab() {
  14.      var browser = getBrowser();
  15.      var tab = browser.addTab('chrome://aggreg8/content/aggreg8.xul');
  16.      browser.selectedTab = tab; 
  17.      browser.focus();
  18.     }
  19.     function aggreg8_currentwindow() {
  20.      var w = getTopWin();
  21.      var aTargetBrowser = w.document.getElementById("content");
  22.      aTargetBrowser.loadURI('chrome://aggreg8/content/aggreg8.xul');
  23.      w._content.focus();
  24.     }
  25.     function aggreg8_window()
  26.     {
  27.       // Open aggreg8 window
  28.       //toOpenWindowByType('aggreg8:main', 'chrome://aggreg8/content/aggreg8.xul');
  29.       window.openDialog( "chrome://aggreg8/content/aggreg8.xul", "aggreg8:main", "height=900px,width=800px,chrome,all,dialog=no");
  30.     }
  31.   ]]>
  32. </script>
  33.  
  34.  <menupopup id="menu_ToolsPopup">
  35.   <menu label="&tools.aggreg8;" insertbefore="prefSep">
  36.         <menupopup>
  37.             <menuitem label="&menu.aggreg8newtab;" oncommand="aggreg8_tab();"/>
  38.             <menuitem label="&menu.aggreg8currenttab;" oncommand="aggreg8_currentwindow();"/>
  39.             <menuitem label="&menu.aggreg8newwindow;" oncommand="aggreg8_window();"/>
  40.         </menupopup>
  41.         </menu>  
  42.   </menupopup>
  43. </overlay>
  44.