Lines Matching refs:Graph
199 …Editor.svgBrokenImage = Graph.createSvgImage(10, 10, '<rect x="0" y="0" width="10" height="10" str…
1357 return Graph.arrayBufferToString(pako.deflateRaw(data));
1372 return pako.inflateRaw(Graph.stringToArrayBuffer(atob(data)), {to: 'string'});
1419 data = Graph.decompress(data, null, checked);
1497 var tmp = Graph.decompress(text, null, checked);
1530 xml = Graph.decompress(text);
1564 …return pako.inflateRaw(Graph.stringToArrayBuffer(f.substring(streamStart, streamEnd)), {to: 'strin…
1719 var xmlData = pako.inflateRaw(Graph.stringToArrayBuffer(
1823 … Graph.prototype.defaultEdgeLength = config.defaultEdgeLength || Graph.prototype.defaultEdgeLength; class
1940 Graph.prototype.defaultVertexStyle = config.defaultVertexStyle;
1946 Graph.prototype.defaultEdgeStyle = config.defaultEdgeStyle;
1952 Graph.prototype.defaultPageVisible = config.defaultPageVisible;
1958 Graph.prototype.defaultGridEnabled = config.defaultGridEnabled;
1964 Graph.zoomWheel = config.zoomWheel;
1974 Graph.prototype.zoomFactor = val;
3232 if (Graph.isCssFontUrl(fontUrl))
5566 Graph.customFontElements = {};
5571 Graph.recentCustomFonts = {};
5576 Graph.isGoogleFontUrl = function(url)
5584 Graph.isCssFontUrl = function(url)
5586 return Graph.isGoogleFontUrl(url);
5592 Graph.createFontElement = function(name, url)
5596 if (Graph.isCssFontUrl(url))
5618 Graph.addFont = function(name, url, callback)
5627 var entry = Graph.customFontElements[key];
5646 entry = {name: name, url: url, elt: Graph.createFontElement(name, realUrl)};
5647 Graph.customFontElements[key] = entry;
5648 Graph.recentCustomFonts[key] = entry;
5691 Graph.getFontUrl = function(name, url)
5693 var font = Graph.customFontElements[name.toLowerCase()];
5706 Graph.processFontAttributes = function(elt)
5722 Graph.addFont(name, url);
5731 Graph.processFontStyle = function(style)
5743 Graph.addFont(name, decodeURIComponent(url));
5755 Graph.prototype.defaultThemeName = 'default-style2';
5760 Graph.prototype.lastPasteXml = null;
5765 Graph.prototype.pasteCounter = 0;
5770 Graph.prototype.defaultScrollbars = urlParams['sb'] != '0';
5775 Graph.prototype.defaultPageVisible = urlParams['pv'] != '0';
5780 Graph.prototype.shadowId = 'dropShadow';
5785 Graph.prototype.svgShadowColor = '#3D4574';
5790 Graph.prototype.svgShadowOpacity = '0.4';
5795 Graph.prototype.svgShadowBlur = '1.7';
5800 Graph.prototype.svgShadowSize = '3';
5805 Graph.prototype.edgeMode = urlParams['edge'] != 'move';
5810 Graph.prototype.hiddenTags = null;
5815 Graph.prototype.defaultMathEnabled = false;
5820 var graphInit = Graph.prototype.init;
5822 Graph.prototype.init = function()
5914 var graphPostProcessCellStyle = Graph.prototype.postProcessCellStyle;
5915 Graph.prototype.postProcessCellStyle = function(style)
5919 return Graph.processFontStyle(graphPostProcessCellStyle.apply(this, arguments));
5925 Graph.prototype.replaceDefaultColors = function(style)
5946 Graph.prototype.replaceDefaultColor = function(style, key, value)
5961 Graph.processFontAttributes(g);
5975 Graph.processFontAttributes(this.node);
5979 Graph.prototype.createTagsDialog = function(isEnabled, invert, addFn)
6349 Graph.prototype.getCustomFonts = function()
6362 for (var key in Graph.customFontElements)
6364 var font = Graph.customFontElements[key];
6374 Graph.prototype.setFont = function(name, url)
6377 Graph.addFont(name, url);
6391 url = Graph.getFontUrl(name, url);
6410 var graphIsFastZoomEnabled = Graph.prototype.isFastZoomEnabled;
6412 Graph.prototype.isFastZoomEnabled = function()
6420 Graph.prototype.updateGlobalUrlVariables = function()
6453 Graph.prototype.getExportVariables = function()
6461 var graphGetGlobalVariable = Graph.prototype.getGlobalVariable;
6463 Graph.prototype.getGlobalVariable = function(name)
6478 Graph.prototype.getDefaultStylesheet = function()
6493 Graph.prototype.isViewer = function()
6501 var graphGetSvg = Graph.prototype.getSvg;
6503 Graph.prototype.getSvg = function(background, scale, border, nocrop, crisp,
6544 if (Graph.isCssFontUrl(fontUrl))
6574 var graphCreateSvgImageExport = Graph.prototype.createSvgImageExport;
6576 Graph.prototype.createSvgImageExport = function()
6669 var graphRefresh = Graph.prototype.refresh;
6670 Graph.prototype.refresh = function()
6679 Graph.prototype.refreshBackgroundImage = function()
6691 var graphLoadStylesheet = Graph.prototype.loadStylesheet;
6693 Graph.prototype.loadStylesheet = function()
6709 Graph.prototype.handleCustomLink = function(href)
6727 Graph.prototype.executeCustomActions = function(actions, done)
6810 Graph.setOpacityForNodes(this.getNodesForCells(
6818 Graph.fadeNodes(this.getNodesForCells(
6827 Graph.fadeNodes(this.getNodesForCells(
6856 Graph.setOpacityForNodes(this.getNodesForCells(temp), 1);
6864 Graph.setOpacityForNodes(this.getNodesForCells(temp), 0);
6994 Graph.prototype.doUpdateCustomLinksForCell = function(mapping, cell)
7031 Graph.prototype.updateCustomLink = function(mapping, href)
7057 Graph.prototype.updateCustomLinkActions = function(mapping, actions)
7074 Graph.prototype.updateCustomLinkAction = function(mapping, action, name)
7112 Graph.prototype.getCellsForAction = function(action, layers)
7140 Graph.prototype.getCellsById = function(ids)
7175 var graphIsCellVisible = Graph.prototype.isCellVisible;
7176 Graph.prototype.isCellVisible = function(cell)
7186 Graph.prototype.isAllTagsHidden = function(tags)
7220 Graph.prototype.getCellsForTags = function(tagList, cells, includeLayers, checkVisible)
7281 Graph.prototype.getAllTags = function()
7292 Graph.prototype.getCommonTagsForCells = function(cells)
7330 Graph.prototype.getTagsForCells = function(cells)
7360 Graph.prototype.getTagsForCell = function(cell)
7368 Graph.prototype.addTagsForCells = function(cells, tagList)
7409 Graph.prototype.removeTagsForCells = function(cells, tagList)
7454 Graph.prototype.toggleCells = function(cells)
7473 Graph.prototype.setCellsVisible = function(cells, visible)
7492 Graph.prototype.highlightCells = function(cells, color, duration, opacity)
7503 Graph.prototype.highlightCell = function(cell, color, duration, opacity)
7542 Graph.prototype.addSvgShadow = function(svgRoot, group, createOnly, extend)
7652 Graph.prototype.setShadowVisible = function(value, fireEvent)
7678 Graph.prototype.selectUnlockedLayer = function()
8201 if (Graph.isCssFontUrl(fontUrl))
8293 if (Graph.isCssFontUrl(fontUrl))
8545 if (img != null && img.src != null && Graph.isPageLink(img.src))