Home
last modified time | relevance | path

Searched refs:graph (Results 176 – 191 of 191) sorted by last modified time

12345678

/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DJTableRenderer.java96 protected mxGraph graph; field in JTableRenderer
112 this.graph = graphContainer.getGraph(); in JTableRenderer()
129 JLabel label = new JLabel(String.valueOf(graph.getLabel(cell))); in JTableRenderer()
144 graph.foldCells(graph.isCellCollapsed(cell), false, in JTableRenderer()
150 + ((graph.isCellCollapsed(cell)) ? "maximize.gif" in JTableRenderer()
171 if (graph.getModel().getChildCount(cell) == 0) in JTableRenderer()
245 if (!graph.isCellSelected(cell)) in mousePressed()
430 Object edge = graph.insertEdge(null, null, null, in drop()
433 graph.setSelectionCell(edge); in drop()
H A DSchemaGraphComponent.java27 public SchemaGraphComponent(mxGraph graph) in SchemaGraphComponent() argument
29 super(graph); in SchemaGraphComponent()
31 mxGraphView graphView = new mxGraphView(graph) in SchemaGraphComponent()
80 graph.setView(graphView); in SchemaGraphComponent()
H A DEditorToolBar.java122 mxGraph graph = editor.getGraphComponent().getGraph(); in EditorToolBar()
123 graph.setCellStyles(mxConstants.STYLE_FONTFAMILY, font); in EditorToolBar()
144 mxGraph graph = editor.getGraphComponent().getGraph(); in EditorToolBar()
145 graph.setCellStyles(mxConstants.STYLE_FONTSIZE, sizeCombo in EditorToolBar()
H A DEditorActions.java.bak269 graph.refresh();
645 graph, null, graph.getView().getScale(), bg,
810 int steps = graph.getChildEdges(graph.getDefaultParent()).length;
1150 graph.refresh();
1450 if (graph != null && !graph.isSelectionEmpty()) {
1500 if (graph != null && !graph.isSelectionEmpty()) {
1540 if (graph != null && !graph.isSelectionEmpty()) {
1573 if (graph != null && !graph.isSelectionEmpty()) {
1616 if (graph != null && !graph.isSelectionEmpty()) {
1634 if (graph != null && !graph.isSelectionEmpty()) {
[all …]
/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 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 Dcommon.php101 $graph = array();
108 $graph[$index] = $value;
113 $graph[$index] = $value;
128 $results .= dir_generateGraph($info, $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/seqdia/
H A Dplugin.info.txt6 desc Create graph UML diagrams using web service websequencediagrams.com.
/plugin/jdraw/src/com/mxgraph/examples/swing/
H A DGraphEditor.java.bak71 final mxGraph graph = graphComponent.getGraph();
99 if (graph.getModel().isEdge(cell))
101 ((CustomGraph) graph).setEdgeTemplate(cell);
108 // Adds some template cells for dropping into the graph
398 * @param graph
400 public CustomGraphComponent(mxGraph graph)
402 super(graph);
442 mxIGraphModel model = graph.getModel();
444 graph.setSelectionCell(target);
457 * A graph that creates new edges from a given template edge.
[all …]
H A DHelloWorld.java20 mxGraph graph = new mxGraph(); in HelloWorld() local
21 Object parent = graph.getDefaultParent(); in HelloWorld()
23 graph.getModel().beginUpdate(); in HelloWorld()
26 Object v1 = graph.insertVertex(parent, null, "Hello", 20, 20, 80, in HelloWorld()
28 Object v2 = graph.insertVertex(parent, null, "World!", 240, 150, in HelloWorld()
30 graph.insertEdge(parent, null, "Edge", v1, v2); in HelloWorld()
34 graph.getModel().endUpdate(); in HelloWorld()
37 mxGraphComponent graphComponent = new mxGraphComponent(graph); in HelloWorld()
H A DPort.java31 mxGraph graph = new mxGraph() { in Port() local
63 Map<String, Object> style = graph.getStylesheet().getDefaultEdgeStyle(); in Port()
66 Object parent = graph.getDefaultParent(); in Port()
68 graph.getModel().beginUpdate(); in Port()
71 mxCell v1 = (mxCell) graph.insertVertex(parent, null, "Hello", 20, in Port()
74 mxGeometry geo = graph.getModel().getGeometry(v1); in Port()
98 graph.addCell(port1, v1); in Port()
99 graph.addCell(port2, v1); in Port()
103 graph.insertEdge(parent, null, "Edge", port2, v2); in Port()
107 graph.getModel().endUpdate(); in Port()
[all …]
H A DUserObject.java.bak55 mxGraph graph = new mxGraph()
135 Object parent = graph.getDefaultParent();
137 graph.getModel().beginUpdate();
140 Object v1 = graph.insertVertex(parent, null, person1, 20, 20, 80,
142 Object v2 = graph.insertVertex(parent, null, person2, 240, 150, 80,
144 graph.insertEdge(parent, null, relation, v1, v2);
148 graph.getModel().endUpdate();
152 mxGraphComponent graphComponent = new mxGraphComponent(graph)
H A DCustomCanvas.java.bak33 mxGraph graph = new mxGraph()
60 Object parent = graph.getDefaultParent();
62 graph.getModel().beginUpdate();
66 Object v1 = graph.insertVertex(parent, null, "Hello", 20, 20, 80,
68 Object v2 = graph.insertVertex(parent, null, "World!", 240, 150,
70 graph.insertEdge(parent, null, "Edge", v1, v2);
74 graph.getModel().endUpdate();
77 mxGraphComponent graphComponent = new mxGraphComponent(graph)
H A DClickHandler.java23 final mxGraph graph = new mxGraph(); in ClickHandler() local
24 Object parent = graph.getDefaultParent(); in ClickHandler()
26 graph.getModel().beginUpdate(); in ClickHandler()
29 Object v1 = graph.insertVertex(parent, null, "Hello", 20, 20, 80, in ClickHandler()
31 Object v2 = graph.insertVertex(parent, null, "World!", in ClickHandler()
33 graph.insertEdge(parent, null, "Edge", v1, v2); in ClickHandler()
37 graph.getModel().endUpdate(); in ClickHandler()
40 final mxGraphComponent graphComponent = new mxGraphComponent(graph); in ClickHandler()
52 System.out.println("cell="+graph.getLabel(cell)); in ClickHandler()
H A DValidation.java.bak37 mxGraph graph = new mxGraph();
38 Object parent = graph.getDefaultParent();
40 graph.getModel().beginUpdate();
51 graph.insertVertex(parent, null, subtargetNode, 200,
55 graph.insertEdge(parent, null, "", v1, v2);
56 graph.insertEdge(parent, null, "", v1, v3);
57 graph.insertEdge(parent, null, "", v6, v4);
62 graph.getModel().endUpdate();
83 graph.setMultiplicities(multiplicities);
86 graph.setMultigraph(false);
[all …]

12345678