X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=0.6.x%2Fjs%2F20_ui%2F00_XUI.js;h=f856e8507f44ae343862c37edc48595db97956f4;hb=3d352d8bf476ab57cc333e8d02d0e6ea5efa69b7;hp=12e614fe8f4b7ba3d3edb3c502a38595ddd424a9;hpb=51e22031f9629d4bc32444a0228930642144ee9e;p=pettanr%2FclientJs.git diff --git a/0.6.x/js/20_ui/00_XUI.js b/0.6.x/js/20_ui/00_XUI.js index 12e614f..f856e85 100644 --- a/0.6.x/js/20_ui/00_XUI.js +++ b/0.6.x/js/20_ui/00_XUI.js @@ -13,53 +13,6 @@ */ X.UI = { - State : { - DEFAULT : 0, - HOVER : 1, - FOCUSED : 2, - DISABLED : 4, - CHECKED : 8, - FIRST_CHILD : 16, - LAST_CHILD : 32 - }, - Dirty : { - CLEAN : 0, - PAINT : 1, // 再描画のみ必要 - LAYOUT : 2, // レイアウト(ボックスサイズ)の再計算が必要 - FONT : 3, // フォントサイズが変更された - CONTENT : 4 // コンテンツが変更された - }, - - Util : { - createChecker : function( str ){ - var ret = {}, - ary = str.split( ',' ), - l = ary.length, - i = 0, v; - for( ; i < l; ){ - v = ary[ i ]; - ret[ v ] = ++i; - ret[ i ] = v; - }; - return ret; - } - }, - - currentRootData : null, - - Layout : { - Base : X.Class.create( - 'X.UI.Layout.Base', - { - overrideAttrsForSelf : null, - overrideAttrsForChild : null, - calculate : X.emptyFunction //function( data, isNeedsDetection, x, y, w, h ) - } - ), - create : function( props ){ - return X.Class._override( new X.UI.Layout.Base, props, true ); - } - } + currentRootData : null }; -