browser/components/places/content/moveBookmarks.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/components/places/content/moveBookmarks.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,53 @@
     1.4 +<?xml version="1.0"?>
     1.5 +
     1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.9 +
    1.10 +<?xml-stylesheet href="chrome://global/skin/"?>
    1.11 +<?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
    1.12 +<?xml-stylesheet href="chrome://browser/content/places/places.css"?>
    1.13 +
    1.14 +<?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
    1.15 +
    1.16 +<!DOCTYPE window [
    1.17 +  <!ENTITY % moveBookmarksDTD SYSTEM "chrome://browser/locale/places/moveBookmarks.dtd">
    1.18 +  %moveBookmarksDTD;
    1.19 +]>
    1.20 +
    1.21 +<dialog id="moveBookmarkDialog"
    1.22 +        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    1.23 +        ondialogaccept="return gMoveBookmarksDialog.onOK(event);"
    1.24 +        title="&window.title;"
    1.25 +        onload="gMoveBookmarksDialog.init();"
    1.26 +        style="&window.style;"
    1.27 +        screenX="24"
    1.28 +        screenY="24"
    1.29 +        persist="screenX screenY width height">
    1.30 +
    1.31 +  <script type="application/javascript"
    1.32 +          src="chrome://browser/content/places/moveBookmarks.js"/>
    1.33 +
    1.34 +  <hbox flex="1">
    1.35 +    <label id="movetolabel" value="&moveTo.label;" control="foldersTree"/>
    1.36 +    <hbox flex="1">
    1.37 +      <tree id="foldersTree"
    1.38 +            class="placesTree"
    1.39 +            flex="1"
    1.40 +            type="places"
    1.41 +            seltype="single"
    1.42 +            hidecolumnpicker="true">
    1.43 +        <treecols>
    1.44 +          <treecol id="title" flex="1" primary="true" hideheader="true"/>
    1.45 +        </treecols>
    1.46 +        <treechildren id="placesListChildren" view="placesList" flex="1"/>
    1.47 +      </tree>
    1.48 +      <vbox>
    1.49 +        <button id="newFolderButton"
    1.50 +                label="&newFolderButton.label;"
    1.51 +                accesskey="&newFolderButton.accesskey;"
    1.52 +                oncommand="gMoveBookmarksDialog.newFolder();"/>
    1.53 +      </vbox>
    1.54 +    </hbox>
    1.55 +  </hbox>
    1.56 +</dialog>

mercurial