TimerGraphWindow.h 510 B

12345678910111213141516171819
  1. #ifndef TIMER_GRAPH_WINDOW_H
  2. #define TIMER_GRAPH_WINDOW_H
  3. #include <gtk/gtk.h>
  4. #include "TimerApplication.h"
  5. #include "TimerTaskTree.h"
  6. G_BEGIN_DECLS
  7. #define TIMER_TYPE_GRAPH_WINDOW timer_graph_window_get_type()
  8. G_DECLARE_FINAL_TYPE(TimerGraphWindow, timer_graph_window, TIMER, GRAPH_WINDOW, GtkDialog);
  9. TimerGraphWindow *timer_graph_window_new(TimerApplication *app, TimerDataPoint *dayData, gsize dayDataLen, TimerDataPoint *taskData, gsize taskDataLen);
  10. G_END_DECLS
  11. #endif /* TIMER_GRAPH_WINDOW_H */