quota.xul 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0"?>
  2. <!-- This Source Code Form is subject to the terms of the Mozilla Public
  3. - License, v. 2.0. If a copy of the MPL was not distributed with this
  4. - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
  5. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  6. <?xml-stylesheet href="chrome://browser/skin/syncQuota.css"?>
  7. <!DOCTYPE dialog [
  8. <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
  9. <!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
  10. <!ENTITY % syncQuotaDTD SYSTEM "chrome://browser/locale/syncQuota.dtd">
  11. %brandDTD;
  12. %syncBrandDTD;
  13. %syncQuotaDTD;
  14. ]>
  15. <dialog id="quotaDialog"
  16. windowtype="Sync:ViewQuota"
  17. persist="screenX screenY width height"
  18. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  19. xmlns:html="http://www.w3.org/1999/xhtml"
  20. onload="gSyncQuota.init()"
  21. buttons="accept,cancel"
  22. title="&quota.dialogTitle.label;"
  23. ondialogcancel="return gSyncQuota.onCancel();"
  24. ondialogaccept="return gSyncQuota.onAccept();">
  25. <script type="application/javascript"
  26. src="chrome://browser/content/sync/quota.js"/>
  27. <stringbundleset id="stringbundleset">
  28. <stringbundle id="quotaStrings"
  29. src="chrome://browser/locale/syncQuota.properties"/>
  30. </stringbundleset>
  31. <vbox flex="1">
  32. <label id="usageLabel"
  33. value="&quota.retrievingInfo.label;"/>
  34. <separator/>
  35. <tree id="usageTree"
  36. seltype="single"
  37. hidecolumnpicker="true"
  38. onclick="gUsageTreeView.onTreeClick(event);"
  39. flex="1">
  40. <treecols>
  41. <treecol id="enabled"
  42. type="checkbox"
  43. fixed="true"/>
  44. <splitter class="tree-splitter"/>
  45. <treecol id="collection"
  46. label="&quota.typeColumn.label;"
  47. flex="1"/>
  48. <splitter class="tree-splitter"/>
  49. <treecol id="size"
  50. label="&quota.sizeColumn.label;"
  51. flex="1"/>
  52. </treecols>
  53. <treechildren flex="1"/>
  54. </tree>
  55. <separator/>
  56. <description id="treeCaption"> </description>
  57. </vbox>
  58. </dialog>