[Sie-announce] SIEコード [2447] 不要なElementTimeControlを削除

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 3月 1日 (火) 20:05:09 JST


Revision: 2447
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2447
Author:   dhrname
Date:     2011-03-01 20:05:09 +0900 (Tue, 01 Mar 2011)

Log Message:
-----------
不要なElementTimeControlを削除

Modified Paths:
--------------
    branches/07x/sie.js

Modified: branches/07x/sie.js
===================================================================
--- branches/07x/sie.js	2011-03-01 11:04:25 UTC (rev 2446)
+++ branches/07x/sie.js	2011-03-01 11:05:09 UTC (rev 2447)
@@ -2198,39 +2198,6 @@
 {
   typedef dom::DOMString DOMString;
 */
-/*ElementTimeControlはSVGAnimationElementに統合させる。
- *というのは、多重継承が難しいため
- */
-function ElementTimeControl(ele) {
-  this._tar = ele;
-  /*_beginと_endプロパティはミリ秒数を収納する。リピート時に書き換えられることがある。
-   *_beginはアニメ開始時の秒数。_endはアニメ終了時の秒数。
-   *なお、文書読み込み終了時(アニメ開始時刻)の秒数を0とする。
-   */
-  this._begin = 0;
-  this._end = null;
-  return this;
-};
-ElementTimeControl.prototype = {
-  /*void*/  beginElement : function() {
-    var ttd = this.ownerDocument, evt = ttd.createEvent("TimeEvents");
-    evt.initTimeEvent("beginEvent", ttd.defaultView, 0);
-    this.dispatchEvent(evt);
-  },
-  /*void*/  endElement : function() {
-    var ttd = this.ownerDocument, evt = ttd.createEvent("TimeEvents");
-    evt.initTimeEvent("endEvent", ttd.defaultView, 0);
-    this.dispatchEvent(evt);
-  },
-  /*void*/  beginElementAt : function(/*float*/ offset) {
-    var ntc = this.ownerDocument.documentElement.getCurrentTime();
-    this._begin = offset + ntc;
-  },
-  /*void*/  endElementAt : function(/*float*/ offset) {
-    var ntc = this.ownerDocument.documentElement.getCurrentTime();
-    this._end = offset + ntc;
-  }
-};
 
 function TimeEvent() {
   Event.apply(this);




Sie-announce メーリングリストの案内
Back to archive index