]> granicus.if.org Git - graphviz/commitdiff
partial fix for landscape
authorellson <devnull@localhost>
Thu, 24 Feb 2005 23:53:29 +0000 (23:53 +0000)
committerellson <devnull@localhost>
Thu, 24 Feb 2005 23:53:29 +0000 (23:53 +0000)
lib/common/emit.c
lib/common/gdgen.c
lib/gvc/gvcint.h
lib/gvc/gvrender.c

index 5131ba008342404619d9c73616d7195732401e5e..bc33b983eb58bbd094f64b8dbfe999904561d4c8 100644 (file)
@@ -270,11 +270,40 @@ static void init_job_pagination(GVC_t * gvc, graph_t * g)
        job->pageBox.LL.y += extra.y / 2;
     }
 
-    /* FIXME, the treatment of margins doesn't look right.  are margins
-       in device coords or graph coords ?  what happens to margins under zooming */
+fprintf(stderr,"pageBox = %g,%g %g,%g\n",
+       job->pageBox.LL.x,
+       job->pageBox.LL.y,
+       job->pageBox.UR.x,
+       job->pageBox.UR.y);
+fprintf(stderr,"DS = %g,%g\n",
+       DS.x,
+       DS.y);
+fprintf(stderr,"zoom = %g\n",
+        job->zoom);
+
     PF2P(job->pageBox.LL,job->boundingBox.LL);
-    job->boundingBox.UR.x = ROUND(job->pageBox.LL.x + job->pageSize.x * job->zoom);
-    job->boundingBox.UR.y = ROUND(job->pageBox.LL.y + job->pageSize.y * job->zoom);
+    if (GD_drawing(g)->landscape) {
+        job->boundingBox.UR.x = job->height;
+        job->boundingBox.UR.y = job->width;
+       job->offset.x = job->boundingBox.UR.y;
+       job->offset.y = job->boundingBox.LL.x;
+       job->size.x = job->boundingBox.UR.x;
+       job->size.y = job->boundingBox.UR.y;
+    }
+    else {
+        job->boundingBox.UR.x = job->width;
+        job->boundingBox.UR.y = job->height;
+       job->offset.x = job->boundingBox.LL.x;
+        job->offset.y = job->boundingBox.LL.y;
+       job->size.x = job->boundingBox.UR.x;
+       job->size.y = job->boundingBox.UR.y;
+    }
+
+fprintf(stderr,"boundingBox = %d,%d %d,%d\n",
+        job->boundingBox.LL.x,
+        job->boundingBox.LL.y,
+        job->boundingBox.UR.x,
+        job->boundingBox.UR.y);
 }
 
 static void firstpage(GVC_t *gvc)
index 4ee11a49ad05d597cf2e45373a661d33c253ec0f..e1bcf81c9a74d10c099bb0737422664f8eb2fb19 100644 (file)
@@ -142,8 +142,7 @@ static void init1_gd(GVC_t * gvc, graph_t * g, box bb, point pb)
        Dpi = DEFAULT_DPI;
     DevScale = Dpi / POINTS_PER_INCH;
 
-    Viewport.x = gvc->job->width;
-    Viewport.y = gvc->job->height;
+    Viewport = gvc->job->size;
     if (Viewport.x) {
        Zoom = gvc->job->zoom;
        GraphFocus = gvc->job->focus;
index 95bebe562c8bc49be1a47068cbe19bd1312a49f0..b3bb9a3a66f62cb88185a67e31ec8ff833ddbe3d 100644 (file)
@@ -89,6 +89,8 @@ extern "C" {
 
         pointf margin;          /* job-specific margin */
        int rotation;            /* job-specific page rotation */
+       point   offset;          /* offset into device in device coords */
+       point   size;            /* size of device in device coords */
 
        box     boundingBox;     /* drawable region in device coords */
        boxf    pageBox;         /* drawable region in graph coords */
index 8d8a3b1f550cdc78a6c5ef94900872f1ced4fff5..823ccfc5c750266093af19439ba7b734546264ed 100644 (file)
@@ -300,6 +300,15 @@ void gvrender_begin_graph(GVC_t * gvc, graph_t * g)
     else {
        codegen_t *cg = job->codegen;
        
+fprintf(stderr,"boundingBox = %d,%d %d,%d\n",
+        job->boundingBox.LL.x,
+        job->boundingBox.LL.y,
+        job->boundingBox.UR.x,
+        job->boundingBox.UR.y);
+fprintf(stderr,"pb = %d,%d %d,%d\n",
+        gvc->pb.x,
+        gvc->pb.y);
+
        if (cg && cg->begin_graph)
            cg->begin_graph(gvc, g, job->boundingBox, gvc->pb);
     }
@@ -336,7 +345,7 @@ void gvrender_begin_page(GVC_t * gvc)
        codegen_t *cg = job->codegen;
 
        if (cg && cg->begin_page)
-           cg->begin_page(job->g, job->pagesArrayElem, job->zoom, job->rotation, job->pageOffset);
+           cg->begin_page(job->g, job->pagesArrayElem, job->zoom, job->rotation, job->offset);
     }
 #endif
 }