X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffertreemodel.h;h=17330a435d800ba429a741c0d9a1d341a7c15add;hp=2d170ece6d46f025bbc5a6523efe939fb8555736;hb=1f83867af2efc7be65d60f7c3dfe59774122a883;hpb=4e9a619ab2a22ce3c933fbb36122632debfd415a diff --git a/src/client/buffertreemodel.h b/src/client/buffertreemodel.h index 2d170ece..17330a43 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 * @@ -26,26 +26,36 @@ #include "treemodel.h" #include "buffer.h" +#include + +#include + +class BufferInfo; + +#include "selectionmodelsynchronizer.h" +#include "modelpropertymapper.h" +class MappedSelectionModel; +class QAbstractItemView; + /***************************************** * Fancy Buffer Items *****************************************/ class BufferTreeItem : public TreeItem { Q_OBJECT - + public: BufferTreeItem(Buffer *, TreeItem *parent = 0); - virtual uint id() const; + virtual quint64 id() const; QVariant data(int column, int role) const; - virtual Qt::ItemFlags flags() const; - + Buffer *buffer() const { return buf; } void setActivity(const Buffer::ActivityLevel &); - + private: QString text(int column) const; QColor foreground(int column) const; - + Buffer *buf; Buffer::ActivityLevel activity; }; @@ -55,16 +65,16 @@ private: *****************************************/ class NetworkTreeItem : public TreeItem { Q_OBJECT - + public: - NetworkTreeItem(const QString &, TreeItem *parent = 0); + NetworkTreeItem(const uint &netid, const QString &, TreeItem *parent = 0); + + virtual QVariant data(int column, int row) const; + virtual quint64 id() const; - virtual uint id() const; - virtual Qt::ItemFlags flags() const; - private: + uint _networkId; QString net; - }; /***************************************** @@ -72,41 +82,52 @@ private: *****************************************/ class BufferTreeModel : public TreeModel { Q_OBJECT - + public: enum myRoles { BufferTypeRole = Qt::UserRole, BufferActiveRole, - BufferNameRole, - BufferIdRole + BufferUidRole, + NetworkIdRole }; - + BufferTreeModel(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 &); + + 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(BufferId, 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 &); - + QPointer _selectionModelSynchronizer; + QPointer _propertyMapper; Buffer *currentBuffer; };