74 lines
3.0 KiB
XML
74 lines
3.0 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- 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/. -->
|
|
<!-- import-globals-from in-content/main.js -->
|
|
|
|
<bindings id="handlerBindings"
|
|
xmlns="http://www.mozilla.org/xbl"
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:xbl="http://www.mozilla.org/xbl">
|
|
|
|
<binding id="handler" extends="chrome://global/content/bindings/richlistbox.xml#richlistitem">
|
|
<implementation>
|
|
<property name="type" readonly="true">
|
|
<getter>
|
|
return this.getAttribute("type");
|
|
</getter>
|
|
</property>
|
|
<!-- Overriding listitem -->
|
|
<property name="selected" onget="return this.getAttribute('selected') == 'true';">
|
|
<setter><![CDATA[
|
|
if (val) {
|
|
this.setAttribute("selected", "true");
|
|
gMainPane.rebuildActionsMenu();
|
|
} else {
|
|
this.removeAttribute("selected");
|
|
}
|
|
|
|
document.getAnonymousElementByAttribute(this, "anonid", "selected").setAttribute("hidden", !val);
|
|
document.getAnonymousElementByAttribute(this, "anonid", "not-selected").setAttribute("hidden", !!val);
|
|
|
|
return val;
|
|
]]></setter>
|
|
</property>
|
|
</implementation>
|
|
<content>
|
|
<xul:hbox flex="1" equalsize="always">
|
|
<xul:hbox flex="1" align="center" xbl:inherits="tooltiptext=typeDescription">
|
|
<xul:image src="moz-icon://goat?size=16" class="typeIcon"
|
|
xbl:inherits="src=typeIcon" height="16" width="16"/>
|
|
<xul:label flex="1" crop="end" xbl:inherits="value=typeDescription"/>
|
|
</xul:hbox>
|
|
<xul:hbox anonid="not-selected" flex="1" align="center" xbl:inherits="tooltiptext=actionDescription">
|
|
<xul:image xbl:inherits="src=actionIcon" height="16" width="16" class="actionIcon"/>
|
|
<xul:label flex="1" crop="end" xbl:inherits="value=actionDescription"/>
|
|
</xul:hbox>
|
|
<xul:hbox hidden="true" anonid="selected" flex="1">
|
|
<xul:menulist class="actionsMenu" flex="1" crop="end" selectedIndex="1"
|
|
xbl:inherits="tooltiptext=actionDescription"
|
|
oncommand="gMainPane.onSelectAction(event.originalTarget)">
|
|
<xul:menupopup/>
|
|
</xul:menulist>
|
|
</xul:hbox>
|
|
</xul:hbox>
|
|
</content>
|
|
</binding>
|
|
|
|
<binding id="container">
|
|
<content>
|
|
<xul:hbox flex="1" equalsize="always">
|
|
<xul:hbox flex="1" align="center">
|
|
<xul:hbox xbl:inherits="data-identity-icon=containerIcon,data-identity-color=containerColor" height="24" width="24" class="userContext-icon"/>
|
|
<xul:label flex="1" crop="end" xbl:inherits="xbl:text=containerName,highlightable"/>
|
|
</xul:hbox>
|
|
<xul:hbox flex="1" align="right">
|
|
<children />
|
|
</xul:hbox>
|
|
</xul:hbox>
|
|
</content>
|
|
</binding>
|
|
|
|
</bindings>
|