You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/nicksonlineitem.h

59 lines
1.8 KiB

/*
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 <eisfuchs@tigress.com>
*/
#ifndef NICKSONLINEITEM_H
#define NICKSONLINEITEM_H
#include <klistview.h>
class NicksOnlineItem : public KListViewItem
{
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,
QListView* parent,
const QString& name,
const QString& col2 = QString());
NicksOnlineItem(int type,
QListViewItem* parent,
const QString& name,
const QString& col2 = QString());
/**
* Reimplemented to make sure, "Offline" items always get sorted to the bottom of the list
* @param i Pointer to the QListViewItem 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(QListViewItem* 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