browser/components/places/content/moveBookmarks.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 6
michael@0 7 <?xml-stylesheet href="chrome://global/skin/"?>
michael@0 8 <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
michael@0 9 <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
michael@0 10
michael@0 11 <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
michael@0 12
michael@0 13 <!DOCTYPE window [
michael@0 14 <!ENTITY % moveBookmarksDTD SYSTEM "chrome://browser/locale/places/moveBookmarks.dtd">
michael@0 15 %moveBookmarksDTD;
michael@0 16 ]>
michael@0 17
michael@0 18 <dialog id="moveBookmarkDialog"
michael@0 19 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 20 ondialogaccept="return gMoveBookmarksDialog.onOK(event);"
michael@0 21 title="&window.title;"
michael@0 22 onload="gMoveBookmarksDialog.init();"
michael@0 23 style="&window.style;"
michael@0 24 screenX="24"
michael@0 25 screenY="24"
michael@0 26 persist="screenX screenY width height">
michael@0 27
michael@0 28 <script type="application/javascript"
michael@0 29 src="chrome://browser/content/places/moveBookmarks.js"/>
michael@0 30
michael@0 31 <hbox flex="1">
michael@0 32 <label id="movetolabel" value="&moveTo.label;" control="foldersTree"/>
michael@0 33 <hbox flex="1">
michael@0 34 <tree id="foldersTree"
michael@0 35 class="placesTree"
michael@0 36 flex="1"
michael@0 37 type="places"
michael@0 38 seltype="single"
michael@0 39 hidecolumnpicker="true">
michael@0 40 <treecols>
michael@0 41 <treecol id="title" flex="1" primary="true" hideheader="true"/>
michael@0 42 </treecols>
michael@0 43 <treechildren id="placesListChildren" view="placesList" flex="1"/>
michael@0 44 </tree>
michael@0 45 <vbox>
michael@0 46 <button id="newFolderButton"
michael@0 47 label="&newFolderButton.label;"
michael@0 48 accesskey="&newFolderButton.accesskey;"
michael@0 49 oncommand="gMoveBookmarksDialog.newFolder();"/>
michael@0 50 </vbox>
michael@0 51 </hbox>
michael@0 52 </hbox>
michael@0 53 </dialog>

mercurial