// // // C++ Interface: $MODULE$ // // Description: // // // Author: Patrick S. Vogt , (C) 2003 // // Copyright: See COPYING file that comes with this distribution // // #ifndef TODOITEM_H #define TODOITEM_H #include "resultitem.h" class OTodo; /** @author Patrick S. Vogt */ class TodoItem : public ResultItem { public: TodoItem(OListViewItem* parent, OTodo *todo); ~TodoItem(); virtual QString toRichText(); virtual void action( int ); virtual QIntDict actions(); private: void setIcon(); OTodo *_todo; }; #endif