2010-08-02 23:37:56 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2012-08-10 20:20:25 +00:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2010-08-02 23:37:56 +00:00
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/aboutSyncTabs.css" type="text/css"?>
|
2012-02-28 16:03:35 +00:00
|
|
|
<?xml-stylesheet href="chrome://browser/content/sync/aboutSyncTabs.css" type="text/css"?>
|
2010-08-02 23:37:56 +00:00
|
|
|
|
|
|
|
<!DOCTYPE window [
|
|
|
|
<!ENTITY % aboutSyncTabsDTD SYSTEM "chrome://browser/locale/aboutSyncTabs.dtd">
|
|
|
|
%aboutSyncTabsDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<window id="tabs-display"
|
|
|
|
onload="RemoteTabViewer.init()"
|
|
|
|
onunload="RemoteTabViewer.uninit()"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
2012-08-30 00:09:32 +00:00
|
|
|
title="&tabs.otherDevices.label;">
|
2012-02-28 16:03:35 +00:00
|
|
|
<script type="application/javascript;version=1.8" src="chrome://browser/content/sync/aboutSyncTabs.js"/>
|
2010-08-02 23:37:56 +00:00
|
|
|
<script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/>
|
|
|
|
<html:head>
|
|
|
|
<html:link rel="icon" href="chrome://browser/skin/sync-16.png"/>
|
|
|
|
</html:head>
|
|
|
|
|
|
|
|
<popupset id="contextmenus">
|
2010-08-20 01:09:38 +00:00
|
|
|
<menupopup id="tabListContext">
|
2010-08-02 23:37:56 +00:00
|
|
|
<menuitem label="&tabs.context.openTab.label;"
|
|
|
|
accesskey="&tabs.context.openTab.accesskey;"
|
|
|
|
oncommand="RemoteTabViewer.openSelected()"
|
|
|
|
showFor="single"/>
|
|
|
|
<menuitem label="&tabs.context.bookmarkSingleTab.label;"
|
|
|
|
accesskey="&tabs.context.bookmarkSingleTab.accesskey;"
|
|
|
|
oncommand="RemoteTabViewer.bookmarkSingleTab(event)"
|
|
|
|
showFor="single"/>
|
|
|
|
<menuitem label="&tabs.context.openMultipleTabs.label;"
|
|
|
|
accesskey="&tabs.context.openMultipleTabs.accesskey;"
|
|
|
|
oncommand="RemoteTabViewer.openSelected()"
|
|
|
|
showFor="multiple"/>
|
|
|
|
<menuitem label="&tabs.context.bookmarkMultipleTabs.label;"
|
|
|
|
accesskey="&tabs.context.bookmarkMultipleTabs.accesskey;"
|
|
|
|
oncommand="RemoteTabViewer.bookmarkSelectedTabs()"
|
|
|
|
showFor="multiple"/>
|
|
|
|
<menuseparator/>
|
|
|
|
<menuitem label="&tabs.context.refreshList.label;"
|
|
|
|
accesskey="&tabs.context.refreshList.accesskey;"
|
|
|
|
oncommand="RemoteTabViewer.buildList()"
|
|
|
|
showFor="all"/>
|
2010-08-20 01:09:38 +00:00
|
|
|
</menupopup>
|
2010-08-02 23:37:56 +00:00
|
|
|
</popupset>
|
|
|
|
<richlistbox context="tabListContext" id="tabsList" seltype="multiple"
|
|
|
|
align="center" flex="1"
|
|
|
|
onclick="RemoteTabViewer.handleClick(event)"
|
|
|
|
oncontextmenu="RemoteTabViewer.adjustContextMenu(event)">
|
|
|
|
<hbox id="headers" align="center">
|
|
|
|
<label id="tabsListHeading"
|
2012-08-30 00:09:32 +00:00
|
|
|
value="&tabs.otherDevices.label;"/>
|
2010-08-02 23:37:56 +00:00
|
|
|
<spacer flex="1"/>
|
|
|
|
<textbox type="search"
|
|
|
|
emptytext="&tabs.searchText.label;"
|
|
|
|
oncommand="RemoteTabViewer.filterTabs(event)"/>
|
|
|
|
</hbox>
|
|
|
|
|
|
|
|
</richlistbox>
|
|
|
|
</window>
|
|
|
|
|