OSDN Git Service

Version 0.6.137, fix X.EventDispatcher.unlisten & remove X.Node.destroy.
[pettanr/clientJs.git] / 0.6.x / js / 02_dom / 00_XDoc.js
index ddea5de..48251a6 100644 (file)
@@ -1,35 +1,81 @@
-
-
-X.Doc = {
-       listen : function( type, arg1, arg2, arg3 ){
+/**
+ * document をラップする
+ * @namespace X.Doc
+ * @alias X.Doc
+ */
+X[ 'Doc' ] = {
+       'listen' : function( type, arg1, arg2, arg3 ){
                if( type <= X_ViewPort_readyState && type === 'DOMContentLoaded' ){
                        /*
                         * X.Event.XDOM_READY 以後に listen した場合の対策
                         */
-                       X_ViewPort_document.asyncDispatch( type );
+                       X_ViewPort_document[ 'asyncDispatch' ]( type );
                };
-               type && arg1 && X_ViewPort_document.listen( type, arg1, arg2, arg3 );
-               return X.Doc;
+               type && arg1 && X_ViewPort_document[ 'listen' ]( type, arg1, arg2, arg3 );
+               return X[ 'Doc' ];
        },
        
        
-       listenOnce : function( type, arg1, arg2, arg3 ){
+       'listenOnce' : function( type, arg1, arg2, arg3 ){
                if( type <= X_ViewPort_readyState && type === 'DOMContentLoaded' ){
                        /*
                         * X.Event.XDOM_READY 以後に listen した場合の対策
                         */
-                       X_ViewPort_document.asyncDispatch( type );
+                       X_ViewPort_document[ 'asyncDispatch' ]( type );
                };
-               type && arg1 && X_ViewPort_document.listenOnce( type, arg1, arg2, arg3 );
-               return X.Doc;
+               type && arg1 && X_ViewPort_document[ 'listenOnce' ]( type, arg1, arg2, arg3 );
+               return X[ 'Doc' ];
        },
        
-       unlisten : function( type, arg1, arg2, arg3 ){
-               type && arg1 && X_ViewPort_document.unlisten( type, arg1, arg2, arg3 );
-               return X.Doc;
+       'unlisten' : function( type, arg1, arg2, arg3 ){
+               type && arg1 && X_ViewPort_document[ 'unlisten' ]( type, arg1, arg2, arg3 );
+               return X[ 'Doc' ];
        },
        
-       listening : function( type, arg1, arg2, arg3 ){
-               return X_ViewPort_document.listening( type, arg1, arg2, arg3 );
-       }
+       'listening' : function( type, arg1, arg2, arg3 ){
+               return X_ViewPort_document[ 'listening' ]( type, arg1, arg2, arg3 );
+       },
+       
+       'create'     : X_Doc_create,
+       
+       'createText' : X_Doc_createText
+       
+       // html
+       // head
+       // body
+       // find
+};
+
+/**
+ * X.Node 要素を作成する。この時点でツリーには追加されない。
+ * @alias X.Doc.create
+ * @param {string} tag タグ名
+ * @param {object} opt_attrs 属性
+ * @param {object} opt_css スタイル
+ * @return {Node}
+ */
+function X_Doc_create( tag, opt_attrs, opt_css ){
+       var list, i;
+       switch( X_Node_getType( tag ) ){
+               case X_Node_TYPE.STRING :
+                       X_Node_newByTag = true;
+                       return new Node( tag, opt_attrs, opt_css );
+               case X_Node_TYPE.HTML_STRING :
+                       list = X_HtmlParser_parse( tag, true );
+                       for( i = list.length; 1 < i; ){
+                               list[ --i ][ 'kill' ]();
+                       };
+                       return list[ 0 ];
+       };
+};
+
+/**
+ * X.Node テキストを作成する。この時点でツリーには追加されない。
+ * @alias X.Doc.createText
+ * @param {string} textContent
+ * @return {Node}
+ */
+function X_Doc_createText( text ){
+       X_Node_newByText = true;
+       return new Node( text );
 };