Added date labels to the edit window
[ttodo.git] / elist.h
blob6875b3e086192d9486f45116ba54d615381efc10
1 // elist.h
2 //
4 #ifndef ELIST_H_7BDB6D9539FC19CC7C7DA4A0140965B0
5 #define ELIST_H_7BDB6D9539FC19CC7C7DA4A0140965B0
7 #include "ui/listbox.h"
8 #include "tde.h"
10 /// List of todo entries.
11 class CTodoList : public CListbox {
12 public:
13 typedef const todolist_t& rctodolist_t;
14 public:
15 CTodoList (rctodolist_t rctdl);
16 inline void Update (rctodolist_t) { SetListSize (m_Todos.size()); }
17 virtual void OnDrawItem (CGC& gc, rcpos_t pos, uint32_t ii);
18 private:
19 rctodolist_t m_Todos; ///< Link to the data.
22 #endif