From ee3f7eafae9e2e570c95e1afa9bea156ba3bf736 Mon Sep 17 00:00:00 2001 From: Jan Darmochwal Date: Sun, 3 Oct 2010 18:39:42 +0200 Subject: TreeView for sessions (replaces ListView) TreeView with SessionTreeModel replaces the old List View Other changes: * fixed bad copy and paste in CMakeLists.txt * added make clean to build.sh * removed moc_ and ui_ files from src --- src/sessiontreeitem.cpp | 60 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/sessiontreeitem.cpp (limited to 'src/sessiontreeitem.cpp') diff --git a/src/sessiontreeitem.cpp b/src/sessiontreeitem.cpp new file mode 100644 index 0000000..5e07ad4 --- /dev/null +++ b/src/sessiontreeitem.cpp @@ -0,0 +1,60 @@ +#include "sessiontreeitem.h" + +SessionTreeItem::SessionTreeItem(const Session* session, SessionTreeItem *parent) : + parent_(parent), session_(session) +{ +} + +SessionTreeItem::SessionTreeItem(const QString& text, SessionTreeItem *parent) : + parent_(parent), session_(NULL), text_(text) +{ +} + +SessionTreeItem::~SessionTreeItem() +{ + qDeleteAll(children_); +} + +void SessionTreeItem::appendChild(SessionTreeItem *item) +{ + children_.append(item); +} + +SessionTreeItem *SessionTreeItem::child(int row) +{ + return children_.value(row); +} + +int SessionTreeItem::childCount() const +{ + return children_.count(); +} + +int SessionTreeItem::columnCount() const +{ + return 1; +} + +SessionTreeItem *SessionTreeItem::parent() +{ + return parent_; +} + +int SessionTreeItem::row() const +{ + if (parent_) { + return parent_->children_.indexOf(const_cast(this)); + } + + return 0; +} + +const Session* SessionTreeItem::session() const +{ + return session_; +} + +const QString SessionTreeItem::text() const +{ + return text_; +} -- cgit v1.2.3-55-g7522