/* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ /* Copyright (C) 2006 Dario Abatianni */ #ifndef NICKSONLINEITEM_H #define NICKSONLINEITEM_H #include class NicksOnlineItem : public TDEListViewItem { public: enum NickListViewColumn { NetworkRootItem=0, // TODO: not used yet NicknameItem=1, // TODO: not used yet ChannelItem=2, // TODO: not used yet OfflineItem=3 // this item is the "Offline" item }; NicksOnlineItem(int type, TQListView* parent, const TQString& name, const TQString& col2 = TQString()); NicksOnlineItem(int type, TQListViewItem* parent, const TQString& name, const TQString& col2 = TQString()); /** * Reimplemented to make sure, "Offline" items always get sorted to the bottom of the list * @param i Pointer to the TQListViewItem to compare with. * @param col The column to compare * @param ascending Specify sorting direction * @return -1 if this item's value is smaller than i, 0 if they are equal, 1 if it's greater */ virtual int compare(TQListViewItem* i,int col,bool ascending) const; /** * Returns the type of the item. * @return One of the enum NickListViewColumn */ int type() const; protected: int m_type; }; #endif