Lines Matching refs:GraphViewer

8 GraphViewer = function(container, xmlNode, graphConfig)  class
14 mxUtils.extend(GraphViewer, mxEventSource);
19 GraphViewer.prototype.editBlankUrl = 'https://app.diagrams.net/';
24 GraphViewer.prototype.imageBaseUrl = 'https://viewer.diagrams.net/';
29 GraphViewer.prototype.toolbarHeight = (document.compatMode == 'BackCompat') ? 24 : 26;
34 GraphViewer.prototype.lightboxChrome = true;
39 GraphViewer.prototype.lightboxZIndex = 999;
44 GraphViewer.prototype.toolbarZIndex = 999;
49 GraphViewer.prototype.autoFit = false;
54 GraphViewer.prototype.autoCrop = false;
62 GraphViewer.prototype.autoOrigin = true;
67 GraphViewer.prototype.center = false;
72 GraphViewer.prototype.forceCenter = false;
77 GraphViewer.prototype.allowZoomIn = false;
83 GraphViewer.prototype.allowZoomOut = true;
89 GraphViewer.prototype.showTitleAsTooltip = false;
95 GraphViewer.prototype.checkVisibleState = true;
100 GraphViewer.prototype.minHeight = 28;
105 GraphViewer.prototype.minWidth = 100;
113 GraphViewer.prototype.responsive = false;
118 GraphViewer.prototype.init = function(container, xmlNode, graphConfig)
540 GraphViewer.prototype.getObservableParent = function(container)
556 GraphViewer.prototype.getImageUrl = function(url)
575 GraphViewer.prototype.getImageForGraphModel = function(node)
596 GraphViewer.prototype.getIndexById = function(id)
615 GraphViewer.prototype.setXmlNode = function(xmlNode)
631 GraphViewer.prototype.setFileNode = function(xmlNode)
646 GraphViewer.prototype.updateGraphXml = function(xmlNode)
655 GraphViewer.prototype.setLayersVisible = function(visible)
687 GraphViewer.prototype.setGraphXml = function(xmlNode)
738 GraphViewer.prototype.addSizeHandler = function()
877 if (GraphViewer.useResizeSensor)
925 if (GraphViewer.useResizeSensor)
1006 GraphViewer.prototype.crop = function()
1021 GraphViewer.prototype.updateContainerWidth = function(container, width)
1029 GraphViewer.prototype.updateContainerHeight = function(container, height)
1041 GraphViewer.prototype.showLayers = function(graph, sourceGraph)
1123 GraphViewer.prototype.addToolbar = function()
1693 GraphViewer.prototype.disableButton = function(token)
1712 GraphViewer.prototype.addClickHandler = function(graph, ui)
1772 GraphViewer.prototype.showLightbox = function(editable, closable, target)
1863 GraphViewer.prototype.showLocalLightbox = function()
1942 GraphViewer.resizeSensorEnabled = true;
1999 GraphViewer.resizeSensorEnabled = false;
2049 GraphViewer.prototype.updateTitle = function(title)
2069 GraphViewer.processElements = function(classname)
2071 mxUtils.forEach(GraphViewer.getElementsByClassName(classname || 'mxgraph'), function(div)
2076 GraphViewer.createViewerForElement(div);
2093 GraphViewer.getElementsByClassName = function(classname)
2136 GraphViewer.createViewerForElement = function(element, callback)
2147 var viewer = new GraphViewer(element, xmlDoc.documentElement, config);
2157 GraphViewer.getUrl(config.url, function(xml)
2172 GraphViewer.initCss = function()
2254 GraphViewer.cachedUrls = {};
2259 GraphViewer.getUrl = function(url, onload, onerror)
2261 if (GraphViewer.cachedUrls[url] != null)
2263 onload(GraphViewer.cachedUrls[url]);
2284 GraphViewer.resizeSensorEnabled = true;
2289 GraphViewer.useResizeSensor = true;
2320 if (GraphViewer.resizeSensorEnabled)