OSDN Git Service

bug fixes superCall, merge X.UI.Gesture to X.UI.AbstructUINode.
[pettanr/clientJs.git] / 0.6.x / js / 20_ui / 06_AbstractUINode.js
index 63bddf4..3bd4cf3 100644 (file)
@@ -10,7 +10,6 @@ var XUI_AbstractUINode = X_EventDispatcher[ 'inherits' ](
                \r
                root              : null,\r
                rootData          : null,\r
-               hoverList         : null,\r
                parent            : null,\r
                parentData        : null,\r
                xnode             : null,\r
@@ -22,11 +21,18 @@ var XUI_AbstractUINode = X_EventDispatcher[ 'inherits' ](
                \r
                role              : 1,\r
                pointerDisabled   : false,\r
-               hoverClassName    : null,\r
                hovering          : false,\r
                \r
                reserveEvents     : null,\r
-               gesture           : null,\r
+               gestureOptions       : null,\r
+               gestureActivated     : null,\r
+               gestureTypes         : null,\r
+               gestureTriggered     : null,\r
+               gestureCanceled      : null,\r
+               gestureCurrentName   : '',\r
+               gestureStartEvent    : null,\r
+               gestureLastEvent     : null,\r
+               gestureLastMoveEvent : null,\r
 \r
                absoluteX         : 0,\r
                absoluteY         : 0,\r
@@ -88,7 +94,7 @@ var XUI_AbstractUINode = X_EventDispatcher[ 'inherits' ](
                        if( attr ){\r
                                for( k in usableAttrs ){\r
                                        def = usableAttrs[ k ];\r
-                                       if( def[ 2 ] === XUI_Attr_USER.XNODE && X_Object_inObject( def.No, attr ) && attr[ k ] !== def[ 0 ] ){\r
+                                       if( def[ 2 ] === XUI_Attr_USER.XNODE && X_Object_inObject( def.No, attr ) && attr[ def.No ] !== def[ 0 ] ){\r
                                                this.xnode[ 'css' ]( XUI_Attr_Rename[ k ] || k, XUI_AbstractUINode_createCssText( this, k ) );\r
                                        };\r
                                };\r
@@ -165,8 +171,8 @@ var XUI_AbstractUINode = X_EventDispatcher[ 'inherits' ](
                                if( v.indexOf( ' ' ) !== -1 ){\r
                                        v = v.split( ' ' );\r
                                } else\r
-                               if( color && X_Type_isNumber( _v = X_Node_CSS_objToIEFilterText( v ) ) ){\r
-                                       v = _v;\r
+                               if( color && X_Type_isNumber( _v = X_Node_CSS_parseColor( v ) ) ){\r
+                                       v = _v; \r
                                } else {\r
                                        // bad\r
                                        return;\r
@@ -185,7 +191,7 @@ var XUI_AbstractUINode = X_EventDispatcher[ 'inherits' ](
                                        ( minusPct  && -1 <= v && v < 0 ) ||\r
                                    ( numerical && 0 <= v ) ||\r
                                    ( auto      && v === XUI_Attr_AUTO ) ||\r
-                                   ( color     && 0 <= v && v <= 0xFFFFFF ) ||\r
+                                   ( color     && ( 0 <= v && v <= 0xFFFFFF ) || ( v !== v ) ) || // isNaN\r
                                    ( list      && list[ v ] )\r
                                ){\r
                                        // good\r
@@ -703,105 +709,16 @@ var XUI_AbstractUINode = X_EventDispatcher[ 'inherits' ](
                        y -= this.boxY;\r
 \r
                        if( 0 <= x && x < this.boxWidth && 0 <= y && y < this.boxHeight ){\r
-                               !this.hovering && ( this.rootData.hoverList[ this.rootData.hoverList.length ] = this );\r
-                               this.rootData.targetNodeData = this;\r
+                               !this.hovering && ( XUI_UINODES_HOVER[ XUI_UINODES_HOVER.length ] = this );\r
+                               XUI_uinodeTarget = this;\r
+                               //console.log( 'hit ' + this.xnode.className() )\r
                                return true;\r
                        };\r
                },\r
                \r
-               /*\r
-                * context を明示しない場合、User が context になる!\r
-                */\r
-               listen : function( type, arg1, arg2, arg3 ){\r
-                       var root, events, counter, f;\r
-                       \r
-                       if( XUI_Event._START_POINTER <= type && type <= XUI_Event._END_POINTER ){\r
-                               if( this.phase < 3 ){\r
-                                       if( !( events = this.reserveEvents ) ) this.reserveEvents = events = [];\r
-                                       events[ events.length ] = [ type, arg1, arg2, arg3 ];\r
-                                       return this;\r
-                               };\r
-                               if( XUI_Event._START_XUI_EVENT < type && type < XUI_Event._END_XUI_EVENT ){\r
-                                       if( !this.gesture ){\r
-                                               this.gesture = new Hammer( this.rootData, this, type );\r
-                                       } else {\r
-                                               this.gesture[ 'listen' ]( type );\r
-                                       };\r
-                               } else {\r
-                                       //console.log( type );\r
-                                       root    = this.rootData;\r
-                                       counter = root.eventCounter;\r
-                                       if( counter[ type ] ){\r
-                                               ++counter[ type ];\r
-                                       } else {\r
-                                               counter[ type ] = 1;                            \r
-                                               root.xnodeInteractiveLayer[ 'listen' ]( XUI_Event.IdToName[ type ], X_UI_eventRellay );\r
-                                       };\r
-                               };\r
-                       };\r
-                       \r
-                       arg1 && arg1.cbKind ? ( f = arg1 ) : ( f = X_Closure_classifyCallbackArgs( arg1, arg2, arg3 ) );\r
-                       if( !f.cbKind ){\r
-                               return X_EventDispatcher_listen.call( this, type, this.User, f );\r
-                       } else\r
-                       if( f.cbKind === X_CLOSURE_FUNC_ONLY ){\r
-                               return X_EventDispatcher_listen.call( this, type, this.User, f.func, f.supplement );\r
-                       };\r
-                       return X_EventDispatcher_listen.apply( this, arguments );\r
-               },\r
-               unlisten : function( type, arg1, arg2, arg3 ){\r
-                       var root, events, i, ev, counter, f;\r
-                       if( XUI_Event._START_POINTER <= type && type <= XUI_Event._END_POINTER ){\r
-                               if( this.phase < 3 ){\r
-                                       if( !( events = this.reserveEvents ) ) return this;\r
-                                       for( i = events.length; i; ){\r
-                                               ev = events[ --i ];\r
-                                               if( ev[ 0 ] === type && ev[ 1 ] === arg1 && ev[ 2 ] === arg2 ){\r
-                                                       events.split( i, 1 );\r
-                                                       return this;\r
-                                               };\r
-                                       }; \r
-                                       return this;\r
-                               };\r
-\r
-                               if( XUI_Event._START_XUI_EVENT < type && type < XUI_Event._END_XUI_EVENT ){\r
-                                       this.gesture && this.gesture[ 'unlisten' ]( type );\r
-                               } else {\r
-                                       root    = this.rootData;\r
-                                       counter = root.eventCounter;\r
-                                       if( !counter[ type ] ) return this;\r
-                                       --counter[ type ];\r
-                                       if( counter[ type ] === 0 ){\r
-                                               root.xnodeInteractiveLayer[ 'unlisten' ]( XUI_Event.IdToName[ type ], X_UI_eventRellay );\r
-                                               delete counter[ type ];\r
-                                       };\r
-                               };\r
-                       };\r
-                       arg1 && arg1.cbKind ? ( f = arg1 ) : ( f = X_Closure_classifyCallbackArgs( arg1, arg2, arg3 ) );\r
-                       if( !f.cbKind ){\r
-                               return X_EventDispatcher_unlisten.apply( this, [ type, this.User, f ] );\r
-                       } else\r
-                       if( f.cbKind === X_CLOSURE_FUNC_ONLY ){\r
-                               return X_EventDispatcher_unlisten.apply( this, [ type, this.User, f.func, f.supplement ] );\r
-                       };\r
-                       return X_EventDispatcher_unlisten.apply( this, arguments );\r
-               },\r
+               listen : XUI_$UINodeBase_listen,\r
                \r
-               dispatch : function( e ){\r
-                       //console.log( e.type + ' ' + ( this[ '_listeners' ] && this[ '_listeners' ][ e.type ] ) );\r
-                       var xve  = XUI_Event,\r
-                               ret  = X_EventDispatcher_dispatch.call( this, e ),\r
-                               type = e.type || e;\r
-                       \r
-                       // TODO captureEvent PointerEvent\r
-                       if( ret & X_CALLBACK_CAPTURE_POINTER && !this.hitChildData && XUI_Event._POINTER_MOVE === type ){\r
-                               this.rootData.monopolyNodeData = this;\r
-                               return ret;\r
-                       };\r
-                       this.rootData.monopolyNodeData = null;\r
-                       if( xve._START_BUBLEUP < type && this.parentData && !( ret & X_CALLBACK_STOP_PROPAGATION ) && !( ret & X_CALLBACK_STOP_NOW ) ) return this.parentData[ 'dispatch' ]( e );\r
-                       return ret;\r
-               },\r
+               unlisten : XUI_$UINodeBase_unlisten,\r
                \r
                setItemData : function( itemData ){\r
                        if( this.itemData === itemData ) return;\r
@@ -878,13 +795,16 @@ function XUI_AbstractUINode_createCssValue( v, type, list ){
        \r
        if( X_Type_isNumber( v ) ){\r
                if( auto && v === XUI_Attr_AUTO ) return 'auto';\r
-               if( length || minusLen ) return v + 'em';\r
+               if( length || minusLen ) return v ? v + 'em' : 0;\r
                if( numerical ) return v;\r
                if( list && list[ v ] ) return list[ v ];\r
                if( color ){\r
                        if( v < 0x100000 ){\r
                                v = '00000' + v.toString( 16 );\r
                                return '#' + v.substr( v.length - 6 );\r
+                       } else\r
+                       if( v !== v ){ // iSNaN\r
+                               return 'none';\r
                        };\r
                        return '#' + v.toString( 16 );\r
                };\r
@@ -971,7 +891,15 @@ X.UI.AbstractUINode = X_Class_create(
                },\r
                \r
                listen : function( type, arg1, arg2, arg3 ){\r
-                       X_Pair_get( this )[ 'listen' ]( type, arg1, arg2, arg3 );\r
+                       var pair = X_Pair_get( this );\r
+                       \r
+                       ( !arg1 || !arg1.cbKind ) && ( arg1 = X_Closure_classifyCallbackArgs( arg1, arg2, arg3, this ) );\r
+                       \r
+                       if( arg1.cbKind === X_CLOSURE_FUNC_ONLY ){\r
+                               pair[ 'listen' ].apply( pair, [ type, this, arg1.func, arg1.supplement ] );\r
+                       } else {\r
+                               pair[ 'listen' ]( type, arg1.context, arg1.func, arg1.supplement );\r
+                       };\r
                        return this;\r
                },\r
                listenOnce : function( type, arg1, arg2, arg3 ){\r
@@ -982,7 +910,15 @@ X.UI.AbstractUINode = X_Class_create(
                        return X_Pair_get( this )[ 'listening' ]( type, arg1, arg2, arg3 );\r
                },\r
                unlisten : function( type, arg1, arg2, arg3 ){\r
-                       X_Pair_get( this )[ 'unlisten' ]( type, arg1, arg2, arg3 );\r
+                       var pair = X_Pair_get( this );\r
+                       \r
+                       ( !arg1 || !arg1.cbKind ) && ( arg1 = X_Closure_classifyCallbackArgs( arg1, arg2, arg3, this ) );\r
+                       \r
+                       if( arg1.cbKind === X_CLOSURE_FUNC_ONLY ){\r
+                               pair[ 'unlisten' ].apply( pair, [ type, this, arg1.func, arg1.supplement ] );\r
+                       } else {\r
+                               pair[ 'unlisten' ]( type, arg1.context, arg1.func, arg1.supplement );\r
+                       };\r
                        return this;\r
                },\r
                dispatch : function( e ){\r