Prevent Quassel from crashing upon core dis- and reconnect and make the NickListWidgets
[quassel.git] / src / client / treemodel.h
index faad792..d4f2725 100644 (file)
@@ -1,11 +1,11 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by The Quassel Team                             *
+ *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
  *   devel@quassel-irc.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.                                   *
+ *   (at your option) version 3.                                           *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 class TreeItem : public QObject {
   Q_OBJECT
   Q_PROPERTY(uint id READ id)
-  
+
 public:
   TreeItem(const QList<QVariant> &data, TreeItem *parent = 0);
   TreeItem(TreeItem *parent = 0);
   virtual ~TreeItem();
-  
+
   void appendChild(TreeItem *child);
   void removeChild(int row);
-                   
+
   virtual uint id() const;
+
   TreeItem *child(int row) const;
   TreeItem *childById(const uint &) const;
+
   int childCount() const;
   int columnCount() const;
+
   virtual QVariant data(int column, int role) const;
-  virtual Qt::ItemFlags flags() const;
+
+  Qt::ItemFlags flags() const;
+  void setFlags(Qt::ItemFlags);
+
   int row() const;
   TreeItem *parent();
-    
+
+
+private slots:
+  void childDestroyed();
+
+
 protected:
-  QList<TreeItem *> childItems;
-  QHash<uint, TreeItem *> childHash; // uint to be compatible to qHash functions
-  TreeItem *parentItem;
   QList<QVariant> itemData;
+
+private:
+  QList<TreeItem *> _childItems;
+  QHash<uint, TreeItem *> _childHash; // uint to be compatible to qHash functions
+  TreeItem *_parentItem;
+  Qt::ItemFlags _flags;
 };
 
 
@@ -64,11 +78,11 @@ protected:
  *****************************************/
 class TreeModel : public QAbstractItemModel {
   Q_OBJECT
-  
+
 public:
   TreeModel(const QList<QVariant> &, QObject *parent = 0);
   virtual ~TreeModel();
-  
+
   QVariant data(const QModelIndex &index, int role) const;
   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
   QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;