Fix version number in debian/NEWS once again
[conkeror.git] / content / conkeror.xul
blob48cdf952f635461f32c9fbe18c15f4dc4fea32c4
1 <?xml version="1.0"?>
2 <!--
3 (C) Copyright 2004-2007 Shawn Betts
4 (C) Copyright 2007-2010 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 -->
10 <?xml-stylesheet href="chrome://conkeror-gui/skin/window.css" type="text/css"?>
11 <?xul-overlay href="chrome://conkeror-gui/content/minibuffer.xul"?>
12 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13 onload="Components.classes['@conkeror.mozdev.org/application;1']
14 .getService()
15 .wrappedJSObject.window_initialize(this);"
16 contenttitlesetting="false"
17 title="Conkeror"
18 id="main-window"
19 width="640" height="480"
20 persist="screenX screenY width height sizemode"
21 windowtype="navigator:browser">
23 <stringbundleset id="stringbundleset">
24 </stringbundleset>
26 <!-- put "New Window" and "Quit" items in the OS X Application Menu.
27 The id's "aboutName" and "menu_FileQuitItem" are magic cookies for
28 OS X XULRunner. We repurpose "aboutName" as a small hack, which
29 saves us from needing a lot of extra menu logic just for one menu
30 item on only one OS. -->
31 <menubar id="menubar" hidden="true">
32 <menu label="Conkeror" hidden="true">
33 <menupopup>
34 <menuitem
35 id="aboutName"
36 label="New Window"
37 hidden="true"
38 oncommand="conkeror.input_handle_command.call(window, 'make-window');"/>
39 <menuitem
40 id="menu_FileQuitItem"
41 label="Quit Conkeror"
42 hidden="true"
43 oncommand="conkeror.input_handle_command.call(window, 'quit');"/>
44 </menupopup>
45 </menu>
46 </menubar>
48 <panel id="popup_autocomplete" type="autocomplete" noautofocus="true"/>
50 <deck flex="1" id="buffer-container">
51 <vbox flex="1">
52 <browser flex="1" type="content-primary" disablehistory="true" autocompletepopup="popup_autocomplete"/>
53 </vbox>
54 </deck>
55 </window>