]> git.cworth.org Git - acre/blobdiff - acre.c
Account for space between tick values and frames
[acre] / acre.c
diff --git a/acre.c b/acre.c
index ca8a765abe1e3334557a8d39a8e3e0dab3cfd9c3..cec8a2f2532a528ffdc32e6b1a9c0c227d1df68d 100644 (file)
--- a/acre.c
+++ b/acre.c
@@ -25,6 +25,7 @@
 #include "xmalloc.h"
 
 #include <string.h>
+#include <stdarg.h>
 #include <math.h>
 
 typedef struct _acre_data_point_2d {
@@ -89,6 +90,11 @@ acre_create (void)
     acre->data_size = 0;
     acre->num_data = 0;
 
+    acre->chart.x = 0;
+    acre->chart.y = 0;
+    acre->chart.width = 0;
+    acre->chart.height = 0;
+
     return acre;
 }
 
@@ -157,6 +163,71 @@ acre_add_data (acre_t *acre, acre_data_t *data)
 #define ACRE_TITLE_FONT_SIZE 32
 #define ACRE_PAD (ACRE_FONT_SIZE)
 #define ACRE_TICK_SIZE 6
+#define ACRE_X_TICK_VALUE_PAD 2
+#define ACRE_Y_TICK_VALUE_PAD 4
+
+static PangoLayout *
+_create_layout (acre_t *acre, const char *text)
+{
+    PangoLayout *layout;
+
+    layout = pango_cairo_create_layout (acre->cr);
+    pango_layout_set_font_description (layout, acre->font);
+    pango_layout_set_text (layout, text, -1);
+    pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER);
+
+    return layout;
+}
+
+#define PRINTF_FORMAT(fmt_index, va_index) __attribute__ ((__format__(__printf__, fmt_index, va_index)))
+
+static PangoLayout *
+_create_layout_vprintf (acre_t *acre, const char *fmt, va_list ap)
+{
+    PangoLayout *layout;
+    char *text;
+
+    vasprintf (&text, fmt, ap);
+
+    layout = _create_layout (acre, text);
+
+    free (text);
+
+    return layout;
+}
+
+static PangoLayout *
+_create_layout_printf (acre_t *acre, const char *fmt, ...)
+    PRINTF_FORMAT (2, 3);
+
+static PangoLayout *
+_create_layout_printf (acre_t *acre, const char *fmt, ...)
+{
+    va_list ap;
+    PangoLayout *layout;
+
+    va_start (ap, fmt);
+
+    layout = _create_layout_vprintf (acre, fmt, ap);
+
+    va_end (ap);
+
+    return layout;
+}
+
+static void
+_destroy_layout (PangoLayout *layout)
+{
+    g_object_unref (layout);
+}
+
+static void
+_show_layout (cairo_t *cr, PangoLayout *layout)
+{
+    pango_cairo_show_layout (cr, layout);
+
+    _destroy_layout (layout);
+}
 
 static void
 _draw_title_and_labels (acre_t *acre)
@@ -164,6 +235,8 @@ _draw_title_and_labels (acre_t *acre)
     cairo_t *cr = acre->cr;
     PangoFontDescription *title_font;
     PangoLayout *title_layout, *x_axis_layout, *y_axis_layout;
+    PangoLayout *min_y, *max_y;
+    int min_y_width, max_y_width, y_axis_value_width;
     int title_width, title_height;
     int x_axis_width, x_axis_height;
     int y_axis_width, y_axis_height;
@@ -181,29 +254,28 @@ _draw_title_and_labels (acre_t *acre)
     pango_font_description_set_absolute_size (title_font,
                                              ACRE_TITLE_FONT_SIZE * PANGO_SCALE);
 
-    title_layout = pango_cairo_create_layout (cr);
+    title_layout = _create_layout (acre, acre->title);
     pango_layout_set_font_description (title_layout, title_font);
