cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / client / buffermodel.h
index 2d6f4b4..05d4dad 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   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.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef BUFFERMODEL_H
-#define BUFFERMODEL_H
+#pragma once
+
+#include "client-export.h"
 
-#include <QSortFilterProxyModel>
 #include <QItemSelectionModel>
+#include <QPair>
+#include <QSortFilterProxyModel>
 
-#include "types.h"
+#include "network.h"
+#include "networkmodel.h"
 #include "selectionmodelsynchronizer.h"
-#include "modelpropertymapper.h"
+#include "types.h"
 
-class NetworkModel;
-class MappedSelectionModel;
 class QAbstractItemView;
 
-class BufferModel : public QSortFilterProxyModel {
-  Q_OBJECT
+class CLIENT_EXPORT BufferModel : public QSortFilterProxyModel
+{
+    Q_OBJECT
 
 public:
-  BufferModel(NetworkModel *parent = 0);
-  virtual ~BufferModel();
+    BufferModel(NetworkModel* parent = nullptr);
+
+    bool filterAcceptsRow(int sourceRow, const QModelIndex& parent) const override;
 
-  bool filterAcceptsRow(int sourceRow, const QModelIndex &parent) const;
-  
-  inline const SelectionModelSynchronizer *selectionModelSynchronizer() const { return &_selectionModelSynchronizer; }
-  inline const ModelPropertyMapper *propertyMapper() const { return &_propertyMapper; }
-  inline QItemSelectionModel *standardSelectionModel() const { return _propertyMapper.selectionModel(); }
+    inline const SelectionModelSynchronizer* selectionModelSynchronizer() const { return &_selectionModelSynchronizer; }
+    inline QItemSelectionModel* standardSelectionModel() const { return _selectionModelSynchronizer.selectionModel(); }
 
-  void synchronizeSelectionModel(MappedSelectionModel *selectionModel);
-  void synchronizeView(QAbstractItemView *view);
-  void mapProperty(int column, int role, QObject *target, const QByteArray &property);
+    inline void synchronizeSelectionModel(QItemSelectionModel* selectionModel)
+    {
+        _selectionModelSynchronizer.synchronizeSelectionModel(selectionModel);
+    }
+    void synchronizeView(QAbstractItemView* view);
 
-  QModelIndex currentIndex();
+    inline QModelIndex currentIndex() { return standardSelectionModel()->currentIndex(); }
+    inline BufferId currentBuffer() { return currentIndex().data(NetworkModel::BufferIdRole).value<BufferId>(); }
+
+public slots:
+    void setCurrentIndex(const QModelIndex& newCurrent);
+    void switchToBuffer(const BufferId& bufferId);
+    void switchToBufferIndex(const QModelIndex& bufferIdx);
+    void switchToOrJoinBuffer(NetworkId network, const QString& bufferName, bool isQuery = false);
+    void switchToOrStartQuery(NetworkId network, const QString& nick) { switchToOrJoinBuffer(network, nick, true); }
+
+    void switchToBufferAfterCreation(NetworkId network, const QString& name);
+
+private slots:
+    void debug_currentChanged(QModelIndex current, QModelIndex previous);
+    void newNetwork(NetworkId id);
+    void networkConnectionChanged(Network::ConnectionState state);
+    void newBuffers(const QModelIndex& parent, int start, int end);
 
 private:
-  SelectionModelSynchronizer _selectionModelSynchronizer;
-  ModelPropertyMapper _propertyMapper;
-};
+    void newBuffer(BufferId bufferId);
 
-#endif // BUFFERMODEL_H
+    SelectionModelSynchronizer _selectionModelSynchronizer;
+    QPair<NetworkId, QString> _bufferToSwitchTo;
+};