* Axes work for what I have implemented thus far.
[scdataviz] / graphwidget.c
index 7f2d944..473aa49 100644 (file)
@@ -35,6 +35,7 @@
 G_DEFINE_TYPE(GraphWidget, graph_widget, GTK_TYPE_DRAWING_AREA);
 
 #define INSET_PERCENT 0.1
+#define DEBUG_DRAW_AXIS
 
 struct drawing_context {
   GtkWidget *widget;
@@ -72,17 +73,50 @@ static void draw_lines(gpointer data, gpointer user_data) {
   double p2_y = (l->p2_y + cxt->yoffset)*cxt->yscaling;
   double p3_x = (l->p3_x + cxt->xoffset)*cxt->xscaling;
   double p3_y = (l->p3_y + cxt->yoffset)*cxt->yscaling;
-  #ifdef DEBUG
+  #ifdef DEBUG_DRAW
   fprintf(stderr, "draw_lines: p0_x=%g, p0_y=%g, p1_x=%g, p1_y=%g, p2_x=%g, p2_y=%g, p3_x=%g, p3_y=%g\n", p0_x, p0_y, p1_x, p1_y, p2_x, p2_y, p3_x, p3_y);
   #endif
   cairo_move_to(cxt->cr, p0_x, p0_y);
   cairo_curve_to(cxt->cr, p1_x, p1_y, p2_x, p2_y, p3_x, p3_y);
 }
 
+static void draw_axis(struct drawing_context* cxt, struct graph_axis *axis, double scaling, double offset) {
+  #ifdef DEBUG_DRAW_AXIS
+  fprintf(stderr, "draw_axis; major_start=%g, major_step=%g, >major=%d, minor=%d, subminor=%d, label=%s\n", axis->major_start, axis->major_step, axis->major, axis->minor, axis->subminor, axis->title->str);
+  #endif
+  cairo_move_to(cxt->cr, 0, 0);
+  cairo_line_to(cxt->cr, 1, 0);
+  register int i, j, k;
+  register double pos, mpos, smpos;
+  for(i=0; i<axis->major; i++) {
+    pos=i*axis->major_step + axis->major_start;
+    cairo_move_to(cxt->cr, (pos + offset)*scaling, 0);
+    cairo_line_to(cxt->cr, (pos + offset)*scaling, 0.05);
+    for(k=0; k<axis->subminor; k++) {
+      smpos=(k+1)*(axis->major_step/(axis->minor+1)/(axis->subminor+1)) + pos;
+      cairo_move_to(cxt->cr, (smpos + offset)*scaling, 0);
+      cairo_line_to(cxt->cr, (smpos + offset)*scaling, 0.0125);
+    }
+    for(j=0; j<axis->minor; j++) {
+      mpos=(j+1)*(axis->major_step/(axis->minor+1)) + pos;
+      cairo_move_to(cxt->cr, (mpos + offset)*scaling, 0);
+      cairo_line_to(cxt->cr, (mpos + offset)*scaling, 0.025);
+      for(k=0; k<axis->subminor; k++) {
+       smpos=(k+1)*(axis->major_step/(axis->minor+1)/(axis->subminor+1)) + mpos;
+       cairo_move_to(cxt->cr, (smpos + offset)*scaling, 0);
+       cairo_line_to(cxt->cr, (smpos + offset)*scaling, 0.0125);
+      }
+    }
+  }
+  pos=i*axis->major_step + axis->major_start;
+  cairo_move_to(cxt->cr, (pos + offset)*scaling, 0);
+  cairo_line_to(cxt->cr, (pos + offset)*scaling, 0.05);
+}
+
 static void draw(GtkWidget *graph, cairo_t *cr) {
   struct drawing_context cxt;
   GraphWidget *gw = GRAPH_WIDGET(graph);
-  #ifdef DEBUG
+  #ifdef DEBUG_DRAW
   fprintf(stderr, "draw(%d, %d)\n", (int)graph, (int)cr);
   fprintf(stderr, "allocation.x=%d, allocation.y=%d, allocation.height=%d, allocation.width=%d\n", graph->allocation.x, graph->allocation.y, graph->allocation.height, graph->allocation.width);
   #endif
@@ -90,15 +124,27 @@ static void draw(GtkWidget *graph, cairo_t *cr) {
   double y0=graph->allocation.y;
   double height=graph->allocation.height;
   double width=graph->allocation.width;
+  double minx = gw->graph->minx;
+  double maxx = gw->graph->maxx;
+  double miny = gw->graph->miny;
+  double maxy = gw->graph->maxy;
+  if(gw->graph->xaxis != NULL) {
+    minx = gw->graph->xaxis->major_start;
+    maxx = gw->graph->xaxis->major_start + gw->graph->xaxis->major_step*gw->graph->xaxis->major;
+  }
+  if(gw->graph->yaxis != NULL) {
+    miny = gw->graph->yaxis->major_start;
+    maxy = gw->graph->yaxis->major_start + gw->graph->yaxis->major_step*gw->graph->yaxis->major;
+  }
   cxt.widget = graph;
   cxt.cr = cr;
   cxt.radius = 0.01;
-  cxt.xscaling = (gw->graph->points->len == 1)? 1 : (1/(gw->graph->maxx - gw->graph->minx));
-  cxt.yscaling = (gw->graph->points->len == 1)? 1 : (1/(gw->graph->maxy - gw->graph->miny));
-  cxt.xoffset = (gw->graph->points->len == 1)? (-gw->graph->minx/2) : (-gw->graph->minx);
-  cxt.yoffset = (gw->graph->points->len == 1)? (-gw->graph->miny/2) : (-gw->graph->miny);
+  cxt.xscaling = (gw->graph->points->len == 1)? 1 : (1/(maxx - minx));
+  cxt.yscaling = (gw->graph->points->len == 1)? 1 : (1/(maxy - miny));
+  cxt.xoffset = (gw->graph->points->len == 1)? (-minx/2) : (-minx);
+  cxt.yoffset = (gw->graph->points->len == 1)? (-miny/2) : (-miny);
   #ifdef DEBUG
-  fprintf(stderr, "minx=%g, maxx=%g, miny=%g, maxy=%g, xscaling=%g, yscaling=%g, xoffset=%g, yoffset=%g\n", gw->graph->minx, gw->graph->maxx, gw->graph->miny, gw->graph->maxy, cxt.xscaling, cxt.yscaling, cxt.xoffset, cxt.yoffset);
+  fprintf(stderr, "minx=%g, maxx=%g, miny=%g, maxy=%g, xscaling=%g, yscaling=%g, xoffset=%g, yoffset=%g\n", minx, maxx, miny, maxy, cxt.xscaling, cxt.yscaling, cxt.xoffset, cxt.yoffset);
   fprintf(stderr, "x0=%g, y0=%g, width=%g, height=%g\n", x0, y0, height, width);
   fprintf(stderr, "translate=(%g, %g)\n", x0 + ((width>height)?(width-height)/2.0:0), y0+((width > height)?height:width) + ((height>width)?(height-width)/2.0:0));
 #endif
@@ -113,15 +159,25 @@ static void draw(GtkWidget *graph, cairo_t *cr) {
   cairo_select_font_face (cr, "Georgia",
                          CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
   cairo_set_font_size (cr, 0.05);
+  if(gw->graph->lines != NULL) {
+    cairo_set_source_rgba(cr, 0, 0, 0, 0.25);
+    g_ptr_array_foreach(gw->graph->lines, &draw_lines, (gpointer)&cxt);
+    cairo_stroke(cr);
+  }
   cairo_set_source_rgb(cr, 1, 1, 1);
   cairo_fill_preserve(cr);
   cairo_set_source_rgb(cr, 0, 0, 0);
-  cairo_stroke(cr);
   g_ptr_array_foreach(gw->graph->points, &draw_point, (gpointer)&cxt);
-  if(gw->graph->lines != NULL) {
-    g_ptr_array_foreach(gw->graph->lines, &draw_lines, (gpointer)&cxt);
-    cairo_stroke(cr);
+  if(gw->graph->xaxis != NULL) 
+    draw_axis(&cxt, gw->graph->xaxis, cxt.xscaling, cxt.xoffset);
+  if(gw->graph->yaxis != NULL) {
+    cairo_save(cr);
+    cairo_matrix_t matrix = { .xx=0, .xy = 1, .x0 = 0, .yx = 1, .yy = 0, .y0 = 0 };
+    cairo_transform(cr, &matrix);
+    draw_axis(&cxt, gw->graph->yaxis, cxt.yscaling, cxt.yoffset);
+    cairo_restore(cr);
   }
+  cairo_stroke(cr);
   cairo_restore(cr);
 }