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/valuelistviewitem.h

34 lines
863 B

/*
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.
*/
/*
List view item that carries an arbitrary value
begin: Fre Apr 25 2003
copyright: (C) 2003 by Dario Abatianni
email: eisfuchs@tigress.com
*/
#ifndef VALUELISTVIEWITEM_H
#define VALUELISTVIEWITEM_H
#include <tdelistview.h>
class ValueListViewItem : public TDEListViewItem
{
public:
ValueListViewItem(int newValue, TDEListView* parent, const TQString& label);
ValueListViewItem(int newValue, TDEListView* parent, TQListViewItem* after, const TQString& label);
~ValueListViewItem();
int getValue() const;
protected:
int m_value;
};
#endif