toolkit/components/apppicker/content/appPicker.xul

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <?xml version="1.0"?> 
     3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     4    - License, v. 2.0. If a copy of the MPL was not distributed with this
     5    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     7   <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
     8   <?xml-stylesheet href="chrome://global/skin/appPicker.css" type="text/css"?>
    10   <!DOCTYPE dialog SYSTEM "chrome://global/locale/appPicker.dtd" >
    12   <dialog id="app-picker"
    13     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    14     onload="g_dialog.appPickerLoad();"
    15     buttons="accept,cancel,extra2"
    16     buttonlabelextra2="&BrowseButton.label;"
    17     ondialogextra2="g_dialog.appPickerBrowse();"
    18     defaultButton="cancel"
    19     ondialogaccept="return g_dialog.appPickerOK();"
    20     ondialogcancel="return g_dialog.appPickerCancel();"
    21     aria-describedby="content-description suggested-filename"
    22     persist="screenX screenY">
    24     <script type="application/javascript" src="chrome://global/content/appPicker.js"/>
    26     <hbox id="file-info" align="center">
    27       <image id="content-icon" src=""/>
    28       <vbox flex="1">
    29         <label id="content-description" crop="center" value=""/>
    30         <label id="suggested-filename" crop="center" value=""/>
    31       </vbox>
    32     </hbox>
    34     <label id="sendto-message" value="&SendMsg.label;" control="app-picker-listbox"/>
    36     <listbox id="app-picker-listbox" rows="5"
    37              ondblclick="g_dialog.appDoubleClick();"/>
    39     <label id="app-picker-notfound" value="&NoAppFound.label;" hidden="true"/>
    40   </dialog>

mercurial