OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- This Source Code is subject to the terms of the Mozilla Public License | 3 <!-- This Source Code is subject to the terms of the Mozilla Public License |
4 - version 2.0 (the "License"). You can obtain a copy of the License at | 4 - version 2.0 (the "License"). You can obtain a copy of the License at |
5 - http://mozilla.org/MPL/2.0/. --> | 5 - http://mozilla.org/MPL/2.0/. --> |
6 | 6 |
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
8 <?xml-stylesheet href="chrome://abpwatcher/skin/watcher.css" type="text/css"?> | 8 <?xml-stylesheet href="chrome://abpwatcher/skin/watcher.css" type="text/css"?> |
9 | 9 |
10 <!DOCTYPE dialog SYSTEM "chrome://abpwatcher/locale/watcher.dtd"> | 10 <!DOCTYPE dialog SYSTEM "chrome://abpwatcher/locale/watcher.dtd"> |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 </tooltip> | 48 </tooltip> |
49 <menupopup id="contextMenu" onpopupshowing="return updateContextMenu(event);
"> | 49 <menupopup id="contextMenu" onpopupshowing="return updateContextMenu(event);
"> |
50 <menuitem id="context-copylocation" label="&context.copyLocation.label;" o
ncommand="E('command-copylocation').doCommand();" key="key-copylocation"/> | 50 <menuitem id="context-copylocation" label="&context.copyLocation.label;" o
ncommand="E('command-copylocation').doCommand();" key="key-copylocation"/> |
51 <menuitem id="context-copyfilters" label="&context.copyFilters.label;" onc
ommand="E('command-copyfilters').doCommand();"/> | 51 <menuitem id="context-copyfilters" label="&context.copyFilters.label;" onc
ommand="E('command-copyfilters').doCommand();"/> |
52 </menupopup> | 52 </menupopup> |
53 </popupset> | 53 </popupset> |
54 | 54 |
55 <description id="introduction">&introduction;</description> | 55 <description id="introduction">&introduction;</description> |
56 | 56 |
57 <hbox align="center"> | 57 <hbox align="center"> |
58 <checkbox id="ignore-early" label="&ignore-early.label;" accesskey="&ignore-
early.accesskey;" persist="checked" oncommand="treeView.ignoreEarlyReturns = thi
s.checked"/> | |
59 <spaced width="30"/> | |
60 <label control="filter" value="&filter.label;" accesskey="&filter.accesskey;
"/> | 58 <label control="filter" value="&filter.label;" accesskey="&filter.accesskey;
"/> |
61 <textbox flex="1" id="filterText" type="search" oncommand="treeView.filterSt
ring = this.value"/> | 59 <textbox flex="1" id="filterText" type="search" oncommand="treeView.filterSt
ring = this.value"/> |
62 </hbox> | 60 </hbox> |
63 | 61 |
64 <tree id="list" flex="1" enableColumnDrag="true"> | 62 <tree id="list" flex="1" enableColumnDrag="true"> |
65 <treecols> | 63 <treecols> |
66 <treecol id="address" label="&address.column;" primary="true" flex="4" per
sist="width ordinal sortDirection hidden"/> | 64 <treecol id="address" label="&address.column;" primary="true" flex="4" per
sist="width ordinal sortDirection hidden"/> |
67 <splitter class="tree-splitter"/> | 65 <splitter class="tree-splitter"/> |
68 <treecol id="type" label="&type.column;" flex="0" persist="width ordinal s
ortDirection hidden"/> | 66 <treecol id="type" label="&type.column;" flex="0" persist="width ordinal s
ortDirection hidden"/> |
69 <splitter class="tree-splitter"/> | 67 <splitter class="tree-splitter"/> |
70 <treecol id="result" label="&result.column;" flex="0" persist="width ordin
al sortDirection hidden"/> | 68 <treecol id="result" label="&result.column;" flex="0" persist="width ordin
al sortDirection hidden"/> |
71 <splitter class="tree-splitter"/> | 69 <splitter class="tree-splitter"/> |
72 <treecol id="context" label="&context.column;" flex="1" persist="width ord
inal sortDirection hidden"/> | |
73 <splitter class="tree-splitter"/> | |
74 <treecol id="document" label="&document.column;" hidden="true" flex="1" pe
rsist="width ordinal sortDirection hidden"/> | |
75 <splitter class="tree-splitter"/> | |
76 <treecol id="origin" label="&origin.column;" hidden="true" flex="2" persis
t="width ordinal sortDirection hidden"/> | 70 <treecol id="origin" label="&origin.column;" hidden="true" flex="2" persis
t="width ordinal sortDirection hidden"/> |
77 <splitter class="tree-splitter"/> | 71 <splitter class="tree-splitter"/> |
78 <treecol id="additional" label="&additional.column;" hidden="true" flex="1
" persist="width ordinal sortDirection hidden"/> | |
79 <splitter class="tree-splitter"/> | |
80 <treecol id="filter" label="&filter.column;" flex="1" persist="width ordin
al sortDirection hidden"/> | 72 <treecol id="filter" label="&filter.column;" flex="1" persist="width ordin
al sortDirection hidden"/> |
81 <splitter class="tree-splitter"/> | 73 <splitter class="tree-splitter"/> |
82 <treecol id="time" label="&time.column;" hidden="true" flex="0" persist="w
idth ordinal sortDirection hidden"/> | 74 <treecol id="time" label="&time.column;" hidden="true" flex="0" persist="w
idth ordinal sortDirection hidden"/> |
83 </treecols> | 75 </treecols> |
84 | 76 |
85 <treechildren tooltip="tooltip" context="contextMenu"/> | 77 <treechildren tooltip="tooltip" context="contextMenu"/> |
86 </tree> | 78 </tree> |
87 | 79 |
88 <description id="summary" _template="&summary.text;"/> | 80 <description id="summary" _template="&summary.text;"/> |
89 </dialog> | 81 </dialog> |
OLD | NEW |