Lines Matching refs:view
188 graph.view.clear(page.root, true);
207 graph.view.validate();
420 var graphViewValidateBackground = graph.view.validateBackground;
422 graph.view.validateBackground = mxUtils.bind(this, function()
444 graphViewValidateBackground.apply(graph.view, arguments);
476 … graph.container.scrollLeft = graph.view.translate.x * graph.view.scale + p.viewState.scrollLeft;
477 graph.container.scrollTop = graph.view.translate.y * graph.view.scale + p.viewState.scrollTop;
559 graph.view.revalidate();
563 graph.container.scrollLeft = graph.view.translate.x * graph.view.scale + viewState.scrollLeft;
564 graph.container.scrollTop = graph.view.translate.y * graph.view.scale + viewState.scrollTop;
692 currentRoot: this.view.currentRoot,
708 scale: this.view.scale,
709 scrollLeft: this.container.scrollLeft - this.view.translate.x * this.view.scale,
710 scrollTop: this.container.scrollTop - this.view.translate.y * this.view.scale,
711 translate: this.view.translate.clone(),
741 this.view.currentRoot = state.currentRoot;
774 this.view.scale = state.scale;
778 this.view.scale = 1;
782 if (this.view.currentRoot != null &&
783 !this.model.contains(this.view.currentRoot))
785 this.view.currentRoot = null;
797 this.view.translate = state.translate;
802 this.view.currentRoot = null;
803 this.view.scale = 1;
1786 var t = graph.view.translate;
1787 var s = graph.view.scale;