X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffertreemodel.h;h=56fcc9189169b2d3db418dee8e0ee41e0c49dfdf;hp=7053ef753cc2956d3ce608c1b51f786d4dd7803c;hb=788fd0058595c815dc42597e9956c02aea45261f;hpb=902c95728306e5ba115de84800fc8d5d239c9d62 diff --git a/src/client/buffertreemodel.h b/src/client/buffertreemodel.h index 7053ef75..56fcc918 100644 --- a/src/client/buffertreemodel.h +++ b/src/client/buffertreemodel.h @@ -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 * @@ -18,97 +18,188 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _BUFFERTREEMODEL_H_ -#define _BUFFERTREEMODEL_H_ +#ifndef NETWORKMODEL_H +#define NETWORKMODEL_H #include #include "treemodel.h" -class BufferInfo; #include "buffer.h" +#include + +#include + +class BufferInfo; + +#include "selectionmodelsynchronizer.h" +#include "modelpropertymapper.h" +class MappedSelectionModel; +class QAbstractItemView; +class NetworkInfo; +class IrcChannel; +class IrcUser; + /***************************************** * Fancy Buffer Items *****************************************/ -class BufferTreeItem : public TreeItem { +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: - BufferTreeItem(Buffer *, TreeItem *parent = 0); + 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; - virtual uint id() const; - QVariant data(int column, int role) const; - virtual Qt::ItemFlags flags() 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: - QString text(int column) const; QColor foreground(int column) const; - + Buffer *buf; Buffer::ActivityLevel activity; + + QPointer _ircChannel; }; /***************************************** * Network Items *****************************************/ -class NetworkTreeItem : public TreeItem { +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: - NetworkTreeItem(const QString &, TreeItem *parent = 0); + NetworkItem(const uint &netid, const QString &, AbstractTreeItem *parent = 0); + + virtual QVariant data(int column, int row) const; + virtual quint64 id() const; - virtual uint id() const; - virtual Qt::ItemFlags flags() const; + QString networkName() const; + QString currentServer() const; + int nickCount() const; -private: - QString net; +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; +}; + +/***************************************** +* 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; }; + /***************************************** - * BufferTreeModel + * NetworkModel *****************************************/ -class BufferTreeModel : public TreeModel { +class NetworkModel : public TreeModel { Q_OBJECT - + public: enum myRoles { BufferTypeRole = Qt::UserRole, BufferActiveRole, - BufferNameRole, - BufferInfoRole + BufferUidRole, + NetworkIdRole, + ItemTypeRole }; - - BufferTreeModel(QObject *parent = 0); + + enum itemTypes { + AbstractItemType, + SimpleItemType, + NetworkItemType, + BufferItemType, + NickItemType + }; + + NetworkModel(QObject *parent = 0); static QList 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 > 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 changeCurrent(const QModelIndex &, const QModelIndex &); + void bufferUpdated(Buffer *); + void setCurrentIndex(const QModelIndex &index, QItemSelectionModel::SelectionFlags command); void selectBuffer(Buffer *buffer); - void doubleClickReceived(const QModelIndex &); void bufferActivity(Buffer::ActivityLevel, Buffer *buffer); - + signals: void bufferSelected(Buffer *); - void invalidateFilter(); - void fakeUserInput(BufferInfo, QString); void selectionChanged(const QModelIndex &); - + private: bool isBufferIndex(const QModelIndex &) const; Buffer *getBufferByIndex(const QModelIndex &) const; - QModelIndex getOrCreateNetworkItemIndex(Buffer *buffer); - QModelIndex getOrCreateBufferItemIndex(Buffer *buffer); - QStringList mimeTypes() const; - QMimeData *mimeData(const QModelIndexList &) const; - bool dropMimeData(const QMimeData *, Qt::DropAction, int, int, const QModelIndex &); + 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; + QPointer _propertyMapper; Buffer *currentBuffer; }; -#endif +#endif // NETWORKMODEL_H