00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef SHOWLISTVIEWITEM_H
00019 #define SHOWLISTVIEWITEM_H
00020
00021 #include <ntqlistview.h>
00022
00027 class ShowListViewItem : public TQListViewItem
00028 {
00029 public:
00030
00036 ShowListViewItem (TQListView * parent, ShowListViewItem * after);
00037
00042 ShowListViewItem( TQListView* parent );
00043
00044
00045 virtual ~ShowListViewItem();
00046 virtual TQString key (int column, bool ascending) const;
00051 virtual int compare( TQListViewItem *i, int col, bool ascending ) const;
00052 void setNumber (const TQString&);
00053 void setAccount(const TQString&);
00054 void setFrom(const TQString&);
00055 void setTo(const TQString&);
00056 void setSubject(const TQString&);
00057 void setDate(const TQString&);
00058 void setSize(const TQString&);
00059 void setContent(const TQString&);
00060 void setState(const TQString&);
00061 void setTime (const TQString&);
00062 enum {_colNumber, _colAccount, _colFrom, _colTo, _colSubject, _colDate,
00063 _colSize, _colContent, _colState};
00064 private:
00065 TQString m_time;
00066 };
00067
00068
00069 #endif