Lines Matching refs:prototype

24 	Editor.prototype.appName = 'diagrams.net';
29 Editor.prototype.diagramFileTypes = [
39 …Editor.prototype.libraryFileTypes = [{description: 'Library (.drawiolib, .xml)', extensions: ['dra…
44 Editor.prototype.fileExtensions = [
819 this.canvas.begin = mxUtils.bind(this, RoughCanvas.prototype.begin);
822 this.canvas.end = mxUtils.bind(this, RoughCanvas.prototype.end);
825 this.canvas.rect = mxUtils.bind(this, RoughCanvas.prototype.rect);
828 this.canvas.roundrect = mxUtils.bind(this, RoughCanvas.prototype.roundrect);
831 this.canvas.ellipse = mxUtils.bind(this, RoughCanvas.prototype.ellipse);
834 this.canvas.lineTo = mxUtils.bind(this, RoughCanvas.prototype.lineTo);
837 this.canvas.moveTo = mxUtils.bind(this, RoughCanvas.prototype.moveTo);
840 this.canvas.quadTo = mxUtils.bind(this, RoughCanvas.prototype.quadTo);
843 this.canvas.curveTo = mxUtils.bind(this, RoughCanvas.prototype.curveTo);
846 this.canvas.arcTo = mxUtils.bind(this, RoughCanvas.prototype.arcTo);
849 this.canvas.close = mxUtils.bind(this, RoughCanvas.prototype.close);
852 this.canvas.fill = mxUtils.bind(this, RoughCanvas.prototype.fill);
855 this.canvas.stroke = mxUtils.bind(this, RoughCanvas.prototype.stroke);
858 this.canvas.fillAndStroke = mxUtils.bind(this, RoughCanvas.prototype.fillAndStroke);
864 RoughCanvas.prototype.moveOp = 'M';
865 RoughCanvas.prototype.lineOp = 'L';
866 RoughCanvas.prototype.quadOp = 'Q';
867 RoughCanvas.prototype.curveOp = 'C';
868 RoughCanvas.prototype.closeOp = 'Z';
870 RoughCanvas.prototype.getStyle = function(stroke, fill)
947 RoughCanvas.prototype.begin = function()
959 RoughCanvas.prototype.end = function()
971 RoughCanvas.prototype.addOp = function()
993 RoughCanvas.prototype.lineTo = function(endX, endY)
1007 RoughCanvas.prototype.moveTo = function(endX, endY)
1023 RoughCanvas.prototype.close = function()
1035 RoughCanvas.prototype.quadTo = function(x1, y1, x2, y2)
1049 RoughCanvas.prototype.curveTo = function(x1, y1, x2, y2, x3, y3)
1063 RoughCanvas.prototype.arcTo = function(rx, ry, angle, largeArcFlag, sweepFlag, x, y)
1087 RoughCanvas.prototype.rect = function(x, y, w, h)
1100 RoughCanvas.prototype.ellipse = function(x, y, w, h)
1113 RoughCanvas.prototype.roundrect = function(x, y, w, h, dx, dy)
1134 RoughCanvas.prototype.drawPath = function(style)
1172 RoughCanvas.prototype.stroke = function()
1184 RoughCanvas.prototype.fill = function()
1196 RoughCanvas.prototype.fillAndStroke = function()
1208 RoughCanvas.prototype.destroy = function()
1228 mxShape.prototype.createRoughCanvas = function(c)
1234 var shapeCreateHandJiggle = mxShape.prototype.createHandJiggle;
1235 mxShape.prototype.createHandJiggle = function(c)
1257 var shapePaint = mxShape.prototype.paint;
1258 mxShape.prototype.paint = function(c)
1330 var shapePaintGlassEffect = mxShape.prototype.paintGlassEffect;
1331 mxShape.prototype.paintGlassEffect = function(c, x, y, w, h, arc)
1818 Menus.prototype.defaultFonts = config.defaultFonts || Menus.prototype.defaultFonts;
1819 ColorDialog.prototype.presetColors = config.presetColors || ColorDialog.prototype.presetColors;
1820 … ColorDialog.prototype.defaultColors = config.defaultColors || ColorDialog.prototype.defaultColors;
1821 ColorDialog.prototype.colorNames = config.colorNames || ColorDialog.prototype.colorNames;
1822 …StyleFormatPanel.prototype.defaultColorSchemes = config.defaultColorSchemes || StyleFormatPanel.pr…
1823 … Graph.prototype.defaultEdgeLength = config.defaultEdgeLength || Graph.prototype.defaultEdgeLength;
1824 DrawioFile.prototype.autosaveDelay = config.autosaveDelay || DrawioFile.prototype.autosaveDelay;
1880 Menus.prototype.defaultFonts = config.customFonts.
1881 concat(Menus.prototype.defaultFonts);
1886 ColorDialog.prototype.presetColors = config.customPresetColors.
1887 concat(ColorDialog.prototype.presetColors);
1892 StyleFormatPanel.prototype.defaultColorSchemes = config.customColorSchemes.
1893 concat(StyleFormatPanel.prototype.defaultColorSchemes);
1910 Sidebar.prototype.customEntries = config.libraries;
1916 Sidebar.prototype.enabledLibraries = config.enabledLibraries;
1922 Sidebar.prototype.defaultEntries = config.defaultLibraries;
1940 Graph.prototype.defaultVertexStyle = config.defaultVertexStyle;
1946 Graph.prototype.defaultEdgeStyle = config.defaultEdgeStyle;
1952 Graph.prototype.defaultPageVisible = config.defaultPageVisible;
1958 Graph.prototype.defaultGridEnabled = config.defaultGridEnabled;
1974 Graph.prototype.zoomFactor = val;
1989 mxGraphView.prototype.gridSteps = val;
2004 mxGraph.prototype.defaultPageFormat = new mxRectangle(0, 0, w, h);
2005 mxGraph.prototype.pageFormat = mxGraph.prototype.defaultPageFormat;
2015 Sidebar.prototype.thumbWidth = config.thumbWidth;
2020 Sidebar.prototype.thumbHeight = config.thumbHeight;
2025 EditorUi.prototype.emptyLibraryXml = config.emptyLibraryXml;
2030 EditorUi.prototype.emptyDiagramXml = config.emptyDiagramXml;
2035 EditorUi.prototype.hsplitPosition = config.sidebarWidth;
2040 Sidebar.prototype.sidebarTitles = config.sidebarTitles;
2049 Sidebar.prototype.sidebarTitleSize = val;
2075 DrawioFile.prototype.autosaveDelay = val;
2096 EditorUi.prototype.maxImageBytes = config.maxImageBytes;
2101 EditorUi.prototype.maxImageSize = config.maxImageSize;
2113 Editor.prototype.fontCss = fontCss;
2185 Editor.prototype.timeout = 25000;
2193 Editor.prototype.useForeignObjectForMath = true;
2198 …Editor.prototype.editButtonLink = (urlParams['edit'] != null) ? decodeURIComponent(urlParams['edit…
2203 Editor.prototype.crossOriginImages = !mxClient.IS_IE;
2208 var editorSetGraphXml = Editor.prototype.setGraphXml;
2209 Editor.prototype.setGraphXml = function(node)
2327 var editorGetGraphXml = Editor.prototype.getGraphXml;
2328 Editor.prototype.getGraphXml = function(ignoreSelection, resolveReferences)
2368 Editor.prototype.isDataSvg = function(svg)
2407 Editor.prototype.extractGraphModel = function(node, allowMxFile, checked)
2415 var editorResetGraph = Editor.prototype.resetGraph;
2416 Editor.prototype.resetGraph = function()
2435 var editorUpdateGraphComponents = Editor.prototype.updateGraphComponents;
2436 Editor.prototype.updateGraphComponents = function()
2541 var editorInit = Editor.prototype.init;
2543 Editor.prototype.init = function()
2587 Editor.prototype.csvToArray = function(text)
2612 Editor.prototype.isCorsEnabledForUrl = function(url)
2642 Editor.prototype.createImageUrlConverter = function()
2689 Editor.prototype.convertImageToDataUri = function(url, callback)
2777 Editor.prototype.convertImages = function(svgRoot, callback, imageCache, converter)
2915 …Editor.prototype.loadUrl = function(url, success, error, forceBinary, retry, dataUriPrefix, noBina…
3002 Editor.prototype.absoluteCssFonts = function(fontCss)
3067 Editor.prototype.embedCssFonts = function(fontCss, then)
3184 Editor.prototype.loadFonts = function(then)
3207 Editor.prototype.embedExtFonts = function(callback)
3277 Editor.prototype.addMathCss = function(svgRoot)
3299 Editor.prototype.addFontCss = function(svgRoot, fontCss)
3342 Editor.prototype.isExportToCanvas = function()
3354 Editor.prototype.getMaxCanvasScale = function(w, h, scale)
3364 …Editor.prototype.exportToCanvas = function(callback, width, imageCache, background, error, limitHe…
3998 var formatInit = Format.prototype.init;
4000 Format.prototype.init = function()
4007 var formatRefresh = Format.prototype.refresh;
4009 Format.prototype.refresh = function()
4025 DiagramFormatPanel.prototype.isShadowOptionVisible = function()
4035 DiagramFormatPanel.prototype.isMathOptionVisible = function(div)
4043 var diagramFormatPanelAddView = DiagramFormatPanel.prototype.addView;
4045 DiagramFormatPanel.prototype.addView = function(div)
4099 var diagramFormatPanelAddOptions = DiagramFormatPanel.prototype.addOptions;
4100 DiagramFormatPanel.prototype.addOptions = function(div)
4185 mxCellRenderer.prototype.defaultVertexShape.prototype.customProperties = [
4190 mxCellRenderer.defaultShapes['link'].prototype.customProperties = [
4194 mxCellRenderer.defaultShapes['flexArrow'].prototype.customProperties = [
4200 mxCellRenderer.defaultShapes['process'].prototype.customProperties = [
4204 mxCellRenderer.defaultShapes['rhombus'].prototype.customProperties = [
4209 mxCellRenderer.defaultShapes['partialRectangle'].prototype.customProperties = [
4216 mxCellRenderer.defaultShapes['parallelogram'].prototype.customProperties = [
4221 mxCellRenderer.defaultShapes['hexagon'].prototype.customProperties = [
4226 mxCellRenderer.defaultShapes['triangle'].prototype.customProperties = [
4230 mxCellRenderer.defaultShapes['document'].prototype.customProperties = [
4234 mxCellRenderer.defaultShapes['internalStorage'].prototype.customProperties = [
4240 mxCellRenderer.defaultShapes['cube'].prototype.customProperties = [
4246 mxCellRenderer.defaultShapes['step'].prototype.customProperties = [
4251 mxCellRenderer.defaultShapes['trapezoid'].prototype.customProperties = [
4256 mxCellRenderer.defaultShapes['tape'].prototype.customProperties = [
4260 mxCellRenderer.defaultShapes['note'].prototype.customProperties = [
4265 mxCellRenderer.defaultShapes['card'].prototype.customProperties = [
4270 mxCellRenderer.defaultShapes['callout'].prototype.customProperties = [
4278 mxCellRenderer.defaultShapes['folder'].prototype.customProperties = [
4286 mxCellRenderer.defaultShapes['swimlane'].prototype.customProperties = [
4293 mxCellRenderer.defaultShapes['table'].prototype.customProperties = [
4299 concat(mxCellRenderer.defaultShapes['swimlane'].prototype.customProperties);
4301 mxCellRenderer.defaultShapes['doubleEllipse'].prototype.customProperties = [
4305 mxCellRenderer.defaultShapes['ext'].prototype.customProperties = [
4311 mxCellRenderer.defaultShapes['curlyBracket'].prototype.customProperties = [
4316 mxCellRenderer.defaultShapes['image'].prototype.customProperties = [
4320 mxCellRenderer.defaultShapes['label'].prototype.customProperties = [
4336 mxCellRenderer.defaultShapes['dataStorage'].prototype.customProperties = [
4340 mxCellRenderer.defaultShapes['manualInput'].prototype.customProperties = [
4345 mxCellRenderer.defaultShapes['loopLimit'].prototype.customProperties = [
4350 mxCellRenderer.defaultShapes['offPageConnector'].prototype.customProperties = [
4355 mxCellRenderer.defaultShapes['display'].prototype.customProperties = [
4359 mxCellRenderer.defaultShapes['singleArrow'].prototype.customProperties = [
4364 mxCellRenderer.defaultShapes['doubleArrow'].prototype.customProperties = [
4369 mxCellRenderer.defaultShapes['cross'].prototype.customProperties = [
4373 mxCellRenderer.defaultShapes['corner'].prototype.customProperties = [
4378 mxCellRenderer.defaultShapes['tee'].prototype.customProperties = [
4383 mxCellRenderer.defaultShapes['umlLifeline'].prototype.customProperties = [
4394 mxCellRenderer.defaultShapes['umlFrame'].prototype.customProperties = [
4402 …StyleFormatPanel.prototype.defaultColorSchemes = [[{fill: '', stroke: ''}, {fill: '#f5f5f5', strok…
4435 StyleFormatPanel.prototype.customColorSchemes = null;
4437 StyleFormatPanel.prototype.findCommonProperties = function(cell, properties, addAll)
4489 Array.prototype.push.apply(state.shape.customProperties, Editor.commonVertexProperties);
4493 Array.prototype.push.apply(state.shape.customProperties, Editor.commonEdgeProperties);
4516 var styleFormatPanelInit = StyleFormatPanel.prototype.init;
4518 StyleFormatPanel.prototype.init = function()
4556 var styleFormatPanelAddStyleOps = StyleFormatPanel.prototype.addStyleOps;
4558 StyleFormatPanel.prototype.addStyleOps = function(div)
4601 EditorUi.prototype.propertiesCollapsed = true;
4606 StyleFormatPanel.prototype.addProperties = function(div, properties, state)
4731 …clrDiv.style.background = !pValue || pValue == 'none'? 'url(\'' + Dialog.prototype.noColorImage + …
4737 …clrDiv.style.background = color == 'none'? 'url(\'' + Dialog.prototype.noColorImage + '\')' : colo…
5047 collapseImg.src = Sidebar.prototype.expandedImage;
5060 collapseImg.src = Sidebar.prototype.expandedImage;
5065 collapseImg.src = Sidebar.prototype.collapsedImage;
5190 StyleFormatPanel.prototype.addStyles = function(div)
5369 btn.style.background = 'url(\'' + Dialog.prototype.noColorImage + '\')';
5490 StyleFormatPanel.prototype.addEditOps = function(div)
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)
5925 Graph.prototype.replaceDefaultColors = function(style)
5946 Graph.prototype.replaceDefaultColor = function(style, key, value)
5957 var mxSvgCanvas2DUpdateTextNodes = mxSvgCanvas2D.prototype.updateTextNodes;
5958 …mxSvgCanvas2D.prototype.updateTextNodes = function(x, y, w, h, align, valign, wrap, overflow, clip…
5967 var mxTextRedraw = mxText.prototype.redraw;
5968 mxText.prototype.redraw = function()
5979 Graph.prototype.createTagsDialog = function(isEnabled, invert, addFn)
6349 Graph.prototype.getCustomFonts = function()
6374 Graph.prototype.setFont = function(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,
6574 var graphCreateSvgImageExport = Graph.prototype.createSvgImageExport;
6576 Graph.prototype.createSvgImageExport = function()
6633 var graphViewValidateBackgroundPage = mxGraphView.prototype.validateBackgroundPage;
6635 mxGraphView.prototype.validateBackgroundPage = 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)
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()
7811 PrintDialog.prototype.create = function(editorUi, titleText)
8522 var changePageSetupExecute = ChangePageSetup.prototype.execute;
8524 ChangePageSetup.prototype.execute = function()
8590 Editor.prototype.useCanvasForExport = false;
8607 Editor.prototype.useCanvasForExport = result != null && result.length > 6;