Core: in LDAP authenticator, don't try database auth with blank password
[quassel.git] / src / uisupport / abstractitemview.h
index fe2c8d0..d7fd488 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2019 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 ABSTRACTITEMVIEW_H
-#define ABSTRACTITEMVIEW_H
+#pragma once
 
-#include <QWidget>
+#include "uisupport-export.h"
+
+#include <QAbstractItemDelegate>
 #include <QAbstractItemModel>
+#include <QItemSelection>
 #include <QItemSelectionModel>
 #include <QModelIndex>
-#include <QItemSelection>
-#include <QAbstractItemDelegate>
 #include <QPointer>
+#include <QWidget>
 
-class AbstractItemView : public QWidget
+class UISUPPORT_EXPORT AbstractItemView : public QWidget
 {
     Q_OBJECT
 
 public:
-    AbstractItemView(QWidget *parent = 0);
+    AbstractItemView(QWidget* parent = nullptr);
 
-    inline QAbstractItemModel *model() { return _model; }
-    void setModel(QAbstractItemModel *model);
+    inline QAbstractItemModelmodel() { return _model; }
+    void setModel(QAbstractItemModelmodel);
 
-    inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
-    void setSelectionModel(QItemSelectionModel *selectionModel);
+    inline QItemSelectionModelselectionModel() const { return _selectionModel; }
+    void setSelectionModel(QItemSelectionModelselectionModel);
 
     inline QModelIndex currentIndex() const { return _selectionModel->currentIndex(); }
 
 protected slots:
-    virtual void closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint) {};
-    virtual void commitData(QWidget *) {};
-    virtual void currentChanged(const QModelIndex &, const QModelIndex &) {};
-    virtual void dataChanged(const QModelIndex &, const QModelIndex &) {};
-    virtual void editorDestroyed(QObject *) {};
-    virtual void rowsAboutToBeRemoved(const QModelIndex &, int, int) {};
-    virtual void rowsInserted(const QModelIndex &, int, int) {};
-    virtual void selectionChanged(const QItemSelection &, const QItemSelection &) {};
+    virtual void closeEditor(QWidget*, QAbstractItemDelegate::EndEditHint){};
+    virtual void commitData(QWidget*){};
+    virtual void currentChanged(const QModelIndex&, const QModelIndex&){};
+    virtual void dataChanged(const QModelIndex&, const QModelIndex&){};
+    virtual void editorDestroyed(QObject*){};
+    virtual void rowsAboutToBeRemoved(const QModelIndex&, int, int){};
+    virtual void rowsInserted(const QModelIndex&, int, int){};
+    virtual void selectionChanged(const QItemSelection&, const QItemSelection&){};
 
 protected:
     QPointer<QAbstractItemModel> _model;
     QPointer<QItemSelectionModel> _selectionModel;
 };
-
-
-#endif // ABSTRACTITEMVIEW_H