1/***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#ifndef ABSTRACTITEMVIEW_H
22#define ABSTRACTITEMVIEW_H
23
24#include <QWidget>
25#include <QAbstractItemModel>
26#include <QItemSelectionModel>
27#include <QModelIndex>
28#include <QItemSelection>
29#include <QAbstractItemDelegate>
30#include <QPointer>
31
32class AbstractItemView : public QWidget
33{
34 Q_OBJECT
35
36public:
37 AbstractItemView(QWidget *parent = 0);
38
39 inline QAbstractItemModel *model() { return _model; }
40 void setModel(QAbstractItemModel *model);
41
42 inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
43 void setSelectionModel(QItemSelectionModel *selectionModel);
44
45 inline QModelIndex currentIndex() const { return _selectionModel->currentIndex(); }
46
47protected slots:
48 virtual void closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint) {};
49 virtual void commitData(QWidget *) {};
50 virtual void currentChanged(const QModelIndex &, const QModelIndex &) {};
51 virtual void dataChanged(const QModelIndex &, const QModelIndex &) {};
52 virtual void editorDestroyed(QObject *) {};
53 virtual void rowsAboutToBeRemoved(const QModelIndex &, int, int) {};
54 virtual void rowsInserted(const QModelIndex &, int, int) {};
55 virtual void selectionChanged(const QItemSelection &, const QItemSelection &) {};
56
57protected:
58 QPointer<QAbstractItemModel> _model;
59 QPointer<QItemSelectionModel> _selectionModel;
60};
61
62
63#endif // ABSTRACTITEMVIEW_H
64