-    pango_layout_set_text (title_layout, acre->title, -1);
-    pango_layout_set_alignment (title_layout, PANGO_ALIGN_CENTER);
 
-    x_axis_layout = pango_cairo_create_layout (cr);
-    pango_layout_set_font_description (x_axis_layout, acre->font);
-    pango_layout_set_text (x_axis_layout, acre->x_axis.label, -1);
-    pango_layout_set_alignment (x_axis_layout, PANGO_ALIGN_CENTER);
+    x_axis_layout = _create_layout (acre, acre->x_axis.label);
+    y_axis_layout = _create_layout (acre, acre->y_axis.label);
+
+    min_y = _create_layout_printf (acre, "%g",
+                                  round (acre->y_axis.min));
+    max_y = _create_layout_printf (acre, "%g",
+                                  round (acre->y_axis.max));
 
-    y_axis_layout = pango_cairo_create_layout (cr);
-    pango_layout_set_font_description (y_axis_layout, acre->font);
-    pango_layout_set_text (y_axis_layout, acre->y_axis.label, -1);
-    pango_layout_set_alignment (y_axis_layout, PANGO_ALIGN_CENTER);
+    pango_layout_get_pixel_size (min_y, &min_y_width, NULL);
+    pango_layout_get_pixel_size (max_y, &max_y_width, NULL);
+    y_axis_value_width = MAX (min_y_width, max_y_width);
+
+    _destroy_layout (min_y);
+    _destroy_layout (max_y);
 
     /* Iterate with the layout of the title and axis labels until they
      * are stable, (this requires iteration since we don't know what
      * to set their widths to in advance due to the wrapping of the
      * other elements). */
