application.ini: per semver, version bump to 1.0.2 for bugfix
[conkeror.git] / content / conkeror.xul
blobf265f12c564772b56449b305fb3516f0bdf30880
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://global/skin/" 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"
22 fullscreenbutton="true">
24 <stringbundleset id="stringbundleset">
25 </stringbundleset>
27 <!-- put "New Window" and "Quit" items in the OS X Application Menu.
28 The id's "aboutName" and "menu_FileQuitItem" are magic cookies for
29 OS X XULRunner. We repurpose these as a small hack, which saves us
30 from needing a lot of extra menu logic just for 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"
49 onpopupshowing="conkeror.formfill_mode(true, this);"
50 onpopuphiding="conkeror.formfill_mode(false, this);"/>
52 <deck flex="1" id="buffer-container"/>
53 </window>