]> granicus.if.org Git - graphviz/commitdiff
remove calls to reset_layout - no longer needed
authorJohn Ellson <ellson@research.att.com>
Mon, 21 Oct 2013 14:44:41 +0000 (10:44 -0400)
committerJohn Ellson <ellson@research.att.com>
Mon, 21 Oct 2013 14:44:41 +0000 (10:44 -0400)
tclpkg/tcldot/tcldot-edgecmd.c
tclpkg/tcldot/tcldot-graphcmd.c
tclpkg/tcldot/tcldot-nodecmd.c
tclpkg/tcldot/tcldot.h

index a25908af69b1cfec48237f079f69b78a087ffb39..6e8351b0ec16bab6ae0f9545b3bc3740d9db1a97 100644 (file)
@@ -46,7 +46,6 @@ int edgecmd(ClientData clientData, Tcl_Interp * interp,
 
     if ((c == 'd') && (strncmp(argv[1], "delete", length) == 0)) {
        deleteEdge(gctx, g, e);
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 'l')
@@ -121,7 +120,6 @@ int edgecmd(ClientData clientData, Tcl_Interp * interp,
            }
            setedgeattributes(agroot(g), e, &argv[2], argc - 2);
        }
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 's') && (strncmp(argv[1], "showname", length) == 0)) {
index 95d7932c1c1bbab3dd683fb6e095c186c1dd0cca..1a2efad3c4cd247a0260dbb7d6fc4b4c14243ebe 100644 (file)
@@ -78,7 +78,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
        e = agedge(g, tail, head, NULL, 1);
        Tcl_AppendResult(interp, obj2cmd(e), NULL);
        setedgeattributes(agroot(g), e, &argv[4], argc - 4);
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 'a') && (strncmp(argv[1], "addnode", length) == 0)) {
@@ -92,7 +91,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
        }
        Tcl_AppendResult(interp, obj2cmd(n), NULL);
        setnodeattributes(agroot(g), n, &argv[i], argc - i);
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 'a')
@@ -112,7 +110,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
            i = 2;
        }
        setgraphattributes(sg, &argv[i], argc - i);
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 'c') && (strncmp(argv[1], "countnodes", length) == 0)) {
@@ -126,7 +123,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
        return TCL_OK;
 
     } else if ((c == 'd') && (strncmp(argv[1], "delete", length) == 0)) {
-       reset_layout(gvc, g);
        deleteGraph(gctx, g);
        return TCL_OK;
 
@@ -443,7 +439,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
            }
            setgraphattributes(g, argv2, argc2);
            Tcl_Free((char *) argv2);
-           reset_layout(gvc, g);
        }
        if (argc == 4 && strcmp(argv[2], "viewport") == 0) {
            /* special case to allow viewport to be set without resetting layout */
@@ -456,7 +451,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
                return TCL_ERROR;
            }
            setgraphattributes(g, &argv[2], argc - 2);
-           reset_layout(gvc, g);
        }
        return TCL_OK;
 
@@ -484,7 +478,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
            }
            setedgeattributes(g, NULL, &argv[2], argc - 2);
        }
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 's')
@@ -511,7 +504,6 @@ int graphcmd(ClientData clientData, Tcl_Interp * interp,
            }
            setnodeattributes(g, NULL, &argv[2], argc - 2);
        }
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 's') && (strncmp(argv[1], "showname", length) == 0)) {
index 764f985cf71ca19fc46daead1506b4387665ccb6..768196ede995493e1ded87a8b5d4941a29f95d2d 100644 (file)
@@ -65,12 +65,10 @@ int nodecmd(ClientData clientData, Tcl_Interp * interp,
         e = agedge(g, n, head, NULL, 1);
         Tcl_AppendResult(interp, obj2cmd(e), NULL);
        setedgeattributes(agroot(g), e, &argv[3], argc - 3);
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 'd') && (strncmp(argv[1], "delete", length) == 0)) {
        deleteNode(gctx, g, n);
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 'f') && (strncmp(argv[1], "findedge", length) == 0)) {
@@ -180,7 +178,6 @@ int nodecmd(ClientData clientData, Tcl_Interp * interp,
            }
            setnodeattributes(g, n, &argv[2], argc - 2);
        }
-       reset_layout(gvc, g);
        return TCL_OK;
 
     } else if ((c == 's') && (strncmp(argv[1], "showname", length) == 0)) {
index b096030a939bc82b11d48bbce6b5a3461f5367b5..8415c0e846f758ef9b7babb0abd6a2a9f9fd2086 100644 (file)
@@ -117,4 +117,3 @@ extern size_t Tcldot_string_writer(GVJ_t *job, const char *s, size_t len);
 extern size_t Tcldot_channel_writer(GVJ_t *job, const char *s, size_t len);
 
 extern void tcldot_layout(GVC_t *gvc, Agraph_t * g, char *engine);
-extern void reset_layout(GVC_t *gvc, Agraph_t * sg);