cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / uisupport / nickview.h
index 8638039..edd72cc 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2016 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  *
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef NICKVIEW_H_
-#define NICKVIEW_H_
+#pragma once
+
+#include "uisupport-export.h"
 
 #include <QTreeView>
 
 #include "bufferinfo.h"
+#include "treeviewtouch.h"
 
-class NickView : public QTreeView
+class UISUPPORT_EXPORT NickView : public TreeViewTouch
 {
     Q_OBJECT
 
 public:
-    NickView(QWidget *parent = 0);
+    NickView(QWidget* parent = nullptr);
 
 protected:
-    virtual void rowsInserted(const QModelIndex &parent, int start, int end);
+    void rowsInserted(const QModelIndex& parent, int start, int end) override;
 
     //! This reimplementation ensures that the current index is first in list
-    virtual QModelIndexList selectedIndexes() const;
-       virtual bool event(QEvent *event);
-       virtual void mouseMoveEvent(QMouseEvent *event);
-       virtual void mousePressEvent(QMouseEvent *event);
+    QModelIndexList selectedIndexes() const override;
 
     void unanimatedExpandAll();
 
 public slots:
-    virtual void setModel(QAbstractItemModel *model);
-    virtual void setRootIndex(const QModelIndex &index);
+    void setModel(QAbstractItemModel* model) override;
+    void setRootIndex(const QModelIndex& index) override;
     void init();
-    void showContextMenu(const QPoint &pos);
-    void startQuery(const QModelIndex &modelIndex);
+    void showContextMenu(const QPointpos);
+    void startQuery(const QModelIndexmodelIndex);
 
 signals:
     void selectionUpdated();
 
 private:
-    friend class NickListWidget; // needs selectedIndexes()
-       qint64 _lastTouchStart = 0;
-       bool _touchScrollInProgress = false;
+    friend class NickListWidget;  // needs selectedIndexes()
 };
-
-
-#endif