X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fuisupport%2Fabstractitemview.h;h=49396c24e13f7f282721dec9441f0fb9dfd4ff6f;hb=HEAD;hp=fe2c8d002740f234d8d5618652f50c4f64f766d2;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/uisupport/abstractitemview.h b/src/uisupport/abstractitemview.h index fe2c8d00..a1994fb3 100644 --- a/src/uisupport/abstractitemview.h +++ b/src/uisupport/abstractitemview.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 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 * @@ -15,49 +15,47 @@ * 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 +#include "uisupport-export.h" + +#include #include +#include #include #include -#include -#include #include +#include -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 QAbstractItemModel* model() { return _model; } + void setModel(QAbstractItemModel* model); - inline QItemSelectionModel *selectionModel() const { return _selectionModel; } - void setSelectionModel(QItemSelectionModel *selectionModel); + inline QItemSelectionModel* selectionModel() const { return _selectionModel; } + void setSelectionModel(QItemSelectionModel* selectionModel); 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 _model; QPointer _selectionModel; }; - - -#endif // ABSTRACTITEMVIEW_H