Lines Matching refs:container

268 Graph = function(container, model, renderHint, stylesheet, themes, standalone)  argument
270 mxGraph.call(this, container, model, renderHint, stylesheet);
965 (mxUtils.hasScrollbars(this.graph.container) && mxClient.IS_FF &&
976 prevCursor = this.container.style.cursor;
977 this.container.style.cursor = 'move';
985 this.container.style.cursor = prevCursor;
1184 var pt = mxUtils.convertPoint(this.container,
1359 graph.container.style.visibility = 'hidden';
1360 graph.container.style.position = 'absolute';
1361 graph.container.style.overflow = 'hidden';
1362 graph.container.style.height = '1px';
1363 graph.container.style.width = '1px';
2047 Graph.prototype.init = function(container) argument
2135 if (this.container != null && this.flowAnimationStyle)
3960 var container = null;
3973 (container == null || tempCells[i] == this.model.getParent(source)))
3975 container = tempCells[i];
4017 target = container;
4066 if (container != null)
4068 this.addCells([realTarget], container, null, null, null, true);
4698 var cw = this.container.clientWidth - border;
4699 var ch = this.container.clientHeight - border;
4703 if (mxUtils.hasScrollbars(this.container))
4706 this.container.scrollTop = (bounds.y + t.y) * scale -
4708 this.container.scrollLeft = (bounds.x + t.x) * scale -
5028 mxEvent.addListener(this.graph.container, 'scroll', this.resetHandler);
5037 mxEvent.addListener(this.graph.container, 'mouseleave', mxUtils.bind(this, function(evt)
5040 if (evt.relatedTarget != null && mxEvent.getSource(evt) == this.graph.container)
5116 var pt = mxUtils.convertPoint(this.graph.container,
5192 this.mouseDownPoint = mxUtils.convertPoint(this.graph.container,
5771 this.graph.container.appendChild(this.arrowUp);
5772 this.graph.container.appendChild(this.arrowDown);
5775 this.graph.container.appendChild(this.arrowRight);
5776 this.graph.container.appendChild(this.arrowLeft);
8920 var pt = mxUtils.convertPoint(this.container, mxEvent.getClientX(evt), mxEvent.getClientY(evt));
8955 var dx = this.container.scrollLeft / this.view.scale - this.view.translate.x;
8956 var dy = this.container.scrollTop / this.view.scale - this.view.translate.y;
8994 if (mxUtils.hasScrollbars(this.container))
8997 this.snap(Math.round((this.container.scrollLeft + this.container.clientWidth / 2) /
8999 this.snap(Math.round((this.container.scrollTop + this.container.clientHeight / 2) /
9005 this.snap(Math.round(this.container.clientWidth / 2 / this.view.scale -
9007 this.snap(Math.round(this.container.clientHeight / 2 / this.view.scale -
9091 var links = this.container.getElementsByTagName('a');
9116 var cursor = this.container.style.cursor;
9165 this.scrollLeft = graph.container.scrollLeft;
9166 this.scrollTop = graph.container.scrollTop;
9168 if (this.currentLink == null && graph.container.style.overflow == 'auto')
9170 graph.container.style.cursor = 'move';
9236 (((Math.abs(this.scrollLeft - graph.container.scrollLeft) < tol &&
9237 Math.abs(this.scrollTop - graph.container.scrollTop) < tol) &&
9263 (Math.abs(this.scrollLeft - graph.container.scrollLeft) < tol &&
9264 Math.abs(this.scrollTop - graph.container.scrollTop) < tol) &&
9281 graph.container.style.cursor = 'pointer';
9291 if (graph.container != null)
9293 graph.container.style.cursor = cursor;
10804 this.container.style.cursor = me.state.shape.node.style.cursor;
10811 this.container.style.cursor = 'default';
11513 this.graph.container.focus();
11632 this.graph.container.appendChild(this.hint);
12172 this.graph.container.appendChild(moveHandle);
12278 this.state.view.graph.container.appendChild(this.hint);
12363 this.state.view.graph.container.appendChild(this.hint);
12671 var origin = mxUtils.getScrollOrigin(this.graph.container);
12672 var offset = mxUtils.getOffset(this.graph.container);
12733 this.div.style.height = this.graph.container.clientHeight + 'px';
12744 this.secondDiv.style.width = this.graph.container.clientWidth + 'px';
13098 this.graph.container.appendChild(this.linkHint);