]> granicus.if.org Git - graphviz/commitdiff
x11 changes - but still buggy
authorellson <devnull@localhost>
Tue, 15 Feb 2005 19:40:31 +0000 (19:40 +0000)
committerellson <devnull@localhost>
Tue, 15 Feb 2005 19:40:31 +0000 (19:40 +0000)
lib/gvc/gvcint.h
lib/gvc/gvrender.c

index 2aa538945ea5e701adcca4709f09e1f65b902f01..95bebe562c8bc49be1a47068cbe19bd1312a49f0 100644 (file)
@@ -64,7 +64,8 @@ extern "C" {
     typedef struct gvrender_job_s gvrender_job_t;
 
     struct gvrender_job_s {
-       gvrender_job_t *next;
+       gvrender_job_t *next;  /* linked list of jobs */
+       gvrender_job_t *next_active;   /* linked list of active jobs (e.g. multiple windows) */
        char *output_filename;
        char *output_langname;
        FILE *output_file;
@@ -158,6 +159,7 @@ extern "C" {
        gvlayout_engine_t *layout_engine;       /* current layout engine */
        int layout_id;          /* internal id of current layout */
        char *graphname;        /* name from graph */
+       gvrender_job_t *active_jobs;   /* linked list of active jobs */
 
        char **lib;
 
index b79536de4d9cc6f15d6f6409ddf1a43105152c7d..cbc95d025ed5fe5c6937799847a2e8e0b1112f8c 100644 (file)
@@ -152,6 +152,10 @@ void gvrender_begin_job(GVC_t * gvc)
     gvrender_job_t *job = gvc->job;
     gvrender_engine_t *gvre = job->render_engine;
 
+    /* insert job in active list */
+    job->next_active = gvc->active_jobs;
+    gvc->active_jobs = job;
+
     if (gvre) {
         if (gvre->begin_job)
            gvre->begin_job(job);
@@ -169,7 +173,7 @@ void gvrender_begin_job(GVC_t * gvc)
 
 void gvrender_end_job(GVC_t * gvc)
 {
-    gvrender_job_t *job = gvc->job;
+    gvrender_job_t **pjob, *job = gvc->job;
     gvrender_engine_t *gvre = job->render_engine;
 
     if (gvre && gvre->end_job)
@@ -183,6 +187,15 @@ void gvrender_end_job(GVC_t * gvc)
     }
 #endif
     gvc->lib = NULL;
+
+    /* remove job from active list */
+    for (pjob = &(gvc->active_jobs); *pjob; pjob = &((*pjob)->next_active)) {
+       if (*pjob == job) {
+               *pjob = job->next_active;
+               job->next_active = NULL;
+               break;
+       }
+    }
 }
 
 /* font modifiers */