home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-mac-0.9.sea.hqx / mozilla-mac-0.9 / Chrome / chatzilla.jar / content / chatzilla / chatzillaOverlay.xul < prev    next >
Extensible Markup Language  |  2001-05-05  |  856b  |  31 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://chatzilla/locale/chatzillaOverlay.dtd" >
  4.  
  5. <!-- This is the overlay that addes "Chatzilla" to the (global) task menu. -->
  6.  
  7. <overlay id="ChatzillaTaskMenuID"
  8.     xmlns:html="http://www.w3.org/1999/xhtml"
  9.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  10.  
  11. <script type="application/x-javascript" src="chrome://chatzilla/content/chatzillaOverlay.js"/>
  12.  
  13. <keyset id="tasksKeys">
  14.   <key id="key_irc"  key="&ircCmd.commandkey;" command="Tasks:IRC" modifiers="accel"/>
  15. </keyset>
  16.  
  17. <commandset id="tasksCommands">
  18.   <command id="Tasks:IRC" oncommand="toIRC();"/>
  19. </commandset>
  20.  
  21. <menupopup id="taskPopup">
  22.   <menuitem
  23.         position="7"
  24.         label="&ircCmd.label;"
  25.         accesskey="&ircCmd.accesskey;"
  26.         key="key_irc"
  27.         command="Tasks:IRC"/>
  28. </menupopup>
  29.  
  30. </overlay>
  31.