]> git.scottworley.com Git - batteryviewer/commitdiff
Charts have points
authorScott Worley <scottworley@scottworley.com>
Thu, 23 Feb 2023 06:28:57 +0000 (22:28 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 23 Feb 2023 06:28:57 +0000 (22:28 -0800)
chart.c
chart.h

diff --git a/chart.c b/chart.c
index 3efd454b3c454a8af64cae3d32ac9ba8aad27b2d..8b05d33e0ecd28f02abc8419fa54f76f2b7254ba 100644 (file)
--- a/chart.c
+++ b/chart.c
 typedef struct _BVChartPrivate BVChartPrivate;
 
 struct _BVChartPrivate {
-  int temp;
+  GArray *points;
+};
+
+struct BVChartPoint {
+  float x, y;
 };
 
 G_DEFINE_TYPE_WITH_CODE(BVChart, bv_chart, GTK_TYPE_DRAWING_AREA,
@@ -22,8 +26,19 @@ static void bv_chart_class_init(BVChartClass *klass __attribute__((unused))) {}
 
 static void bv_chart_init(BVChart *chart) {
   gtk_widget_set_has_window(GTK_WIDGET(chart), FALSE);
+  BVChartPrivate *priv = bv_chart_get_instance_private(chart);
+  gboolean zero_terminated = FALSE;
+  gboolean clear_ = FALSE;
+  priv->points =
+      g_array_new(zero_terminated, clear_, sizeof(struct BVChartPoint));
 }
 
 GtkWidget *bv_chart_new() {
   return GTK_WIDGET(g_object_new(bv_chart_get_type(), NULL));
 }
+
+void bv_chart_add_point(BVChart *chart, float x, float y) {
+  BVChartPrivate *priv = bv_chart_get_instance_private(chart);
+  struct BVChartPoint p = {.x = x, .y = y};
+  g_array_append_val(priv->points, p);
+}
diff --git a/chart.h b/chart.h
index 7cda505c452695eb0affd13baa678adbf3fc661e..2b83d32e582d60ed9ebeb2a00241b20f9da6f143 100644 (file)
--- a/chart.h
+++ b/chart.h
@@ -33,6 +33,7 @@ struct _BVChartClass {
 
 GType bv_chart_get_type(void) G_GNUC_CONST;
 GtkWidget *bv_chart_new(void);
+void bv_chart_add_point(BVChart *chart, float x, float y);
 
 G_END_DECLS