home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / 01_03.iso / software / ghostzilla_hit / files / ghostzilla-1.0-plus-install.exe / chrome / chatzilla.jar / content / chatzilla / chatzillaOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2002-05-01  |  1.1 KB  |  39 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. <?xml-stylesheet href="chrome://chatzilla/skin/chatzillaOverlay.css" type="text/css"?> 
  8.  
  9. <overlay id="ChatzillaTaskMenuID"
  10.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  11.  
  12. <script type="application/x-javascript" src="chrome://chatzilla/content/chatzillaOverlay.js"/>
  13.  
  14. <keyset id="tasksKeys">
  15.   <key id="key_irc"  key="&ircCmd.commandkey;" command="Tasks:IRC" modifiers="accel"/>
  16. </keyset>
  17.  
  18. <commandset id="tasksCommands">
  19.   <command id="Tasks:IRC" oncommand="toIRC();"/>
  20. </commandset>
  21.  
  22. <menupopup id="windowPopup">
  23.   <menuitem
  24.         label="&ircCmd.label;"
  25.         accesskey="&ircCmd.accesskey;"
  26.         key="key_irc"
  27.         command="Tasks:IRC"
  28.         id="tasksMenuIRC"
  29.         class="menuitem-iconic"
  30.         insertbefore="tasksMenuEditor"/>
  31. </menupopup>
  32.  
  33. <statusbarpanel id="component-bar">
  34.   <toolbarbutton class="taskbutton" id="mini-irc" oncommand="toIRC()"
  35.     position="5" tooltiptext="&ircCmd.label;"/>
  36. </statusbarpanel>
  37.  
  38. </overlay>
  39.