From 4d78abefd76d7d828a4ac078b80e8891ddb975e6 Mon Sep 17 00:00:00 2001 From: Arno Date: Thu, 3 Jun 2010 21:06:30 +0200 Subject: Started Treemodel for Archive Implemented generic SmTreeItem, started on generic SmTreeModel. --- smtreeitem.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 smtreeitem.h (limited to 'smtreeitem.h') diff --git a/smtreeitem.h b/smtreeitem.h new file mode 100644 index 0000000..4696edf --- /dev/null +++ b/smtreeitem.h @@ -0,0 +1,36 @@ +/* + 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. +*/ + +#ifndef SMTREEITEM_H +#define SMTREEITEM_H + +#include +#include + +class SmTreeItem { + public: + SmTreeItem(const QList &data, SmTreeItem *parent = 0); + SmTreeItem(int rows, SmTreeItem *parent = 0); + ~SmTreeItem(); + void appendChild(SmTreeItem *child); + SmTreeItem *child(int row); + int childCount() const; + int columnCount() const; + int row() const; + SmTreeItem *parent(); + QVariant data(int column) const; + void setData(int column, QVariant &data); + bool insertChild(int where, SmTreeItem *child); + bool removeChild(int where); + + private: + QList mChildren; + QList mData; + SmTreeItem *mParent; +}; + +#endif -- cgit v1.2.3-70-g09d2