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 APPLNKITEM_H 00014 #define APPLNKITEM_H 00015 00016 #include "resultitem.h" 00017 00018 class AppLnk; 00019 00023 class AppLnkItem : public ResultItem 00024 { 00025 public: 00026 AppLnkItem(OListViewItem* parent, AppLnk *app); 00027 ~AppLnkItem(); 00028 00029 virtual QString toRichText(); 00030 virtual void action( int ); 00031 virtual QIntDict<QString> actions(); 00032 00033 private: 00034 AppLnk *_app; 00035 }; 00036 00037 #endif
1.4.2