-    acre->chart.x = 0;
-    acre->chart.y = 0;
-    acre->chart.width = acre->width;
-    acre->chart.height = acre->height;
     while (1) {
        pango_layout_set_width (title_layout, acre->chart.width * PANGO_SCALE);
        pango_layout_set_width (x_axis_layout, acre->chart.width * PANGO_SCALE);
@@ -214,11 +286,13 @@ _draw_title_and_labels (acre_t *acre)
        pango_layout_get_pixel_size (y_axis_layout, &y_axis_width, &y_axis_height);
 
        new_chart.x = ACRE_PAD + y_axis_height +
-           ACRE_PAD + ACRE_FONT_SIZE;
+           ACRE_PAD + y_axis_value_width + ACRE_Y_TICK_VALUE_PAD;
        new_chart.width = acre->width - acre->chart.x - ACRE_PAD;
 
        new_chart.y = ACRE_PAD + title_height + ACRE_PAD;
-       new_chart.height = acre->height - acre->chart.y - (ACRE_FONT_SIZE + ACRE_PAD + x_axis_height + ACRE_PAD);
+       new_chart.height = acre->height - acre->chart.y - 
+           (ACRE_X_TICK_VALUE_PAD + ACRE_FONT_SIZE +
+            ACRE_PAD + x_axis_height + ACRE_PAD);
 
        if (new_chart.x == acre->chart.x &&
            new_chart.y == acre->chart.y &&
@@ -237,21 +311,21 @@ _draw_title_and_labels (acre_t *acre)
     cairo_set_source_rgb (cr, 0, 0, 0);
 
     cairo_move_to (cr, acre->chart.x, ACRE_PAD);
-    pango_cairo_show_layout (cr, title_layout);
+    _show_layout (cr, title_layout);
 
     cairo_save (cr);
     {
        cairo_translate (cr, ACRE_PAD, acre->chart.y + acre->chart.height);
        cairo_rotate (cr, - M_PI / 2.0);
        cairo_move_to (cr, 0, 0);
-       pango_cairo_show_layout (cr, y_axis_layout);
+       _show_layout (cr, y_axis_layout);
     }
     cairo_restore (cr);
 
     cairo_move_to (cr, acre->chart.x,
                   acre->chart.y + acre->chart.height +
                   ACRE_FONT_SIZE + ACRE_PAD);
-    pango_cairo_show_layout (cr, x_axis_layout);
+    _show_layout (cr, x_axis_layout);
 
     cairo_restore (cr);
 }
@@ -340,6 +414,11 @@ _compute_axis_ranges (acre_t *acre)
     double x_adjust, y_adjust;
     cairo_t *cr = acre->cr;
 
+    acre->x_axis.min = acre->data[0]->points[0].x;
+    acre->x_axis.max = acre->data[0]->points[0].x;
+    acre->y_axis.min = acre->data[0]->points[0].y;
+    acre->y_axis.min = acre->data[0]->points[0].y;
+
     /* First, simply find the extrema of the data. */
     for (d = 0; d < acre->num_data; d++) {
        data = acre->data[d];
@@ -459,20 +538,13 @@ _draw_frame_and_ticks (acre_t *acre)
                cairo_save (cr);
                {
                    PangoLayout *layout;
-                   char *label;
                    int width, height;
-                   layout = pango_cairo_create_layout (cr);
-                   pango_layout_set_font_description (layout, acre->font);
-                   asprintf (&label, "%g", x);
-                   pango_layout_set_text (layout, label, -1);
-                   free (label);
-                   pango_layout_set_alignment (layout,
-                                               PANGO_ALIGN_CENTER);
+                   layout = _create_layout_printf (acre, "%g", x);
                    cairo_move_to (cr, x, acre->y_axis.min);
                    cairo_identity_matrix (cr);
                    pango_layout_get_pixel_size (layout, &width, &height);
-                   cairo_rel_move_to (cr, -width / 2, 2);
-                   pango_cairo_show_layout (cr, layout);
+                   cairo_rel_move_to (cr, -width / 2, ACRE_X_TICK_VALUE_PAD);
+                   _show_layout (cr, layout);
                }
                cairo_restore (cr);
            }
@@ -501,20 +573,14 @@ _draw_frame_and_ticks (acre_t *acre)
                cairo_save (cr);
                {
                    PangoLayout *layout;
-                   char *label;
                    int width, height;
-                   layout = pango_cairo_create_layout (cr);
-                   pango_layout_set_font_description (layout, acre->font);
-                   asprintf (&label, "%g", y);
-                   pango_layout_set_text (layout, label, -1);
-                   free (label);
-                   pango_layout_set_alignment (layout,
-                                               PANGO_ALIGN_CENTER);
+                   layout = _create_layout_printf (acre, "%g", y);
                    cairo_move_to (cr, acre->x_axis.min, y);
                    cairo_identity_matrix (cr);
                    pango_layout_get_pixel_size (layout, &width, &height);
-                   cairo_rel_move_to (cr, -width-2, -height/2);
-                   pango_cairo_show_layout (cr, layout);
+                   cairo_rel_move_to (cr, -width - ACRE_Y_TICK_VALUE_PAD,
+                                      -height/2);
+                   _show_layout (cr, layout);
                }
                cairo_restore (cr);
            }
@@ -543,17 +609,25 @@ void
 acre_draw (acre_t *acre, cairo_t *cr, int width, int height)
 {
     acre->cr = cr;
+
     acre->width = width;
     acre->height = height;
 
+    acre->chart.width = width;
+    acre->chart.height = height;
+
     cairo_save (cr);
 
     cairo_set_source_rgb (cr, 1, 1, 1);
 
-    cairo_paint (cr);
+    /* We compute the axis ranges before doing label layout so that we
+     * can account for the width of the y-axis value labels. */
+    _compute_axis_ranges (acre);
 
     _draw_title_and_labels (acre);
 
+    /* And we recompute the axis ranges now that the title and axis
+     * label space is all measured and accounted for. */
     _compute_axis_ranges (acre);
 
     _draw_data (acre);