|
1 <?xml version="1.0"?> |
|
2 |
|
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/. --> |
|
6 |
|
7 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> |
|
8 <?xml-stylesheet href="chrome://global/skin/appPicker.css" type="text/css"?> |
|
9 |
|
10 <!DOCTYPE dialog SYSTEM "chrome://global/locale/appPicker.dtd" > |
|
11 |
|
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"> |
|
23 |
|
24 <script type="application/javascript" src="chrome://global/content/appPicker.js"/> |
|
25 |
|
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> |
|
33 |
|
34 <label id="sendto-message" value="&SendMsg.label;" control="app-picker-listbox"/> |
|
35 |
|
36 <listbox id="app-picker-listbox" rows="5" |
|
37 ondblclick="g_dialog.appDoubleClick();"/> |
|
38 |
|
39 <label id="app-picker-notfound" value="&NoAppFound.label;" hidden="true"/> |
|
40 </dialog> |