Merge commit 'jesse/master'
[taboo.git] / chrome / content / browserOverlay.xul
blobd202d6385535cd57e3f029026a6ec464e64ba0c7
1 <?xml version="1.0"?>
3 <!--
4 Copyright 2007 Jesse Andrews and Manish Singh
6 This file may be used under the terms of of the
7 GNU General Public License Version 2 or later (the "GPL"),
8 http://www.gnu.org/licenses/gpl.html
10 Software distributed under the License is distributed on an "AS IS" basis,
11 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 for the specific language governing rights and limitations under the
13 License.
14 -->
16 <?xml-stylesheet type="text/css" href="chrome://taboo/skin/overlay.css"?>
18 <overlay id="tabooOverlay"
19 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
21 <script type="application/x-javascript" src="chrome://taboo/content/browserOverlay.js"/>
23 <toolbox id="navigator-toolbox">
24 <toolbarpalette id="BrowserToolbarPalette">
25 <toolbarbutton id="taboo-toolbarbutton-add"
26 label="Add to Taboo"
27 tooltiptext="save this tab to read later"
28 command="cmd_addTaboo"
29 class="toolbarbutton-1 chromeclass-toolbar-additional" />
30 <toolbarbutton id="taboo-toolbarbutton-view"
31 label="View Taboos"
32 tooltiptext="View your Taboos in a new tab"
33 command="cmd_showTaboos"
34 class="toolbarbutton-1 chromeclass-toolbar-additional" />
35 </toolbarpalette>
36 </toolbox>
38 <keyset id="mainKeyset">
39 <key id="key_showFolds"
40 key="F"
41 command="cmd_showTaboos"
42 modifiers="accel shift"/>
43 </keyset>
45 <commandset id="mainCommandSet">
46 <command id="cmd_showTaboos" oncommand="taboo.show(event)" />
47 <command id="cmd_addTaboo" oncommand="taboo.addTaboo(event)" />
48 </commandset>
50 </overlay>