]> git.ktnx.net Git - icedeb.git/blob - chrome/icedeb.xul
54c81ace161472260ec77e2b244df8e04d77f42f
[icedeb.git] / chrome / icedeb.xul
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?xml-stylesheet type="text/css"
3   href="chrome://icedeb/content/icedeb.css"?>
4
5 <!DOCTYPE overlay >
6 <overlay id="icedeb-overlay"
7   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
8
9 <script type="application/x-javascript"
10   src="chrome://icedeb/content/icedeb.js"/>
11
12 <!-- Firefox -->
13 <toolbarpalette id="BrowserToolbarPalette">
14   <toolbarbutton id="icedeb-bts"/>
15   <toolbarbutton id="icedeb-pts"/>
16   <toolbarbutton id="icedeb-deb"/>
17   </toolbarpalette>
18
19 <!-- button details -->
20 <toolbarbutton id="icedeb-bts"
21   label="Debian BTS"
22   tooltiptext="Query Debian BTS using the text in the clipboard"
23   onclick="Debian.btsButton(event)"
24   class="toolbarbutton-1 chromeclass-toolbar-additional icedeb-bts icedeb-button"
25   />
26
27 <toolbarbutton id="icedeb-pts"
28   label="Debian PTS"
29   tooltiptext="Query Debian Package tracking system using the text in the clipboard"
30   onclick="Debian.ptsButton(event)"
31   class="toolbarbutton-1 chromeclass-toolbar-additional icedeb-pts icedeb-button"
32   />
33
34 <toolbarbutton id="icedeb-deb"
35   label=".deb info"
36   tooltiptext="Show information about binary deb package"
37   onclick="Debian.debButton(event)"
38   class="toolbarbutton-1 chromeclass-toolbar-additional icedeb-deb icedeb-button"
39   />
40
41 <!-- the toolbar -->
42 <toolbox id="navigator-toolbox">
43     <toolbar id="icedeb" class="chromeclass-toolbar"
44         toolbarname="Debian buttons" accesskey="D"
45         mode="icons" iconsize="small"
46         context="toolbar-context-menu"
47         customizable="true" defaultset="icedeb-bts,icedeb-pts,icedeb-deb"
48         >
49     </toolbar>
50 </toolbox>
51
52 </overlay>
53