]> granicus.if.org Git - graphviz/commitdiff
fixes for -Tx11
authorellson <devnull@localhost>
Tue, 22 Feb 2005 20:05:06 +0000 (20:05 +0000)
committerellson <devnull@localhost>
Tue, 22 Feb 2005 20:05:06 +0000 (20:05 +0000)
lib/common/emit.c

index 83db916eac775a3be6403c75a3f74f5f8d4bf761..6dda95ea9b1db9ece10fd666897cf18c44ad29e9 100644 (file)
@@ -336,16 +336,6 @@ static boolean write_node_test(Agraph_t * g, Agnode_t * n)
     return TRUE;
 }
 
-static void emit_reset(GVC_t * gvc, graph_t * g)
-{
-    Agnode_t *n;
-
-    /* reset state */
-    for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
-       ND_state(n) = 0;
-    }
-}
-
 static void emit_background(GVC_t * gvc, graph_t *g, boxf pageBox)
 {
     gvrender_job_t * job = gvc->job;
@@ -1030,6 +1020,10 @@ void emit_graph(GVC_t * gvc, graph_t * g)
     char *s, *url = NULL, *tooltip = NULL, *target = NULL;
     int flags = gvc->job->flags;
 
+    /* reset pagenum state */
+    for (n = agfstnode(g); n; n = agnxtnode(g, n))
+       ND_state(n) = 0;
+
     gvrender_begin_graph(gvc, g);
     if (flags & EMIT_COLORS) {
        gvrender_set_fillcolor(gvc, DEFAULT_FILL);
@@ -1492,9 +1486,6 @@ static void emit_job(GVC_t * gvc, graph_t * g)
 
     emit_init_job(gvc, g);
 
-    if (! (job->flags & GVRENDER_DOES_MULTIGRAPH_OUTPUT_FILES))
-        emit_reset(gvc, g);  /* FIXME - split into emit_init & page reset */
-
     switch (gvc->job->output_lang) {
     case EXTENDED_DOT:
         write_extended_dot(gvc, g, gvc->job->output_file);
@@ -1512,7 +1503,8 @@ static void emit_job(GVC_t * gvc, graph_t * g)
         write_plain_ext(gvc, g, gvc->job->output_file);
         break;
     default:
-        emit_graph(gvc, g);
+       if (! (job->flags & GVRENDER_X11_EVENTS))
+            emit_graph(gvc, g);
         break;
     }