/***************************************************************************
                          intpropertyitem.h  -  description                              
                             -------------------                                         
    begin                : Tue Mar 16 1999                                           
    copyright            : (C) 1999 by Richard Moore                         
    email                : rich@kde.org                                     
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   * 
 *                                                                         *
 ***************************************************************************/

#include <qlistview.h>

/**
 * Represents an integer property.
 */
class IntPropertyItem : public AbstractPropertyItem
{
public:
	IntPropertyItem(QListView *parent, const char *name, int value= 0);
	IntPropertyItem(QListViewItem *parent, const char *name, int value= 0);
	~IntPropertyItem();

public slots:
	virtual void edit();

protected:
	QString name_;
};








Documentation generated by rich@pegasus on Sun Mar 21 17:37:43 GMT 1999