X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fabstractitemview.h;h=b75c9ff91ca42f2186294741e9bfcd5f569bf9d8;hp=7efb478ac5b858fd82b612680c1676a8e28d4c64;hb=c64a887d0f05222590299fb2bb8d56fa9fadb16d;hpb=4df7862b00b2113dabdf52342b2c15560313f476 diff --git a/src/uisupport/abstractitemview.h b/src/uisupport/abstractitemview.h index 7efb478a..b75c9ff9 100644 --- a/src/uisupport/abstractitemview.h +++ b/src/uisupport/abstractitemview.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2012 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * 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 @@ -29,33 +29,35 @@ #include #include -class AbstractItemView : public QWidget { - Q_OBJECT +class AbstractItemView : public QWidget +{ + Q_OBJECT public: - AbstractItemView(QWidget *parent = 0); + AbstractItemView(QWidget *parent = 0); - 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(); } + 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; + QPointer _model; + QPointer _selectionModel; }; + #endif // ABSTRACTITEMVIEW_H