00001 // 00002 // 00003 // C++ Interface: $MODULE$ 00004 // 00005 // Description: 00006 // 00007 // 00008 // Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003 00009 // 00010 // Copyright: See COPYING file that comes with this distribution 00011 // 00012 // 00013 #ifndef RESULTITEM_H 00014 #define RESULTITEM_H 00015 00016 #include "olistviewitem.h" 00017 00018 #include <qintdict.h> 00019 00023 class ResultItem : public OListViewItem 00024 { 00025 public: 00026 ResultItem(OListViewItem* parent); 00027 ~ResultItem(); 00028 00029 virtual QString toRichText() {return "no text";}; 00030 virtual int rtti() { return Result;} 00031 virtual void action( int ) = 0; 00032 virtual QIntDict<QString> actions() = 0; 00033 }; 00034 00035 #endif
1.4.2