Added support for generating URLs with fragment indentifiers (eg #foo).
[conkeror.git] / content / conkeror.xul
blob24b3559e0e3616c24fa6d2fa052cd9c7c4ebc26d
1 <?xml version="1.0"?>
2 <!--
3 (C) Copyright 2004-2007 Shawn Betts
4 (C) Copyright 2007-2008 John J. Foerch
5 (C) Copyright 2007-2008 Jeremy Maitin-Shepard
7 Use, modification, and distribution are subject to the terms specified in the
8 COPYING file.
9 -->
11 <?xml-stylesheet href="chrome://conkeror-gui/skin/window.css" type="text/css"?>
13 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
14 onload="Components.classes['@conkeror.mozdev.org/application;1']
15 .getService ()
16 .wrappedJSObject.window_initialize(this);"
17 contenttitlesetting="false"
18 title="Conkeror"
19 id="main-window"
20 width="640" height="480"
21 persist="screenX screenY width height sizemode"
22 windowtype="navigator:browser">
24 <stringbundleset id="stringbundleset">
25 </stringbundleset>
27 <!-- put a "Quit" item in the OS X Application Menu. The id
28 "menu_FileQuitItem" on the menuitem is the magic cookie. -->
29 <menubar id="menubar" hidden="true">
30 <menu label="Conkeror" hidden="true">
31 <menupopup>
32 <menuitem
33 id="menu_FileQuitItem"
34 label="Quit Conkeror"
35 hidden="true"
36 oncommand="conkeror.quit();"/>
37 </menupopup>
38 </menu>
39 </menubar>
41 <panel id="popup_autocomplete" type="autocomplete" noautofocus="true"/>
43 <vbox flex="1">
44 <deck flex="1" id="buffer-container">
45 <vbox flex="1">
46 <browser flex="1" type="content-primary" disablehistory="true" autocompletepopup="popup_autocomplete"/>
47 </vbox>
48 </deck>
49 <hbox id="minibuffer" minibuffermode="message">
50 <label class="minibuffer" id="minibuffer-message" flex="1" crop="right" value=""/>
51 <label class="minibuffer" id="minibuffer-prompt" crop="left" value=""/>
52 <textbox class="plain" id="minibuffer-input" flex="1"/>
53 </hbox>
54 </vbox>
55 </window>