browser/components/places/content/bookmarksPanel.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"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
michael@0 7 <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
michael@0 8 <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
michael@0 9 <?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
michael@0 10 <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
michael@0 11
michael@0 12 <!DOCTYPE page SYSTEM "chrome://browser/locale/places/places.dtd">
michael@0 13
michael@0 14 <page id="bookmarksPanel"
michael@0 15 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
michael@0 16 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 17 onload="init();"
michael@0 18 onunload="SidebarUtils.setMouseoverURL('');">
michael@0 19
michael@0 20 <script type="application/javascript"
michael@0 21 src="chrome://browser/content/bookmarks/sidebarUtils.js"/>
michael@0 22 <script type="application/javascript"
michael@0 23 src="chrome://browser/content/bookmarks/bookmarksPanel.js"/>
michael@0 24
michael@0 25 <commandset id="placesCommands"/>
michael@0 26 <commandset id="editMenuCommands"/>
michael@0 27 <menupopup id="placesContext"/>
michael@0 28
michael@0 29 <!-- Bookmarks and history tooltip -->
michael@0 30 <tooltip id="bhTooltip"/>
michael@0 31
michael@0 32 <hbox id="sidebar-search-container" align="center">
michael@0 33 <label id="sidebar-search-label"
michael@0 34 value="&search.label;" accesskey="&search.accesskey;" control="search-box"/>
michael@0 35 <textbox id="search-box" flex="1" type="search" class="compact"
michael@0 36 aria-controls="bookmarks-view"
michael@0 37 oncommand="searchBookmarks(this.value);"/>
michael@0 38 </hbox>
michael@0 39
michael@0 40 <tree id="bookmarks-view" class="sidebar-placesTree" type="places"
michael@0 41 flex="1"
michael@0 42 hidecolumnpicker="true"
michael@0 43 context="placesContext"
michael@0 44 onkeypress="SidebarUtils.handleTreeKeyPress(event);"
michael@0 45 onclick="SidebarUtils.handleTreeClick(this, event, true);"
michael@0 46 onmousemove="SidebarUtils.handleTreeMouseMove(event);"
michael@0 47 onmouseout="SidebarUtils.setMouseoverURL('');">
michael@0 48 <treecols>
michael@0 49 <treecol id="title" flex="1" primary="true" hideheader="true"/>
michael@0 50 </treecols>
michael@0 51 <treechildren id="bookmarks-view-children" view="bookmarks-view"
michael@0 52 class="sidebar-placesTreechildren" flex="1" tooltip="bhTooltip"/>
michael@0 53 </tree>
michael@0 54 </page>

mercurial