Finishing the renaming of the BufferTreeView, since SVN doesn't allow
[quassel.git] / src / client / buffertreemodel.h
diff --git a/src/client/buffertreemodel.h b/src/client/buffertreemodel.h
deleted file mode 100644 (file)
index 56fcc91..0000000
+++ /dev/null
@@ -1,205 +0,0 @@
-/***************************************************************************
- *   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) version 3.                                           *
- *                                                                         *
- *   This program is distributed in the hope that it will be useful,       *
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
- *   GNU General Public License for more details.                          *
- *                                                                         *
- *   You should have received a copy of the GNU General Public License     *
- *   along with this program; if not, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
- ***************************************************************************/
-
-#ifndef NETWORKMODEL_H
-#define NETWORKMODEL_H
-
-#include <QtCore>
-
-#include "treemodel.h"
-#include "buffer.h"
-
-#include <QPointer>
-
-#include <QItemSelectionModel>
-
-class BufferInfo;
-
-#include "selectionmodelsynchronizer.h"
-#include "modelpropertymapper.h"
-class MappedSelectionModel;
-class QAbstractItemView;
-class NetworkInfo;
-class IrcChannel;
-class IrcUser;
-
-/*****************************************
- *  Fancy Buffer Items
- *****************************************/
-class BufferItem : public PropertyMapItem {
-  Q_OBJECT
-  Q_PROPERTY(QString bufferName READ bufferName)
-  Q_PROPERTY(QString topic READ topic)
-  Q_PROPERTY(int nickCount READ nickCount)
-
-public:
-  BufferItem(Buffer *, AbstractTreeItem *parent = 0);
-
-  virtual quint64 id() const;
-  virtual QVariant data(int column, int role) const;
-
-  void attachIrcChannel(IrcChannel *ircChannel);
-
-  QString bufferName() const;
-  QString topic() const;
-  int nickCount() const;
-
-  
-  Buffer *buffer() const { return buf; }
-  void setActivity(const Buffer::ActivityLevel &);
-
-public slots:
-  void setTopic(const QString &topic);
-  void join(IrcUser *ircUser);
-  void part(IrcUser *ircUser);
-  
-private:
-  QColor foreground(int column) const;
-
-  Buffer *buf;
-  Buffer::ActivityLevel activity;
-
-  QPointer<IrcChannel> _ircChannel;
-};
-
-/*****************************************
- *  Network Items
- *****************************************/
-class NetworkItem : public PropertyMapItem {
-  Q_OBJECT
-  Q_PROPERTY(QString networkName READ networkName)
-  Q_PROPERTY(QString currentServer READ currentServer)
-  Q_PROPERTY(int nickCount READ nickCount)
-    
-public:
-  NetworkItem(const uint &netid, const QString &, AbstractTreeItem *parent = 0);
-
-  virtual QVariant data(int column, int row) const;
-  virtual quint64 id() const;
-
-  QString networkName() const;
-  QString currentServer() const;
-  int nickCount() const;
-  
-public slots:
-  void setNetworkName(const QString &networkName);
-  void setCurrentServer(const QString &serverName);
-
-  void attachNetworkInfo(NetworkInfo *networkInfo);
-  void attachIrcChannel(const QString &channelName);
-  
-private:
-  uint _networkId;
-  QString _networkName;
-
-  QPointer<NetworkInfo> _networkInfo;
-};
-
-/*****************************************
-*  Irc User Items
-*****************************************/
-class IrcUserItem : public PropertyMapItem {
-  Q_OBJECT
-  Q_PROPERTY(QString nickName READ nickName)
-    
-public:
-  IrcUserItem(IrcUser *ircUser, AbstractTreeItem *parent);
-
-  QString nickName();
-
-private slots:
-  void setNick(QString newNick);
-  void ircUserDestroyed();
-
-private:
-  IrcUser *_ircUser;
-};
-
-
-/*****************************************
- * NetworkModel
- *****************************************/
-class NetworkModel : public TreeModel {
-  Q_OBJECT
-
-public:
-  enum myRoles {
-    BufferTypeRole = Qt::UserRole,
-    BufferActiveRole,
-    BufferUidRole,
-    NetworkIdRole,
-    ItemTypeRole
-  };
-
-  enum itemTypes {
-    AbstractItemType,
-    SimpleItemType,
-    NetworkItemType,
-    BufferItemType,
-    NickItemType
-  };
-    
-  NetworkModel(QObject *parent = 0);
-  static QList<QVariant> defaultHeader();
-
-  inline SelectionModelSynchronizer *selectionModelSynchronizer() { return _selectionModelSynchronizer; }
-  inline ModelPropertyMapper *propertyMapper() { return _propertyMapper; }
-
-  void synchronizeSelectionModel(MappedSelectionModel *selectionModel);
-  void synchronizeView(QAbstractItemView *view);
-  void mapProperty(int column, int role, QObject *target, const QByteArray &property);
-
-  static bool mimeContainsBufferList(const QMimeData *mimeData);
-  static QList< QPair<uint, uint> > mimeDataToBufferList(const QMimeData *mimeData);
-
-  virtual QStringList mimeTypes() const;
-  virtual QMimeData *mimeData(const QModelIndexList &) const;
-  virtual bool dropMimeData(const QMimeData *, Qt::DropAction, int, int, const QModelIndex &);
-
-  void attachNetworkInfo(NetworkInfo *networkInfo);
-                                                 
-public slots:
-  void bufferUpdated(Buffer *);
-  void setCurrentIndex(const QModelIndex &index, QItemSelectionModel::SelectionFlags command);
-  void selectBuffer(Buffer *buffer);
-  void bufferActivity(Buffer::ActivityLevel, Buffer *buffer);
-
-signals:
-  void bufferSelected(Buffer *);
-  void selectionChanged(const QModelIndex &);
-
-private:
-  bool isBufferIndex(const QModelIndex &) const;
-  Buffer *getBufferByIndex(const QModelIndex &) const;
-
-  QModelIndex networkIndex(uint networkId);
-  NetworkItem *network(uint networkId);
-  NetworkItem *newNetwork(uint networkId, const QString &networkName);
-  
-  QModelIndex bufferIndex(BufferInfo bufferInfo);
-  BufferItem *buffer(BufferInfo bufferInfo);
-  BufferItem *newBuffer(BufferInfo bufferInfo);
-
-  QPointer<SelectionModelSynchronizer> _selectionModelSynchronizer;
-  QPointer<ModelPropertyMapper> _propertyMapper;
-  Buffer *currentBuffer;
-};
-
-#endif // NETWORKMODEL_H