home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / xulrunner-1.9.0.14 / chrome / toolkit.jar / content / global / appPicker.xul < prev    next >
Encoding:
Extensible Markup Language  |  2007-11-21  |  1.4 KB  |  42 lines

  1. <?xml version="1.0"?> 
  2.  
  3.  
  4.   <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  5.   <?xml-stylesheet href="chrome://global/skin/appPicker.css" type="text/css"?>
  6.  
  7.   <!DOCTYPE dialog SYSTEM "chrome://global/locale/appPicker.dtd" >
  8.  
  9.   <dialog id="app-picker"
  10.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.     onload="g_dialog.appPickerLoad();"
  12.     buttons="accept,cancel"
  13.     defaultButton="cancel"
  14.     ondialogaccept="return g_dialog.appPickerOK();"
  15.     ondialogcancel="return g_dialog.appPickerCancel();"
  16.     persist="screenX screenY">
  17.  
  18.     <script type="application/javascript" src="chrome://global/content/appPicker.js"/>
  19.  
  20.     <vbox>
  21.       <hbox id="file-info" align="left">
  22.         <image id="content-icon" src="" />
  23.         <vbox flex="1">
  24.           <label id="content-description" crop="center" value=""/>
  25.           <label id="suggested-filename" crop="center" value=""/>
  26.         </vbox>
  27.       </hbox>
  28.       <spacer height="10px"/>
  29.       <label id="sendto-message" value="&SendMsg.label;"/>
  30.  
  31.       <richlistbox id="app-picker-list">
  32.       </richlistbox>
  33.  
  34.       <label id="app-picker-notfound" value="&NoAppFound.label;" hidden="true"/>
  35.  
  36.       <hbox>
  37.         <spacer flex="1"/>
  38.         <button id="browse-button" onclick="g_dialog.appPickerBrowse();" label="&BrowseButton.label;" align="center"/>
  39.       </hbox>
  40.     </vbox>
  41.   </dialog>
  42.