[Laszlo-checkins] r10096 - in openlaszlo/trunk/WEB-INF/lps: lfc/views schema
max@openlaszlo.org
max at openlaszlo.org
Fri Jun 27 17:39:21 PDT 2008
Author: max
Date: 2008-06-27 17:39:16 -0700 (Fri, 27 Jun 2008)
New Revision: 10096
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
openlaszlo/trunk/WEB-INF/lps/schema/lfc.lzx
Log:
Change 20080627-maxcarlson-b by maxcarlson at Roboto on 2008-06-27 17:12:11 PDT
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Add documentation for view.onmousedragin, onmousedragout and onmouseupoutside events
Bugs Fixed: LPP-5128 - Add documentation for view onmouseover, onmouseout, onmousedown, onmouseup, onclick, ondblclick, onmousedragin, onmousedragout, onmouseupoutside events
Technical Reviewer: promanik
QA Reviewer: hminsky
Details: lfc.lzx - Add onmousedragin, onmousedragout, onmouseupoutside and missing onloadratio and oniframesloadratio events.
LaszloView.lzs - Add documentation and LzDeclaredEvents for view.onmousedragin, onmousedragout and onmouseupoutside events
Tests: See LPP-5128
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs 2008-06-28 00:37:29 UTC (rev 10095)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs 2008-06-28 00:39:16 UTC (rev 10096)
@@ -253,6 +253,28 @@
*/
var onmouseup = LzDeclaredEvent;
+/** The onmousedragin event is sent when the pointing device button has moved
+ * off the element and back on again while the button is down.
+ * @lzxtype event
+ * @access public
+ */
+var onmousedragin = LzDeclaredEvent;
+
+/** The onmousedragout event is sent when the pointing device is moved off
+ * the element while the button is down.
+ * down.
+ * @lzxtype event
+ * @access public
+ */
+var onmousedragout = LzDeclaredEvent;
+
+/** The onmouseup event is sent when the pointing device button is released
+ * outside the element it went down on.
+ * @lzxtype event
+ * @access public
+ */
+var onmouseupoutside = LzDeclaredEvent;
+
/**
* Sent when a view changes its opacity
* @lzxtype event
Modified: openlaszlo/trunk/WEB-INF/lps/schema/lfc.lzx
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/schema/lfc.lzx 2008-06-28 00:37:29 UTC (rev 10095)
+++ openlaszlo/trunk/WEB-INF/lps/schema/lfc.lzx 2008-06-28 00:39:16 UTC (rev 10096)
@@ -280,13 +280,17 @@
<event name="onkeyup"/>
<event name="onlastframe"/>
<event name="onload"/>
- <event name="onloadperc"/>
+ <event name="onloadratio"/>
+ <event name="onframesloadratio"/>
<event name="onmousedown"/>
<event name="onmouseout"/>
<event name="onmouseover"/>
<event name="onmousetrackover"/>
<event name="onmousetrackup"/>
<event name="onmouseup"/>
+ <event name="onmouseupoutside"/>
+ <event name="onmousedragin"/>
+ <event name="onmousedragout"/>
<event name="onopacity"/>
<event name="onplay"/>
<event name="onremovesubview"/>
More information about the Laszlo-checkins
mailing list