browser/components/preferences/applicationManager.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <?xml version="1.0"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <?xml-stylesheet href="chrome://global/skin/"?>
michael@0 7
michael@0 8 <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/applicationManager.dtd">
michael@0 9
michael@0 10 <dialog id="appManager"
michael@0 11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 12 buttons="accept,cancel"
michael@0 13 onload="gAppManagerDialog.init();"
michael@0 14 ondialogaccept="gAppManagerDialog.onOK();"
michael@0 15 ondialogcancel="gAppManagerDialog.onCancel();"
michael@0 16 title="&appManager.title;"
michael@0 17 style="&appManager.style;"
michael@0 18 persist="screenX screenY">
michael@0 19
michael@0 20 <script type="application/javascript"
michael@0 21 src="chrome://browser/content/utilityOverlay.js"/>
michael@0 22 <script type="application/javascript"
michael@0 23 src="chrome://browser/content/preferences/applicationManager.js"/>
michael@0 24 <script type="application/javascript"
michael@0 25 src="chrome://browser/content/preferences/applications.js"/>
michael@0 26
michael@0 27 <commandset id="appManagerCommandSet">
michael@0 28 <command id="cmd_remove"
michael@0 29 oncommand="gAppManagerDialog.remove();"
michael@0 30 disabled="true"/>
michael@0 31 </commandset>
michael@0 32
michael@0 33 <keyset id="appManagerKeyset">
michael@0 34 <key id="delete" keycode="VK_DELETE" command="cmd_remove"/>
michael@0 35 </keyset>
michael@0 36
michael@0 37 <stringbundleset id="appManagerBundleset">
michael@0 38 <stringbundle id="appManagerBundle"
michael@0 39 src="chrome://browser/locale/preferences/applicationManager.properties"/>
michael@0 40 </stringbundleset>
michael@0 41
michael@0 42 <description id="appDescription"/>
michael@0 43 <separator class="thin"/>
michael@0 44 <hbox flex="1">
michael@0 45 <listbox id="appList" onselect="gAppManagerDialog.onSelect();" flex="1"/>
michael@0 46 <vbox>
michael@0 47 <button id="remove"
michael@0 48 label="&remove.label;"
michael@0 49 accesskey="&remove.accesskey;"
michael@0 50 command="cmd_remove"/>
michael@0 51 <spacer flex="1"/>
michael@0 52 </vbox>
michael@0 53 </hbox>
michael@0 54 <vbox id="appDetails">
michael@0 55 <separator class="thin"/>
michael@0 56 <label id="appType"/>
michael@0 57 <textbox id="appLocation" readonly="true" class="plain"/>
michael@0 58 </vbox>
michael@0 59 </dialog>

mercurial