From 04fb190243442e83349f129b523ab747e58100bf Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sat, 05 Apr 2008 11:17:33 +0000 Subject: Initial commit into public repository Signed-off-by: Michael Krelin --- (limited to 'src/widgets.cc') diff --git a/src/widgets.cc b/src/widgets.cc new file mode 100644 index 0000000..ea85bc8 --- a/dev/null +++ b/src/widgets.cc @@ -0,0 +1,63 @@ +#include +#include "widgets.h" + +namespace napkin { + namespace gtk { + + hypnoinfo_t::hypnoinfo_t() + : w_upper(4,3,false/*homogeneous*/), + lc_tobed("To bed:",0.5,0.5), + lc_timeline("Sleep timeline:",0.5,0.5), + lc_alarm("Alarm:",0.5,0.5), lc_window("Window:",0.5,0.5), + l_data_a("",0.9,0.5) + { + add(l_date); + add(l_hseparator); + w_upper.set_col_spacings(5); + w_upper.attach(lc_tobed,0,1,0,1, Gtk::SHRINK); + w_upper.attach(lc_timeline,1,2,0,1, Gtk::SHRINK); + w_upper.attach(lc_alarm,2,3,0,1, Gtk::SHRINK); + w_upper.attach(lf_tobed,0,1,1,4, Gtk::SHRINK); + w_upper.attach(st_timeline,1,2,1,4, + Gtk::FILL|Gtk::EXPAND,Gtk::FILL|Gtk::EXPAND,0,0); + w_upper.attach(lf_alarm,2,3,1,2, Gtk::SHRINK); + w_upper.attach(lc_window,2,3,2,3, Gtk::SHRINK); + w_upper.attach(lf_window,2,3,3,4, Gtk::SHRINK); + add(w_upper); + add(lc_almost_awakes); + add(lf_almost_awakes); + add(l_data_a); + show_all(); + } + + void hypnoinfo_t::update_data(const hypnodata_ptr_t& hd) { + l_date.set_use_markup(true); + l_date.set_markup(""+hd->str_date()+""); + lf_tobed.set_use_markup(true); + lf_tobed.set_markup(""+hd->str_to_bed()+""); + lf_alarm.set_use_markup(true); + lf_alarm.set_markup(""+hd->str_alarm()+""); + char tmp[64]; + snprintf(tmp,sizeof(tmp),"%d mins",hd->window); + lf_window.set_use_markup(true); + lf_window.set_markup(tmp); + snprintf(tmp,sizeof(tmp),"%d almost awake moments:",(int)hd->almost_awakes.size()); + lc_almost_awakes.set_use_markup(true); + lc_almost_awakes.set_markup(tmp); + string awlist; + for(vector::const_iterator i=hd->almost_awakes.begin();i!=hd->almost_awakes.end();++i) { + if(!awlist.empty()) + awlist += ", "; + awlist += strftime("%H:%M:%S",*i); + } + lf_almost_awakes.set_use_markup(true); + lf_almost_awakes.set_line_wrap(true); + lf_almost_awakes.set_line_wrap_mode(Pango::WRAP_WORD); + lf_almost_awakes.set_markup(""+awlist+""); + l_data_a.set_use_markup(true); + l_data_a.set_markup("Data A is "+hd->str_data_a()+""); + st_timeline.set_data(hd); + } + + } +} -- cgit v0.9.0.2