TreeItem.h
Go to the documentation of this file.00001 #ifndef TREE_ITEM_H
00002 #define TREE_ITEM_H
00003
00004 #include <qlistview.h>
00005
00006 class TreeItem : public QCheckListItem {
00007
00008 public:
00009
00010 TreeItem( QListView* parent, const QString& text, QCheckListItem::Type type );
00011 TreeItem( QListViewItem* parent, const QString& text, QCheckListItem::Type type );
00012 ~TreeItem();
00013
00014 virtual bool isFolder() const;
00015 virtual void update();
00016
00017 };
00018
00019 #endif
00020