Home
last modified time | relevance | path

Searched refs:graph (Results 76 – 100 of 191) sorted by path

12345678

/plugin/diagramsnet/lib/plugins/
H A Dprops.js15 var graph = ui.editor.graph;
63 var highlight = new mxCellHighlight(graph, '#00ff00', 8);
68 var result = graph.getDataForCells(graph.getSelectionCells());
88 graph.container.focus();
103 highlight.highlight(graph.view.getState(cell));
108 var label = graph.sanitizeHtml(graph.getLabel(cell));
136 var label = graph.convertValueToString(cell);
169 cellClicked(graph.getSelectionCell());
172 graph.model.addListener(mxEvent.CHANGE, function(sender, evt)
174 cellClicked(graph.getSelectionCell());
[all …]
H A Drandom.js8 var graph = ui.editor.graph;
16 var cells = graph.getSelectionCells().slice();
68 var cells = graph.getSelectionCells().slice();
94 graph.getModel().beginUpdate();
129 graph.getModel().endUpdate();
166 var graph = ui.editor.graph;
167 var cells = graph.getSelectionCells().slice();
197 graph.getModel().beginUpdate();
354 graph.getModel().endUpdate();
411 graph.getModel().beginUpdate();
[all …]
H A Dreplay.js8 var graph = ui.editor.graph;
9 var model = graph.model;
H A Dsql.js59 var graph = ui.editor.graph;
69 var graph = ui.editor.graph;
108 var size = ui.editor.graph.getPreferredSizeForCell(rowCell);
559 var size = ui.editor.graph.getPreferredSizeForCell(rowCell);
580 var graph = ui.editor.graph;
581 var view = graph.view;
582 var bds = graph.getGraphBounds();
585 … var x = Math.ceil(Math.max(0, bds.x / view.scale - view.translate.x) + 4 * graph.gridSize);
586 … Math.ceil(Math.max(0, (bds.y + bds.height) / view.scale - view.translate.y) + 4 * graph.gridSize);
588 graph.setSelectionCells(graph.importCells(cells, x, y));
[all …]
H A Dtags.js56 var graph = editorUi.editor.graph;
84 var graph = editorUi.editor.graph;
101 return graph.getTagsForCells(graph.model.getDescendants(
102 graph.model.getRoot()));
157 if (graph.model.isVertex(cells[i]) || graph.model.isEdge(cells[i]))
212 graph.addTagsForCells(graph.getSelectionCells(), [tag])
222 graph.refresh();
230 graph.removeTagsForCells(graph.getSelectionCells(), [tag])
240 graph.refresh();
266 if (graph.isSelectionEmpty())
[all …]
H A Dtext.js12 var dlg = new EmbedDialog(ui, ui.editor.graph.getIndexableText(),
H A Dtickets.js32 var graph = ui.editor.graph;
248 graph.view.validate();
264 for (var key in graph.view.states.map)
319 graph.setSelectionCell(cell);
320 graph.scrollCellToVisible(graph.getSelectionCell());
335 graph.getModel().beginUpdate();
338 cell = graph.insertVertex(graph.getDefaultParent(), null,
341 graph.snap(dx), graph.snap(dy), 200, 50,
364 graph.updateCellSize(cell);
370 graph.getModel().endUpdate();
[all …]
H A Dtooltips.js6 var graph = ui.editor.graph;
14 var overlays = graph.getCellOverlays(cell);
24 graph.addCellOverlay(cell, overlay);
29 graph.removeCellOverlays(cell);
35 var cells = graph.model.cells;
43 graph.addListener(mxEvent.SIZE, refresh);
H A Dupdate.js74 var graph = editorUi.editor.graph;
92 var overlay = new mxCellOverlay(desc.image || graph.warningImage,
128 var root = editorUi.editor.graph.getModel().getRoot();
208 for (var id in graph.model.cells)
210 var cell = graph.model.cells[id];
212 if (graph.model.isEdge(cell))
215 var state = graph.view.getState(cell);
237 else if (graph.model.isVertex(cell))
H A Dvoice.js937 if (geo.width > graph.tolerance && geo.height > graph.tolerance)
973 if (geo.width > graph.tolerance && geo.height > graph.tolerance)
1071 if (graph.model.isVertex(cell) && graph.model.isEdge(current) &&
1096 graph.moveCells(graph.getSelectionCells(), dx / s, dy / s);
1227 graph.moveCells(graph.getSelectionCells(), dx, dy);
1267 var cells = graph.getAllEdges(graph.getSelectionCells());
1302 var edges = graph.getAllEdges(graph.getSelectionCells());
1677 if (graph.model.isEdge(graph.getSelectionCell()))
1915 var graph = ui.editor.graph;
2221 if (graph.getWordForCell(graph.model.getTerminal(cell, true)) ==
[all …]
/plugin/diagramsnet/lib/plugins/trees/
H A Dtrees.js20 var graph = ui.editor.graph;
74 if (graph.isEnabled() && graph.getSelectionCount() == 1)
96 if (graph.isEnabled() && graph.getSelectionCount() == 1)
123 if (graph.isEnabled() && graph.getSelectionCount() == 1)
130 graph.setSelectionCell(graph.model.getTerminal(edges[0], true));
137 if (graph.isEnabled() && graph.getSelectionCount() == 1)
842 if (graph.isEnabled() && !graph.isEditing() && graph.getSelectionCount() == 1 &&
877 graph.startEditingAtCell(graph.getSelectionCell());
1074 var graph = state.view.graph;
1122graph.graphHandler.bounds = graph.graphHandler.graph.getView().getBounds(graph.graphHandler.cells);
[all …]
/plugin/diagramsnet/lib/plugins/webcola/
H A DmxWebColaAdaptor.js29 function mxWebColaAdaptor(graph, dimension, movableVertices, options) argument
39 this.graph = graph;
50 var layoutResult = this.graphToLayout(graph, movableVertices);
307 mxWebColaAdaptor.prototype.graphToLayout = function(graph, movableVertices) argument
320 …var activeMaps = this.findActiveVertices(graph); // list of all active vertices, i.e. with no col…
323 var model = graph.getModel();
325 var view = graph.getView();
523 var model = this.graph.getModel();
631 typeof this.graph.getCellStyle(cell)['childLayout'] != 'undefined')
649 mxWebColaAdaptor.prototype.findActiveVertices = function(graph) argument
[all …]
H A DmxWebColaLayout.js26 function mxWebColaLayout(graph, layoutType) argument
33 mxGraphLayout.call(this, graph);
50 var ps = this.graph.getPageSize();
51 this.layout = new mxWebColaAdaptor(this.graph, (this.graph.pageVisible) ?
101 mxWebColaLayout.prototype.resetGraph = function(graph) argument
106 var model = graph.getModel();
108 var view = graph.getView();
272 var model = this.graph.getModel();
280 var view = this.graph.getView();
349 this.graph.resetEdge(cell);
[all …]
H A Dwebcola.js18 var graph = ui.editor.graph;
19 var layout = new mxWebColaLayout(graph);
20 var parent = graph.getDefaultParent();
/plugin/diagramsnet/lib/shapes/mockup/
H A DmxMockupMisc.js1260 var unit = this.state.view.graph.getLabel(this.state.cell);
1305 var unit = this.state.view.graph.getLabel(this.state.cell);
/plugin/diagramsnet/lib/shapes/rack/
H A DmxRack.js47 onChange: function(graph, newValue)
49 graph.setCellStyles('marginLeft', (newValue == 'off') ? 9 : 33, graph.getSelectionCells());
/plugin/directions/
H A Dplugin.info.txt6 …o to from there, within the wiki. It also show the whole wiki clickstream graph and "jumps" throug…
/plugin/directions/syntax/
H A Dcommon.php101 $graph = array();
108 $graph[$index] = $value;
113 $graph[$index] = $value;
128 $results .= dir_generateGraph($info, $graph);
H A Dglobaldirections.php122 …$this->Lexer->addSpecialPattern('<(?|globaldirections|globaldirections graph)>',$mode,'plugin_dire…
214 $graph = (strcmp($data[0],'graph') == 0) ? true : false;
216 if ($graph) {
H A Dlocaldirections.php125 …$this->Lexer->addSpecialPattern('<(?|localdirections|localdirections graph)>',$mode,'plugin_direct…
217 $graph = (strcmp($data[0],'graph') == 0) ? true : false;
219 if ($graph) {
/plugin/dirtylittlehelper/
H A DREADME.md93 graph LR
H A Ddokuwiki_plugin_dirtylittlehelper.txt156 graph LR
/plugin/dirtylittlehelper/mermaid/editor/
H A Dbundle.js1 …",{character:"\\eb01"}),e.grabber=new e("grabber",{character:"\\eb02"}),e.graph=new e("graph",{cha…
41graph().rankdir;f.log.warn("Dir in recursive render - dir:",a);var g=t.insert("g").attr("class","r…
77graph(),p=new o.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:"TB"===g.rankdir?"LR":"TB",…
161 …(?:\))/,/^(?:[^)]*)/,/^(?:click[\s]+)/,/^(?:[\s\n])/,/^(?:[^\s\n]*)/,/^(?:graph\b)/,/^(?:flowchart…
396graph=function(){return this._label},a.prototype.setDefaultNodeLabel=function(e){return i.isFuncti…
403graph())||(t.value=i.clone(e.graph()));return t},read:function(e){var t=new r(e.options).setGraph(…
426graph())||(t.value=i.clone(e.graph()));return t},read:function(e){var t=new r(e.options).setGraph(…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js1 …",{character:"\\eb01"}),e.grabber=new e("grabber",{character:"\\eb02"}),e.graph=new e("graph",{cha…
41graph().rankdir;f.log.warn("Dir in recursive render - dir:",a);var g=t.insert("g").attr("class","r…
77graph(),p=new o.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:"TB"===g.rankdir?"LR":"TB",…
161 …(?:\))/,/^(?:[^)]*)/,/^(?:click[\s]+)/,/^(?:[\s\n])/,/^(?:[^\s\n]*)/,/^(?:graph\b)/,/^(?:flowchart…
396graph=function(){return this._label},a.prototype.setDefaultNodeLabel=function(e){return i.isFuncti…
403graph())||(t.value=i.clone(e.graph()));return t},read:function(e){var t=new r(e.options).setGraph(…
426graph())||(t.value=i.clone(e.graph()));return t},read:function(e){var t=new r(e.options).setGraph(…
H A Dbundle.js.map1graph.js","webpack:///./node_modules/dagre-d3/node_modules/dagre/lib/normalize.js","webpack:///./n…

12345678