http://git.freesmartphone.org/?p=specs.git;a=blob_plain;f=html/index.html;hb=HEAD
* Features to add:
- - zavai calendar: show month notes ~/.zavai/cal/YYYY/MM/00.txt
- - zavai calendar: show global notes ~/.zavai/cal/notes.txt
+ - calendar: show preview of next 30 days
- contacts: show as a fancy focus+context list (see prefuse)
- GSM power and network
- link to open SHR-dialer
protected Gtk.Notebook notebook;
protected FileNotes month_notes;
protected FileNotes day_notes;
+ protected FileNotes general_notes;
protected int cur_year;
protected int cur_month;
protected int cur_day;
notebook = new Gtk.Notebook();
day_notes = new FileNotes();
- notebook.append_page(day_notes, new Gtk.Label("Day notes"));
+ notebook.append_page(day_notes, new Gtk.Label("Day"));
month_notes = new FileNotes();
- notebook.append_page(month_notes, new Gtk.Label("Month notes"));
+ notebook.append_page(month_notes, new Gtk.Label("Month"));
+ general_notes = new FileNotes();
+ general_notes.load(zavai.config.homedir + "/cal/notes.txt");
+ notebook.append_page(general_notes, new Gtk.Label("General"));
+ notebook.append_page(new Gtk.Label("TODO"), new Gtk.Label("Next 30"));
pack_start(notebook, true, true, 0);
{
day_notes.save();
month_notes.save();
+ general_notes.save();
}
public void show_today()