зеркало из https://github.com/mozilla/gecko-dev.git
61 строка
2.6 KiB
XML
61 строка
2.6 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/. -->
|
|
|
|
|
|
<bindings id="generalBindings"
|
|
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="basecontrol">
|
|
<implementation implements="nsIDOMXULControlElement">
|
|
<!-- public implementation -->
|
|
<property name="disabled" onset="if (val) this.setAttribute('disabled', 'true');
|
|
else this.removeAttribute('disabled');
|
|
return val;"
|
|
onget="return this.getAttribute('disabled') == 'true';"/>
|
|
<property name="tabIndex" onget="return parseInt(this.getAttribute('tabindex')) || 0"
|
|
onset="if (val) this.setAttribute('tabindex', val);
|
|
else this.removeAttribute('tabindex'); return val;"/>
|
|
</implementation>
|
|
</binding>
|
|
|
|
<binding id="basetext" extends="chrome://global/content/bindings/general.xml#basecontrol">
|
|
<implementation>
|
|
<!-- public implementation -->
|
|
<property name="label" onset="this.setAttribute('label',val); return val;"
|
|
onget="return this.getAttribute('label');"/>
|
|
<property name="crop" onset="this.setAttribute('crop',val); return val;"
|
|
onget="return this.getAttribute('crop');"/>
|
|
<property name="image" onset="this.setAttribute('image',val); return val;"
|
|
onget="return this.getAttribute('image');"/>
|
|
<property name="command" onset="this.setAttribute('command',val); return val;"
|
|
onget="return this.getAttribute('command');"/>
|
|
<property name="accessKey">
|
|
<getter>
|
|
<![CDATA[
|
|
return this.labelElement ? this.labelElement.accessKey : this.getAttribute("accesskey");
|
|
]]>
|
|
</getter>
|
|
<setter>
|
|
<![CDATA[
|
|
// Always store on the control
|
|
this.setAttribute("accesskey", val);
|
|
// If there is a label, change the accesskey on the labelElement
|
|
// if it's also set there
|
|
if (this.labelElement) {
|
|
this.labelElement.accessKey = val;
|
|
}
|
|
return val;
|
|
]]>
|
|
</setter>
|
|
</property>
|
|
|
|
<field name="labelElement"/>
|
|
</implementation>
|
|
</binding>
|
|
|
|
</bindings>
|