summaryrefslogtreecommitdiffabout
path: root/src/widgets.h
Side-by-side diff
Diffstat (limited to 'src/widgets.h') (more/less context) (ignore whitespace changes)
-rw-r--r--src/widgets.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/widgets.h b/src/widgets.h
new file mode 100644
index 0000000..99936ff
--- a/dev/null
+++ b/src/widgets.h
@@ -0,0 +1,33 @@
+#ifndef __N_WIDGETS_H
+#define __N_WIDGETS_H
+
+#include <gtkmm/box.h>
+#include <gtkmm/label.h>
+#include <gtkmm/separator.h>
+#include <gtkmm/table.h>
+#include "sleep_timeline.h"
+
+namespace napkin {
+ namespace gtk {
+
+ class hypnoinfo_t : public Gtk::VBox {
+ public:
+ Gtk::Label l_date;
+ Gtk::HSeparator l_hseparator;
+ Gtk::Table w_upper;
+ Gtk::Label lc_tobed, lc_timeline, lc_alarm, lc_window;
+ Gtk::Label lf_tobed, lf_alarm, lf_window;
+ sleep_timeline_t st_timeline;
+ Gtk::Label lc_almost_awakes;
+ Gtk::Label lf_almost_awakes;
+ Gtk::Label l_data_a;
+
+ hypnoinfo_t();
+
+ void update_data(const hypnodata_ptr_t& hd);
+ };
+
+ }
+}
+
+#endif /* __N_WIDGETS_H */