361a1ed92b88251459e390bcc63fda7895848add
[quassel.git] / src / client / buffermodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "client-export.h"
24
25 #include <QItemSelectionModel>
26 #include <QPair>
27 #include <QSortFilterProxyModel>
28
29 #include "network.h"
30 #include "networkmodel.h"
31 #include "selectionmodelsynchronizer.h"
32 #include "types.h"
33
34 class QAbstractItemView;
35
36 class CLIENT_EXPORT BufferModel : public QSortFilterProxyModel
37 {
38     Q_OBJECT
39
40 public:
41     BufferModel(NetworkModel* parent = nullptr);
42
43     bool filterAcceptsRow(int sourceRow, const QModelIndex& parent) const override;
44
45     inline const SelectionModelSynchronizer* selectionModelSynchronizer() const { return &_selectionModelSynchronizer; }
46     inline QItemSelectionModel* standardSelectionModel() const { return _selectionModelSynchronizer.selectionModel(); }
47
48     inline void synchronizeSelectionModel(QItemSelectionModel* selectionModel)
49     {
50         _selectionModelSynchronizer.synchronizeSelectionModel(selectionModel);
51     }
52     void synchronizeView(QAbstractItemView* view);
53
54     inline QModelIndex currentIndex() { return standardSelectionModel()->currentIndex(); }
55     inline BufferId currentBuffer() { return currentIndex().data(NetworkModel::BufferIdRole).value<BufferId>(); }
56
57 public slots:
58     void setCurrentIndex(const QModelIndex& newCurrent);
59     void switchToBuffer(const BufferId& bufferId);
60     void switchToBufferIndex(const QModelIndex& bufferIdx);
61     void switchToOrJoinBuffer(NetworkId network, const QString& bufferName, bool isQuery = false);
62     void switchToOrStartQuery(NetworkId network, const QString& nick) { switchToOrJoinBuffer(network, nick, true); }
63
64     void switchToBufferAfterCreation(NetworkId network, const QString& name);
65
66 private slots:
67     void debug_currentChanged(QModelIndex current, QModelIndex previous);
68     void newNetwork(NetworkId id);
69     void networkConnectionChanged(Network::ConnectionState state);
70     void newBuffers(const QModelIndex& parent, int start, int end);
71
72 private:
73     void newBuffer(BufferId bufferId);
74
75     SelectionModelSynchronizer _selectionModelSynchronizer;
76     QPair<NetworkId, QString> _bufferToSwitchTo;
77 };