X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.h;h=e585c0b0ea1ae1b3d2c3bd7685a38b4ab79f2796;hp=0d23405a01083b44921bbc1f54fcb27f9c67263e;hb=46d75f41de7c1aaee605c096da28d4b0d8abf138;hpb=4bd0fcd5b0599f3658253353bf2bdc01b32951f7 diff --git a/src/client/treemodel.h b/src/client/treemodel.h index 0d23405a..e585c0b0 100644 --- a/src/client/treemodel.h +++ b/src/client/treemodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,67 +18,78 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _TREEMODEL_H_ -#define _TREEMODEL_H_ +#ifndef TREEMODEL_H +#define TREEMODEL_H #include #include #include -#include #include +#include // needed for debug + /***************************************** * general item used in the Tree Model *****************************************/ class AbstractTreeItem : public QObject { Q_OBJECT - Q_PROPERTY(uint id READ id) public: + enum TreeItemFlag { + NoTreeItemFlag = 0x00, + DeleteOnLastChildRemoved = 0x01 + }; + Q_DECLARE_FLAGS(TreeItemFlags, TreeItemFlag) + AbstractTreeItem(AbstractTreeItem *parent = 0); - virtual ~AbstractTreeItem(); - void appendChild(int column, AbstractTreeItem *child); - void appendChild(AbstractTreeItem *child); - - void removeChild(int column, int row); - void removeChild(int row); + bool newChild(AbstractTreeItem *child); + bool newChilds(const QList &items); - virtual quint64 id() const; + bool removeChild(int row); + inline bool removeChild(AbstractTreeItem *child) { return removeChild(child->row()); } + void removeAllChilds(); - AbstractTreeItem *child(int column, int row) const; + bool reParent(AbstractTreeItem *newParent); + AbstractTreeItem *child(int row) const; - - AbstractTreeItem *childById(int column, const uint &id) const; - AbstractTreeItem *childById(const uint &id) const; - int childCount(int column) const; - int childCount() const; + int childCount(int column = 0) const; virtual int columnCount() const = 0; virtual QVariant data(int column, int role) const = 0; + virtual bool setData(int column, const QVariant &value, int role) = 0; - virtual Qt::ItemFlags flags() const; - virtual void setFlags(Qt::ItemFlags); + virtual inline Qt::ItemFlags flags() const { return _flags; } + virtual inline void setFlags(Qt::ItemFlags flags) { _flags = flags; } - int column() const; + inline AbstractTreeItem::TreeItemFlags treeItemFlags() const { return _treeItemFlags; } + inline void setTreeItemFlags(AbstractTreeItem::TreeItemFlags flags) { _treeItemFlags = flags; } int row() const; - AbstractTreeItem *parent(); + inline AbstractTreeItem *parent() const { return qobject_cast(QObject::parent()); } + + void dumpChildList(); signals: - void dataChanged(int column); - -private slots: - void childDestroyed(); + void dataChanged(int column = -1); + + void beginAppendChilds(int firstRow, int lastRow); + void endAppendChilds(); + + void beginRemoveChilds(int firstRow, int lastRow); + void endRemoveChilds(); + +protected: + void customEvent(QEvent *event); private: - QHash > _childItems; - QHash > _childHash; // uint to be compatible to qHash functions - AbstractTreeItem *_parentItem; + QList _childItems; Qt::ItemFlags _flags; + TreeItemFlags _treeItemFlags; - int defaultColumn() const; + void removeChildLater(AbstractTreeItem *child); + inline void checkForDeletion() { if(treeItemFlags() & DeleteOnLastChildRemoved && childCount() == 0) parent()->removeChildLater(this); } }; @@ -91,7 +102,10 @@ class SimpleTreeItem : public AbstractTreeItem { public: SimpleTreeItem(const QList &data, AbstractTreeItem *parent = 0); virtual ~SimpleTreeItem(); + virtual QVariant data(int column, int role) const; + virtual bool setData(int column, const QVariant &value, int role); + virtual int columnCount() const; private: @@ -111,6 +125,9 @@ public: virtual ~PropertyMapItem(); virtual QVariant data(int column, int role) const; + virtual bool setData(int column, const QVariant &value, int role); + + virtual QString toolTip(int column) const { Q_UNUSED(column) return QString(); } virtual int columnCount() const; void appendProperty(const QString &property); @@ -127,15 +144,21 @@ class TreeModel : public QAbstractItemModel { Q_OBJECT public: + enum myRoles { + SortRole = Qt::UserRole, + UserRole + }; + TreeModel(const QList &, QObject *parent = 0); virtual ~TreeModel(); - QVariant data(const QModelIndex &index, int role) const; + virtual QVariant data(const QModelIndex &index, int role) const; + virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole); + virtual Qt::ItemFlags flags(const QModelIndex &index) const; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; - QModelIndex indexById(uint id, const QModelIndex &parent = QModelIndex()) const; QModelIndex indexByItem(AbstractTreeItem *item) const; QModelIndex parent(const QModelIndex &index) const; @@ -146,15 +169,36 @@ public: virtual void clear(); private slots: - void itemDataChanged(int column); - + void itemDataChanged(int column = -1); + + void beginAppendChilds(int firstRow, int lastRow); + void endAppendChilds(); + + void beginRemoveChilds(int firstRow, int lastRow); + void endRemoveChilds(); + protected: - void appendChild(AbstractTreeItem *parent, AbstractTreeItem *child); + AbstractTreeItem *rootItem; - bool removeRow(int row, const QModelIndex &parent = QModelIndex()); - bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()); +private: + void connectItem(AbstractTreeItem *item); - AbstractTreeItem *rootItem; + struct ChildStatus { + QModelIndex parent; + int childCount; + int start; + int end; + inline ChildStatus(QModelIndex parent_, int cc_, int s_, int e_) : parent(parent_), childCount(cc_), start(s_), end(e_) {}; + }; + ChildStatus _childStatus; + int _aboutToRemoveOrInsert; + +private slots: + void debug_rowsAboutToBeInserted(const QModelIndex &parent, int start, int end); + void debug_rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end); + void debug_rowsInserted(const QModelIndex &parent, int start, int end); + void debug_rowsRemoved(const QModelIndex &parent, int start, int end); + void debug_dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); }; #endif