Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <?xml version="1.0"?> |
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 | <bindings id="tabBindings" |
michael@0 | 8 | xmlns="http://www.mozilla.org/xbl" |
michael@0 | 9 | xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 10 | xmlns:xbl="http://www.mozilla.org/xbl"> |
michael@0 | 11 | |
michael@0 | 12 | <binding id="tab-listing" extends="chrome://global/content/bindings/richlistbox.xml#richlistitem"> |
michael@0 | 13 | <content> |
michael@0 | 14 | <xul:hbox flex="1"> |
michael@0 | 15 | <xul:vbox pack="start"> |
michael@0 | 16 | <xul:image class="tabIcon" |
michael@0 | 17 | xbl:inherits="src=icon"/> |
michael@0 | 18 | </xul:vbox> |
michael@0 | 19 | <xul:vbox pack="start" flex="1"> |
michael@0 | 20 | <xul:label xbl:inherits="value=title,selected" |
michael@0 | 21 | crop="end" flex="1" class="title"/> |
michael@0 | 22 | <xul:label xbl:inherits="value=url,selected" |
michael@0 | 23 | crop="end" flex="1" class="url"/> |
michael@0 | 24 | </xul:vbox> |
michael@0 | 25 | </xul:hbox> |
michael@0 | 26 | </content> |
michael@0 | 27 | <handlers> |
michael@0 | 28 | <handler event="dblclick" button="0"> |
michael@0 | 29 | <![CDATA[ |
michael@0 | 30 | RemoteTabViewer.openSelected(); |
michael@0 | 31 | ]]> |
michael@0 | 32 | </handler> |
michael@0 | 33 | </handlers> |
michael@0 | 34 | </binding> |
michael@0 | 35 | |
michael@0 | 36 | <binding id="client-listing" extends="chrome://global/content/bindings/richlistbox.xml#richlistitem"> |
michael@0 | 37 | <content> |
michael@0 | 38 | <xul:hbox pack="start" align="center" onfocus="event.target.blur()" onselect="return false;"> |
michael@0 | 39 | <xul:image/> |
michael@0 | 40 | <xul:label xbl:inherits="value=clientName" |
michael@0 | 41 | class="clientName" |
michael@0 | 42 | crop="center" flex="1"/> |
michael@0 | 43 | </xul:hbox> |
michael@0 | 44 | </content> |
michael@0 | 45 | </binding> |
michael@0 | 46 | </bindings> |