moveBookmarks.xul 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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/"?>
  6. <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
  7. <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
  8. <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
  9. <!DOCTYPE window [
  10. <!ENTITY % moveBookmarksDTD SYSTEM "chrome://browser/locale/places/moveBookmarks.dtd">
  11. %moveBookmarksDTD;
  12. ]>
  13. <dialog id="moveBookmarkDialog"
  14. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  15. ondialogaccept="return gMoveBookmarksDialog.onOK(event);"
  16. title="&window.title;"
  17. onload="gMoveBookmarksDialog.init();"
  18. style="&window.style;"
  19. screenX="24"
  20. screenY="24"
  21. persist="screenX screenY width height">
  22. <script type="application/javascript"
  23. src="chrome://browser/content/places/moveBookmarks.js"/>
  24. <hbox flex="1">
  25. <label id="movetolabel" value="&moveTo.label;" control="foldersTree"/>
  26. <hbox flex="1">
  27. <tree id="foldersTree"
  28. class="placesTree"
  29. flex="1"
  30. type="places"
  31. seltype="single"
  32. hidecolumnpicker="true">
  33. <treecols>
  34. <treecol id="title" flex="1" primary="true" hideheader="true"/>
  35. </treecols>
  36. <treechildren id="placesListChildren" view="placesList" flex="1"/>
  37. </tree>
  38. <vbox>
  39. <button id="newFolderButton"
  40. label="&newFolderButton.label;"
  41. accesskey="&newFolderButton.accesskey;"
  42. oncommand="gMoveBookmarksDialog.newFolder();"/>
  43. </vbox>
  44. </hbox>
  45. </hbox>
  46. </dialog>