Basic parsing for keyword search implemented
[FireMan.git] / src / chrome / content / FireManSidebar.xul
blobdcbbc43f982518e49464c320f65994a2f1d2120e
1 <?xml version="1.0"?>
2 <!--
3 Copyright (c) 2008 Tobias Sarnowski <sarnowski@new-thoughts.org>
5 See the LICENSE file shipped with the source code or package for
6 licensing terms.
7 -->
9 <?xml-stylesheet href="chrome://global/skin/" type"text/css" ?>
10 <?xml-stylesheet href="chrome://browser/skin/browser.css" type="text/css" ?>
11 <!DOCTYPE page SYSTEM "chrome://fireman/locale/FireManSidebar.dtd">
13 <page id="sbFireManSidebar" title="&FireManSidebar.title;"
14 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
15 onload="FM_fillTree('');">
16 <script src="chrome://fireman/content/FireMan.js" />
17 <script src="chrome://fireman/content/FireManOS.js" />
18 <script src="chrome://fireman/content/FireManSidebar.js" />
20 <vbox flex="1">
22 <hbox>
23 <textbox id="ManualPageSearch" multiline="false" type="timed" timeout="500" flex="1" oncommand="FM_fillTree(this.value);" />
24 <button id="ManualPageSearchButton" label="Search!" />
25 </hbox>
27 <tree id="ManualPageListing" flex="1">
28 <treecols>
29 <treecol id="ManualPageEntryName" primary="true" flex="1" />
30 </treecols>
31 <treechildren />
32 </tree>
34 </vbox>
35 </page>