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