summaryrefslogtreecommitdiffstats
path: root/webbrowser/components/sync/aboutSyncTabs.xul
blob: a4aa0032f15e025b74d7c90bda45572348c02d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>

<!-- 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/. -->

<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/aboutSyncTabs.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/sync/aboutSyncTabs.css" type="text/css"?>

<!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"
        title="&tabs.otherDevices.label;">
  <script type="application/javascript;version=1.8" src="chrome://browser/content/sync/aboutSyncTabs.js"/>
  <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">
    <menupopup id="tabListContext">
      <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"/>
    </menupopup>
  </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"
             value="&tabs.otherDevices.label;"/>
      <spacer flex="1"/>
      <textbox type="search"
               emptytext="&tabs.searchText.label;"
               oncommand="RemoteTabViewer.filterTabs(event)"/>
    </hbox>

  </richlistbox>
</window>