mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
116 lines
4.2 KiB
XML
116 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
-
|
|
- The contents of this file are subject to the Mozilla Public License Version
|
|
- 1.1 (the "License"); you may not use this file except in compliance with
|
|
- the License. You may obtain a copy of the License at
|
|
- http://www.mozilla.org/MPL/
|
|
-
|
|
- Software distributed under the License is distributed on an "AS IS" basis,
|
|
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
- for the specific language governing rights and limitations under the
|
|
- License.
|
|
-
|
|
- The Original Code is Mozilla XForms support.
|
|
-
|
|
- The Initial Developer of the Original Code is
|
|
- Merle Sterling
|
|
- Portions created by the Initial Developer are Copyright (C) 2007
|
|
- the Initial Developer. All Rights Reserved.
|
|
-
|
|
- Contributor(s):
|
|
- Merle Sterling <msterlin@us.ibm.com>
|
|
-
|
|
- Alternatively, the contents of this file may be used under the terms of
|
|
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
- in which case the provisions of the GPL or the LGPL are applicable instead
|
|
- of those above. If you wish to allow use of your version of this file only
|
|
- under the terms of either the GPL or the LGPL, and not to allow others to
|
|
- use your version of this file under the terms of the MPL, indicate your
|
|
- decision by deleting the provisions above and replace them with the notice
|
|
- and other provisions required by the GPL or the LGPL. If you do not delete
|
|
- the provisions above, a recipient may use your version of this file under
|
|
- the terms of any one of the MPL, the GPL or the LGPL.
|
|
-
|
|
- ***** END LICENSE BLOCK ***** -->
|
|
|
|
<bindings xmlns="http://www.mozilla.org/xbl"
|
|
xmlns:xbl="http://www.mozilla.org/xbl"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns:mozType="http://www.mozilla.org/projects/xforms/2005/type"
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<!-- The file contains implementations of xforms range control for xul context.
|
|
All xforms range bindings should be extended from'xformswidget-range-base'
|
|
binding declared in 'range.xml' file.
|
|
-->
|
|
|
|
<!-- RANGE: <DATESANDTIMES>
|
|
The datesandtimes binding is used for all range types related to
|
|
dates and times: dateTime, date, time, gDay, gMonth, gMonthDay, gYear,
|
|
gYearMonth, dayTimeDuration, and yearMonthDuration.
|
|
-->
|
|
<binding id="xformswidget-range-datesandtimes"
|
|
extends="chrome://xforms/content/range.xml#xformswidget-range-base">
|
|
|
|
<content>
|
|
<children includes="label"/>
|
|
<xul:box class="xf-value" anonid="control"
|
|
xbl:inherits="start=start,end=end,step=step,mozType:tabindex=tabindex"/>
|
|
<children/>
|
|
</content>
|
|
|
|
<implementation implements="nsIAccessibleProvider">
|
|
|
|
<property name="accessibleType" readonly="true">
|
|
<getter>
|
|
// XXX: Bug 371163.
|
|
return Components.interfaces.nsIAccessibleProvider.XFormsContainer;
|
|
</getter>
|
|
</property>
|
|
|
|
<method name="isInRange">
|
|
<parameter name="aValue"/>
|
|
<body>
|
|
return this.control.isInRange(aValue);
|
|
</body>
|
|
</method>
|
|
|
|
<method name="getControlElement">
|
|
<body>
|
|
return {
|
|
__proto__: this.ownerDocument.
|
|
getAnonymousElementByAttribute(this, "anonid", "control"),
|
|
|
|
set readonly() {
|
|
// XXX: bug 343523
|
|
}
|
|
};
|
|
</body>
|
|
</method>
|
|
|
|
<constructor>
|
|
// The ValueChange event is generated by the range widget defined
|
|
// in "widgets.xml".
|
|
var changeHandler = {
|
|
range: this,
|
|
handleEvent: function(aEvent) {
|
|
this.range.updateInstanceData(true);
|
|
}
|
|
};
|
|
this.control.addEventListener("ValueChange", changeHandler, false);
|
|
</constructor>
|
|
</implementation>
|
|
|
|
<handlers>
|
|
<handler event="blur" phase="capturing">
|
|
this.updateInstanceData(false);
|
|
</handler>
|
|
</handlers>
|
|
</binding>
|
|
|
|
</bindings>
|