7 boxSizingEnabled : false,
\r
9 // TODO: offsetLeft, offsetTop の基準位置
\r
18 X.Dom.listenOnce( X.Dom.Event.DOM_INIT, function(){
\r
20 var node = Node._systemNode,
\r
22 // http://jsdo.it/imaya/kTYg
\r
23 body = document.body,
\r
24 defaultOverflow = document.body.style.overflow,
\r
27 body.style.overflow = 'hidden';
\r
28 w = body.clientWidth;
\r
29 h = body.clientHeight;
\r
31 body.style.overflow = 'scroll';
\r
32 w -= body.clientWidth;
\r
33 h -= body.clientHeight;
\r
35 if( !w ) w = body.offsetWidth - body.clientWidth;
\r
36 if( !h ) h = body.offsetHeight - body.clientHeight;
\r
37 body.style.overflow = defaultOverflow;
\r
39 X.Dom.BoxModel.vScrollbarSize = w;
\r
40 X.Dom.BoxModel.hScrollbarSize = h;
\r
41 if( h <= 0 ){ // ie6, ie11, firefox で 負の値が返る
\r
42 console.log( 'invalid hScrollbarSize: ' + h );
\r
43 X.Dom.BoxModel.hScrollbarSize = w;
\r
47 node.cssText( 'width:10px;padding:1px;border:2px solid #0;margin:4px;' );
\r
49 X.Dom.BoxModel.defaultBoxModel = node.width() === 10 ?
\r
50 X.Dom.BoxModel.BORDER_BOX :
\r
51 X.Dom.BoxModel.CONTENT_BOX;
\r
53 if( X.Dom.BoxModel.defaultBoxModel === X.Dom.BoxModel.CONTENT_BOX ){
\r
54 X.Dom.BoxModel.boxSizingEnabled = node.cssText( 'width:10px;padding:1px;border:2px solid #0;margin:4px;' +
\r
55 'box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;' )
\r
63 X.Dom.BoxModel.absoluteOffset =
\r
64 node.cssText( 'position:absolute;top:0;left:0;margin:1px;border:2px solid #000;padding:4px;' )
\r
65 .append( '<div></div>' )
\r
66 .firstChild().cssText( 'position:absolute;top:8px;left:8px;margin:16px;border:32px solid #666;padding:64px;' )
\r
69 node.cssText( '' ).empty();
\r
72 /* --------------------------------------
\r
74 * display:blobk かつ overflow:hidden かつ size(px,em)が設定されていたら、再描画しないでその値を返す
\r
78 * getBoundingClientRect
\r
80 Node.prototype.width = function(){
\r
81 if( !this.parent ){// todo : _state で tree に所属しているか?判定
\r
82 console.log( 'xnode.width() : no parent' );
\r
85 Node._body._updateTimerID && Node._body._startUpdate();
\r
87 console.log( 'xnode.width() : not belong tree.' );
\r
90 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
91 if( X.Dom.DOM_W3C ){
\r
92 // this.css( X.Dom.Style.Unit.px, 'width' );
\r
93 return this._rawNode.offsetWidth;
\r
95 if( X.Dom.DOM_IE4 ){
\r
96 return ( this._rawNode || this._ie4getRawNode() ).offsetWidth;
\r
102 Node.prototype.height = function(){
\r
103 if( !this.parent ){
\r
104 console.log( 'xnode.height() : no parent' );
\r
107 Node._body._updateTimerID && Node._body._startUpdate();
\r
109 console.log( 'xnode.height() : not belong tree.' );
\r
112 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
113 if( X.Dom.DOM_W3C ){
\r
114 // this.css( X.Dom.Style.Unit.px, 'height' );
\r
115 return this._rawNode.offsetHeight;
\r
117 if( X.Dom.DOM_IE4 ){
\r
118 return ( this._rawNode || this._ie4getRawNode() ).offsetHeight;
\r
124 Node.prototype.scrollWidth = function(){
\r
125 if( !this.parent ){// todo : _state で tree に所属しているか?判定
\r
126 console.log( 'xnode.width() : no parent' );
\r
129 Node._body._updateTimerID && Node._body._startUpdate();
\r
131 console.log( 'xnode.width() : not belong tree.' );
\r
134 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
135 if( X.Dom.DOM_W3C ){
\r
136 // this.css( X.Dom.Style.Unit.px, 'width' );
\r
137 return this._rawNode.scrollWidth;
\r
139 if( X.Dom.DOM_IE4 ){
\r
140 return ( this._rawNode || this._ie4getRawNode() ).scrollWidth;
\r
146 Node.prototype.scrollHeight = function(){
\r
147 if( !this.parent ){
\r
148 console.log( 'xnode.height() : no parent' );
\r
151 Node._body._updateTimerID && Node._body._startUpdate();
\r
153 console.log( 'xnode.height() : not belong tree.' );
\r
156 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
157 if( X.Dom.DOM_W3C ){
\r
158 // this.css( X.Dom.Style.Unit.px, 'height' );
\r
159 return this._rawNode.scrollHeight;
\r
161 if( X.Dom.DOM_IE4 ){
\r
162 return ( this._rawNode || this._ie4getRawNode() ).scrollHeight;
\r
168 Node.prototype.scrollLeft = function(){
\r
169 if( !this.parent ){// todo : _state で tree に所属しているか?判定
\r
170 console.log( 'xnode.scrollLeft() : no parent' );
\r
173 Node._body._updateTimerID && Node._body._startUpdate();
\r
175 console.log( 'xnode.scrollLeft() : not belong tree.' );
\r
178 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
179 if( X.Dom.DOM_W3C ){
\r
180 // this.css( X.Dom.Style.Unit.px, 'width' );
\r
181 return this._rawNode.scrollLeft;
\r
183 if( X.Dom.DOM_IE4 ){
\r
184 return ( this._rawNode || this._ie4getRawNode() ).scrollLeft;
\r
190 Node.prototype.scrollTop = function(){
\r
191 if( !this.parent ){// todo : _state で tree に所属しているか?判定
\r
192 console.log( 'xnode.scrollTop() : no parent' );
\r
195 Node._body._updateTimerID && Node._body._startUpdate();
\r
197 console.log( 'xnode.scrollTop() : not belong tree.' );
\r
200 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
201 if( X.Dom.DOM_W3C ){
\r
202 // this.css( X.Dom.Style.Unit.px, 'width' );
\r
203 return this._rawNode.scrollTop;
\r
205 if( X.Dom.DOM_IE4 ){
\r
206 return ( this._rawNode || this._ie4getRawNode() ).scrollTop;
\r
212 /* --------------------------------------
\r
214 * position:absolute かつ x か y が設定されていたら、再描画しないで css オブジェクトから計算した値を返す。 float は?
\r
215 * position:absolute の指定で自動で top,left を補う必要あり? -> X.Dom.Style
\r
216 * 親要素 border 外側からの値。 IE, Firefox, Safari, Chrome の offsetLeft/Topでは、border 内側なので補正する。
\r
217 * transformX, Y は加える? アニメーション中は?
\r
219 // X.Dom.Style.transform,
\r
220 Node.prototype.x = function(){
\r
221 if( !this.parent ){
\r
222 console.log( 'xnode.x() : no parent' );
\r
225 Node._body._updateTimerID && Node._body._startUpdate();
\r
227 console.log( 'xnode.x() : not belong tree.' );
\r
230 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
231 if( X.Dom.DOM_W3C ){
\r
232 // this.css( X.Dom.Style.Unit.px, 'left' );
\r
233 // this.css( X.Dom.Style.Unit.px, 'translateX' );
\r
234 return this._rawNode.offsetLeft;
\r
236 if( X.Dom.DOM_IE4 ){
\r
237 return ( this._rawNode || this._ie4getRawNode() ).offsetLeft;
\r
243 Node.prototype.y = function(){
\r
244 if( !this.parent ){
\r
245 console.log( 'xnode.y() : no parent' );
\r
248 Node._body._updateTimerID && Node._body._startUpdate();
\r
250 console.log( 'xnode.y() : not belong tree.' );
\r
253 if( this._state & X.Dom.State.DISPLAY_NONE ) return 0;
\r
254 if( X.Dom.DOM_W3C ){
\r
255 // this.css( X.Dom.Style.Unit.px, 'top' );
\r
256 // this.css( X.Dom.Style.Unit.px, 'transisitonY' );
\r
257 return this._rawNode.offsetTop;
\r
259 if( X.Dom.DOM_IE4 ){
\r
260 return ( this._rawNode || this._ie4getRawNode() ).offsetTop;
\r