Wed, 31 Dec 2014 06:55:46 +0100
Added tag TORBROWSER_REPLICA for changeset 6474c204b198
michael@0 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
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://browser/skin/" type="text/css"?> |
michael@0 | 8 | <?xml-stylesheet href="chrome://browser/skin/aboutSyncTabs.css" type="text/css"?> |
michael@0 | 9 | <?xml-stylesheet href="chrome://browser/content/sync/aboutSyncTabs.css" type="text/css"?> |
michael@0 | 10 | |
michael@0 | 11 | <!DOCTYPE window [ |
michael@0 | 12 | <!ENTITY % aboutSyncTabsDTD SYSTEM "chrome://browser/locale/aboutSyncTabs.dtd"> |
michael@0 | 13 | %aboutSyncTabsDTD; |
michael@0 | 14 | ]> |
michael@0 | 15 | |
michael@0 | 16 | <window id="tabs-display" |
michael@0 | 17 | onload="RemoteTabViewer.init()" |
michael@0 | 18 | onunload="RemoteTabViewer.uninit()" |
michael@0 | 19 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 20 | xmlns:html="http://www.w3.org/1999/xhtml" |
michael@0 | 21 | title="&tabs.otherDevices.label;"> |
michael@0 | 22 | <script type="application/javascript;version=1.8" src="chrome://browser/content/sync/aboutSyncTabs.js"/> |
michael@0 | 23 | <script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/> |
michael@0 | 24 | <html:head> |
michael@0 | 25 | <html:link rel="icon" href="chrome://browser/skin/sync-16.png"/> |
michael@0 | 26 | </html:head> |
michael@0 | 27 | |
michael@0 | 28 | <popupset id="contextmenus"> |
michael@0 | 29 | <menupopup id="tabListContext"> |
michael@0 | 30 | <menuitem label="&tabs.context.openTab.label;" |
michael@0 | 31 | accesskey="&tabs.context.openTab.accesskey;" |
michael@0 | 32 | oncommand="RemoteTabViewer.openSelected()" |
michael@0 | 33 | showFor="single"/> |
michael@0 | 34 | <menuitem label="&tabs.context.bookmarkSingleTab.label;" |
michael@0 | 35 | accesskey="&tabs.context.bookmarkSingleTab.accesskey;" |
michael@0 | 36 | oncommand="RemoteTabViewer.bookmarkSingleTab(event)" |
michael@0 | 37 | showFor="single"/> |
michael@0 | 38 | <menuitem label="&tabs.context.openMultipleTabs.label;" |
michael@0 | 39 | accesskey="&tabs.context.openMultipleTabs.accesskey;" |
michael@0 | 40 | oncommand="RemoteTabViewer.openSelected()" |
michael@0 | 41 | showFor="multiple"/> |
michael@0 | 42 | <menuitem label="&tabs.context.bookmarkMultipleTabs.label;" |
michael@0 | 43 | accesskey="&tabs.context.bookmarkMultipleTabs.accesskey;" |
michael@0 | 44 | oncommand="RemoteTabViewer.bookmarkSelectedTabs()" |
michael@0 | 45 | showFor="multiple"/> |
michael@0 | 46 | <menuseparator/> |
michael@0 | 47 | <menuitem label="&tabs.context.refreshList.label;" |
michael@0 | 48 | accesskey="&tabs.context.refreshList.accesskey;" |
michael@0 | 49 | oncommand="RemoteTabViewer.buildList()" |
michael@0 | 50 | showFor="all"/> |
michael@0 | 51 | </menupopup> |
michael@0 | 52 | </popupset> |
michael@0 | 53 | <richlistbox context="tabListContext" id="tabsList" seltype="multiple" |
michael@0 | 54 | align="center" flex="1" |
michael@0 | 55 | onclick="RemoteTabViewer.handleClick(event)" |
michael@0 | 56 | oncontextmenu="RemoteTabViewer.adjustContextMenu(event)"> |
michael@0 | 57 | <hbox id="headers" align="center"> |
michael@0 | 58 | <label id="tabsListHeading" |
michael@0 | 59 | value="&tabs.otherDevices.label;"/> |
michael@0 | 60 | <spacer flex="1"/> |
michael@0 | 61 | <textbox type="search" |
michael@0 | 62 | emptytext="&tabs.searchText.label;" |
michael@0 | 63 | oncommand="RemoteTabViewer.filterTabs(event)"/> |
michael@0 | 64 | </hbox> |
michael@0 | 65 | |
michael@0 | 66 | </richlistbox> |
michael@0 | 67 | </window> |
michael@0 | 68 |