TimerGraph.h 431 B

123456789101112131415161718192021
  1. #ifndef TIMER_GRAPH_H
  2. #define TIMER_GRAPH_H
  3. #include <gtk/gtk.h>
  4. G_BEGIN_DECLS
  5. typedef struct {
  6. int x;
  7. int y;
  8. } TimerGraphPoint;
  9. #define TIMER_TYPE_GRAPH timer_graph_get_type()
  10. G_DECLARE_FINAL_TYPE(TimerGraph, timer_graph, TIMER, GRAPH, GtkBin);
  11. GtkWidget *timer_graph_new(const TimerGraphPoint *verts, gsize length, const char *xLabel, const char *yLabel, const char *title);
  12. G_END_DECLS
  13. #endif /* TIMER_GRAPH_H */