-rw-r--r-- | src/sleep_timeline.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/sleep_timeline.h b/src/sleep_timeline.h new file mode 100644 index 0000000..3264fd6 --- a/dev/null +++ b/src/sleep_timeline.h | |||
@@ -0,0 +1,29 @@ | |||
1 | #ifndef __N_SLEEP_TIMELINE_H | ||
2 | #define __N_SLEEP_TIMELINE_H | ||
3 | |||
4 | #include <time.h> | ||
5 | #include <gtkmm/drawingarea.h> | ||
6 | #include <napkin/types.h> | ||
7 | |||
8 | namespace napkin { | ||
9 | namespace gtk { | ||
10 | |||
11 | void render_sleep_timeline( | ||
12 | const hypnodata_t& hd, | ||
13 | const Glib::RefPtr<Gdk::Drawable>& w, | ||
14 | int x0,int y0,int dx,int dy, | ||
15 | time_t _t0=0,time_t _t1=0); | ||
16 | |||
17 | class sleep_timeline_t : public Gtk::DrawingArea { | ||
18 | public: | ||
19 | hypnodata_ptr_t hd; | ||
20 | |||
21 | bool on_expose_event(GdkEventExpose*); | ||
22 | void set_data(const hypnodata_ptr_t& _hd); | ||
23 | }; | ||
24 | |||
25 | |||
26 | } | ||
27 | } | ||
28 | |||
29 | #endif /* __N_SLEEP_TIMELINE_H */ | ||