1/****************************************************************************
2**
3** Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the QtCore module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 3 as published by the Free Software
20** Foundation and appearing in the file LICENSE.LGPL3 included in the
21** packaging of this file. Please review the following information to
22** ensure the GNU Lesser General Public License version 3 requirements
23** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
24**
25** GNU General Public License Usage
26** Alternatively, this file may be used under the terms of the GNU
27** General Public License version 2.0 or (at your option) the GNU General
28** Public license version 3 or any later version approved by the KDE Free
29** Qt Foundation. The licenses are as published by the Free Software
30** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
31** included in the packaging of this file. Please review the following
32** information to ensure the GNU General Public License requirements will
33** be met: https://www.gnu.org/licenses/gpl-2.0.html and
34** https://www.gnu.org/licenses/gpl-3.0.html.
35**
36** $QT_END_LICENSE$
37**
38****************************************************************************/
39
40#ifndef QCONCATENATEROWSPROXYMODEL_H
41#define QCONCATENATEROWSPROXYMODEL_H
42
43#include <QtCore/qabstractitemmodel.h>
44
45QT_REQUIRE_CONFIG(concatenatetablesproxymodel);
46
47QT_BEGIN_NAMESPACE
48
49class QConcatenateTablesProxyModelPrivate;
50
51class Q_CORE_EXPORT QConcatenateTablesProxyModel : public QAbstractItemModel
52{
53 Q_OBJECT
54
55public:
56 explicit QConcatenateTablesProxyModel(QObject *parent = nullptr);
57 ~QConcatenateTablesProxyModel();
58
59 QList<QAbstractItemModel *> sourceModels() const;
60 Q_SCRIPTABLE void addSourceModel(QAbstractItemModel *sourceModel);
61 Q_SCRIPTABLE void removeSourceModel(QAbstractItemModel *sourceModel);
62
63 QModelIndex mapFromSource(const QModelIndex &sourceIndex) const;
64 QModelIndex mapToSource(const QModelIndex &proxyIndex) const;
65
66 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
67 bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
68 QMap<int, QVariant> itemData(const QModelIndex &proxyIndex) const override;
69 bool setItemData(const QModelIndex &index, const QMap<int, QVariant> &roles) override;
70 Qt::ItemFlags flags(const QModelIndex &index) const override;
71 QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
72 QModelIndex parent(const QModelIndex &index) const override;
73 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
74 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
75 int columnCount(const QModelIndex &parent = QModelIndex()) const override;
76 QStringList mimeTypes() const override;
77 QMimeData *mimeData(const QModelIndexList &indexes) const override;
78 bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const override;
79 bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override;
80 QSize span(const QModelIndex &index) const override;
81
82private:
83 Q_DECLARE_PRIVATE(QConcatenateTablesProxyModel)
84 Q_DISABLE_COPY(QConcatenateTablesProxyModel)
85
86 Q_PRIVATE_SLOT(d_func(), void _q_slotRowsAboutToBeInserted(const QModelIndex &, int start, int end))
87 Q_PRIVATE_SLOT(d_func(), void _q_slotRowsInserted(const QModelIndex &, int start, int end))
88 Q_PRIVATE_SLOT(d_func(), void _q_slotRowsAboutToBeRemoved(const QModelIndex &, int start, int end))
89 Q_PRIVATE_SLOT(d_func(), void _q_slotRowsRemoved(const QModelIndex &, int start, int end))
90 Q_PRIVATE_SLOT(d_func(), void _q_slotColumnsAboutToBeInserted(const QModelIndex &parent, int start, int end))
91 Q_PRIVATE_SLOT(d_func(), void _q_slotColumnsInserted(const QModelIndex &parent, int, int))
92 Q_PRIVATE_SLOT(d_func(), void _q_slotColumnsAboutToBeRemoved(const QModelIndex &parent, int start, int end))
93 Q_PRIVATE_SLOT(d_func(), void _q_slotColumnsRemoved(const QModelIndex &parent, int, int))
94 Q_PRIVATE_SLOT(d_func(), void _q_slotDataChanged(const QModelIndex &from, const QModelIndex &to, const QVector<int> &roles))
95 Q_PRIVATE_SLOT(d_func(), void _q_slotSourceLayoutAboutToBeChanged(QList<QPersistentModelIndex>, QAbstractItemModel::LayoutChangeHint))
96 Q_PRIVATE_SLOT(d_func(), void _q_slotSourceLayoutChanged(const QList<QPersistentModelIndex> &, QAbstractItemModel::LayoutChangeHint))
97 Q_PRIVATE_SLOT(d_func(), void _q_slotModelAboutToBeReset())
98 Q_PRIVATE_SLOT(d_func(), void _q_slotModelReset())
99};
100
101QT_END_NAMESPACE
102
103#endif // QCONCATENATEROWSPROXYMODEL_H
104

source code of qtbase/src/corelib/itemmodels/qconcatenatetablesproxymodel.h