X-Git-Url: http://git.scottworley.com/batteryviewer/blobdiff_plain/366d093364eaf8b83c3721bfae4e4d6091f61988..769fc186912381ce8528820bacfa7846a16bade2:/chart.c diff --git a/chart.c b/chart.c index 808a275..1813aa2 100644 --- a/chart.c +++ b/chart.c @@ -1,4 +1,20 @@ -/* +/* batteryviewer: Display battery metrics + * Copyright (C) 2023 Scott Worley + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * + * * h/t https://ptomato.name/advanced-gtk-techniques/html/custom-container.html * for examples of how to make GTK widgets */ @@ -21,9 +37,59 @@ struct BVChartPoint { float x, y; }; +struct ScreenPoint { + float x, y; +}; + G_DEFINE_TYPE_WITH_CODE(BVChart, bv_chart, GTK_TYPE_DRAWING_AREA, G_ADD_PRIVATE(BVChart)) +typedef void (*cairo_draw_func)(cairo_t *cr, double x, double y); + +static struct ScreenPoint to_screen(BVChartPrivate *priv, + GtkAllocation *allocation, + struct BVChartPoint *p) { + int margin = 3; + float xscale = (allocation->width - 2 * margin) / (priv->maxx - priv->minx); + float yscale = (allocation->height - 2 * margin) / (priv->miny - priv->maxy); + struct ScreenPoint screen_p = { + .x = xscale * (p->x - priv->minx) + margin, + .y = yscale * (p->y - priv->maxy) + margin, + }; + return screen_p; +} + +static void draw_data(BVChartPrivate *priv, cairo_t *cr, + GtkAllocation *allocation) { + cairo_set_source_rgb(cr, 0.0, 0.0, 1.0); + float gap_threshold = 3.0; + float prevx = 0.0; + for (guint i = 0; i < priv->points->len; i++) { + struct BVChartPoint *p = + &g_array_index(priv->points, struct BVChartPoint, i); + gboolean is_gap = p->x - prevx > gap_threshold; + cairo_draw_func f = is_gap ? cairo_move_to : cairo_line_to; + struct ScreenPoint screen_p = to_screen(priv, allocation, p); + f(cr, screen_p.x, screen_p.y); + prevx = p->x; + } + cairo_stroke(cr); +} + +static void draw_axis(BVChartPrivate *priv, cairo_t *cr, + GtkAllocation *allocation) { + if (priv->miny < 0.0 && priv->maxy > 0.0) { + cairo_set_source_rgb(cr, 0.0, 0.0, 0.0); + struct BVChartPoint p = {.x = priv->minx, .y = 0.0}; + struct ScreenPoint screen_p = to_screen(priv, allocation, &p); + cairo_move_to(cr, screen_p.x, screen_p.y); + p.x = priv->maxx; + screen_p = to_screen(priv, allocation, &p); + cairo_line_to(cr, screen_p.x, screen_p.y); + cairo_stroke(cr); + } +} + static gboolean bv_chart_draw(GtkWidget *widget, cairo_t *cr) { BVChart *chart = BV_CHART(widget); BVChartPrivate *priv = bv_chart_get_instance_private(chart); @@ -37,20 +103,8 @@ static gboolean bv_chart_draw(GtkWidget *widget, cairo_t *cr) { GtkAllocation allocation; gtk_widget_get_allocation(widget, &allocation); - float xscale = allocation.width / (priv->maxx - priv->minx); - float yscale = allocation.height / (priv->miny - priv->maxy); - cairo_set_source_rgb(cr, 0.0, 0.0, 1.0); - struct BVChartPoint *start = - &g_array_index(priv->points, struct BVChartPoint, 0); - cairo_move_to(cr, xscale * (start->x - priv->minx), - yscale * (start->y - priv->maxy)); - for (guint i = 1; i < priv->points->len; i++) { - struct BVChartPoint *p = - &g_array_index(priv->points, struct BVChartPoint, i); - cairo_line_to(cr, xscale * (p->x - priv->minx), - yscale * (p->y - priv->maxy)); - } - cairo_stroke(cr); + draw_data(priv, cr, &allocation); + draw_axis(priv, cr, &allocation); return TRUE; }