gmail-mode: remove gmail_focus_primary_frame
[conkeror.git] / content / conkeror.xul
blob0eb83a6979354c081b84d9e235d75de0c936d3fb
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">
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 these as a small hack, which saves us
29 from needing a lot of extra menu logic just for one OS. -->
30 <menubar id="menubar" hidden="true">
31 <menu label="Conkeror" hidden="true">
32 <menupopup>
33 <menuitem
34 id="aboutName"
35 label="New Window"
36 hidden="true"
37 oncommand="conkeror.input_handle_command.call(window, 'make-window');"/>
38 <menuitem
39 id="menu_FileQuitItem"
40 label="Quit Conkeror"
41 hidden="true"
42 oncommand="conkeror.input_handle_command.call(window, 'quit');"/>
43 </menupopup>
44 </menu>
45 </menubar>
47 <panel id="popup_autocomplete" type="autocomplete" noautofocus="true"
48 onpopupshowing="conkeror.formfill_mode(true, this);"
49 onpopuphiding="conkeror.formfill_mode(false, this);"/>
51 <deck flex="1" id="buffer-container"/>
52 </window>