drop unused QDataWidgetMapper class

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-03-23 15:10:39 +02:00
parent 1b5ac1c06b
commit 46f02d9a3c
10 changed files with 0 additions and 1326 deletions

View file

@ -334,7 +334,6 @@ include/katie/QtGui/QCommonStyle
include/katie/QtGui/QCompleter
include/katie/QtGui/QContextMenuEvent
include/katie/QtGui/QCursor
include/katie/QtGui/QDataWidgetMapper
include/katie/QtGui/QDateEdit
include/katie/QtGui/QDateTimeEdit
include/katie/QtGui/QDesktopWidget
@ -655,7 +654,6 @@ include/katie/QtGui/qcommandlinkbutton.h
include/katie/QtGui/qcommonstyle.h
include/katie/QtGui/qcompleter.h
include/katie/QtGui/qcursor.h
include/katie/QtGui/qdatawidgetmapper.h
include/katie/QtGui/qdatetimeedit.h
include/katie/QtGui/qdesktopwidget.h
include/katie/QtGui/qdial.h

View file

@ -88,7 +88,6 @@ classlist = [
"QDBusUnixFileDescriptor",
"QDBusVariant",
"QDataStream",
"QDataWidgetMapper",
"QDate",
"QDateEdit",
"QDateTime",

View file

@ -160,7 +160,6 @@
#cmakedefine QT_NO_COLORNAMES
#cmakedefine QT_NO_COLUMNVIEW
#cmakedefine QT_NO_CURSOR
#cmakedefine QT_NO_DATAWIDGETMAPPER
#cmakedefine QT_NO_DATETIMEEDIT
#cmakedefine QT_NO_DEBUG
#cmakedefine QT_NO_DIAL
@ -427,11 +426,6 @@
# define QT_NO_COMPLETER
#endif
// QDataWidgetMapper
#if !defined(QT_NO_DATAWIDGETMAPPER) && (defined(QT_NO_ITEMVIEWS) || defined(QT_NO_PROPERTIES))
# define QT_NO_DATAWIDGETMAPPER
#endif
// QListWidget
#if !defined(QT_NO_LISTWIDGET) && defined(QT_NO_LISTVIEW)
# define QT_NO_LISTWIDGET

View file

@ -44,7 +44,6 @@ set(GUI_PUBLIC_HEADERS
QCommonStyle
QCompleter
QCursor
QDataWidgetMapper
QDateTimeEdit
QDesktopWidget
QDial
@ -327,7 +326,6 @@ set(GUI_HEADERS
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qstringlistmodel.h
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qtreewidgetitemiterator.h
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qtreewidgetitemiterator_p.h
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qdatawidgetmapper.h
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qfileiconprovider.h
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qcolumnviewgrip_p.h
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qcolumnview.h
@ -650,7 +648,6 @@ set(GUI_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qstandarditemmodel.cpp
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qstringlistmodel.cpp
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qtreewidgetitemiterator.cpp
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qdatawidgetmapper.cpp
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qfileiconprovider.cpp
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qcolumnview.cpp
${CMAKE_CURRENT_SOURCE_DIR}/itemviews/qcolumnviewgrip.cpp

View file

@ -1,807 +0,0 @@
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Copyright (C) 2016 Ivailo Monev
**
** This file is part of the QtGui module of the Katie Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qdatawidgetmapper.h"
#ifndef QT_NO_DATAWIDGETMAPPER
#include "qabstractitemmodel.h"
#include "qitemdelegate.h"
#include "qmetaobject.h"
#include "qwidget.h"
#include "qobject_p.h"
#include "qabstractitemmodel_p.h"
QT_BEGIN_NAMESPACE
class QDataWidgetMapperPrivate: public QObjectPrivate
{
public:
Q_DECLARE_PUBLIC(QDataWidgetMapper)
QDataWidgetMapperPrivate()
: model(QAbstractItemModelPrivate::staticEmptyModel()), delegate(0),
orientation(Qt::Horizontal), submitPolicy(QDataWidgetMapper::AutoSubmit)
{
}
QAbstractItemModel *model;
QAbstractItemDelegate *delegate;
Qt::Orientation orientation;
QDataWidgetMapper::SubmitPolicy submitPolicy;
QPersistentModelIndex rootIndex;
QPersistentModelIndex currentTopLeft;
inline int itemCount()
{
return orientation == Qt::Horizontal
? model->rowCount(rootIndex)
: model->columnCount(rootIndex);
}
inline int currentIdx() const
{
return orientation == Qt::Horizontal ? currentTopLeft.row() : currentTopLeft.column();
}
inline QModelIndex indexAt(int itemPos)
{
return orientation == Qt::Horizontal
? model->index(currentIdx(), itemPos, rootIndex)
: model->index(itemPos, currentIdx(), rootIndex);
}
inline void flipEventFilters(QAbstractItemDelegate *oldDelegate,
QAbstractItemDelegate *newDelegate)
{
for (int i = 0; i < widgetMap.count(); ++i) {
QWidget *w = widgetMap.at(i).widget;
if (!w)
continue;
w->removeEventFilter(oldDelegate);
w->installEventFilter(newDelegate);
}
}
void populate();
// private slots
void _q_dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
void _q_commitData(QWidget *);
void _q_closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint);
void _q_modelDestroyed();
struct WidgetMapper
{
inline WidgetMapper(QWidget *w = 0, int c = 0, const QModelIndex &i = QModelIndex())
: widget(w), section(c), currentIndex(i) {}
inline WidgetMapper(QWidget *w, int c, const QModelIndex &i, const QByteArray &p)
: widget(w), section(c), currentIndex(i), property(p) {}
QPointer<QWidget> widget;
int section;
QPersistentModelIndex currentIndex;
QByteArray property;
};
void populate(WidgetMapper &m);
int findWidget(QWidget *w) const;
bool commit(const WidgetMapper &m);
QList<WidgetMapper> widgetMap;
};
int QDataWidgetMapperPrivate::findWidget(QWidget *w) const
{
for (int i = 0; i < widgetMap.count(); ++i) {
if (widgetMap.at(i).widget == w)
return i;
}
return -1;
}
bool QDataWidgetMapperPrivate::commit(const WidgetMapper &m)
{
if (m.widget.isNull())
return true; // just ignore
if (!m.currentIndex.isValid())
return false;
// Create copy to avoid passing the widget mappers data
QModelIndex idx = m.currentIndex;
if (m.property.isEmpty())
delegate->setModelData(m.widget, model, idx);
else
model->setData(idx, m.widget->property(m.property), Qt::EditRole);
return true;
}
void QDataWidgetMapperPrivate::populate(WidgetMapper &m)
{
if (m.widget.isNull())
return;
m.currentIndex = indexAt(m.section);
if (m.property.isEmpty())
delegate->setEditorData(m.widget, m.currentIndex);
else
m.widget->setProperty(m.property, m.currentIndex.data(Qt::EditRole));
}
void QDataWidgetMapperPrivate::populate()
{
for (int i = 0; i < widgetMap.count(); ++i)
populate(widgetMap[i]);
}
static bool qContainsIndex(const QModelIndex &idx, const QModelIndex &topLeft,
const QModelIndex &bottomRight)
{
return idx.row() >= topLeft.row() && idx.row() <= bottomRight.row()
&& idx.column() >= topLeft.column() && idx.column() <= bottomRight.column();
}
void QDataWidgetMapperPrivate::_q_dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
{
if (topLeft.parent() != rootIndex)
return; // not in our hierarchy
for (int i = 0; i < widgetMap.count(); ++i) {
WidgetMapper &m = widgetMap[i];
if (qContainsIndex(m.currentIndex, topLeft, bottomRight))
populate(m);
}
}
void QDataWidgetMapperPrivate::_q_commitData(QWidget *w)
{
if (submitPolicy == QDataWidgetMapper::ManualSubmit)
return;
int idx = findWidget(w);
if (idx == -1)
return; // not our widget
commit(widgetMap.at(idx));
}
void QDataWidgetMapperPrivate::_q_closeEditor(QWidget *w, QAbstractItemDelegate::EndEditHint hint)
{
int idx = findWidget(w);
if (idx == -1)
return; // not our widget
switch (hint) {
case QAbstractItemDelegate::RevertModelCache: {
populate(widgetMap[idx]);
break;
}
case QAbstractItemDelegate::EditNextItem:
w->focusNextChild();
break;
case QAbstractItemDelegate::EditPreviousItem:
w->focusPreviousChild();
break;
case QAbstractItemDelegate::SubmitModelCache:
case QAbstractItemDelegate::NoHint:
// nothing
break;
}
}
void QDataWidgetMapperPrivate::_q_modelDestroyed()
{
Q_Q(QDataWidgetMapper);
model = 0;
q->setModel(QAbstractItemModelPrivate::staticEmptyModel());
}
/*!
\class QDataWidgetMapper
\brief The QDataWidgetMapper class provides mapping between a section
of a data model to widgets.
\since 4.2
\ingroup model-view
\ingroup advanced
QDataWidgetMapper can be used to create data-aware widgets by mapping
them to sections of an item model. A section is a column of a model
if the orientation is horizontal (the default), otherwise a row.
Every time the current index changes, each widget is updated with data
from the model via the property specified when its mapping was made.
If the user edits the contents of a widget, the changes are read using
the same property and written back to the model.
By default, each widget's \l{Q_PROPERTY()}{user property} is used to
transfer data between the model and the widget. Since Qt 4.3, an
additional addMapping() function enables a named property to be used
instead of the default user property.
It is possible to set an item delegate to support custom widgets. By default,
a QItemDelegate is used to synchronize the model with the widgets.
Let us assume that we have an item model named \c{model} with the following contents:
\table
\row \o 1 \o Qt Norway \o Oslo
\row \o 2 \o Qt Australia \o Brisbane
\row \o 3 \o Qt USA \o Palo Alto
\row \o 4 \o Qt China \o Beijing
\row \o 5 \o Qt Germany \o Berlin
\endtable
The following code will map the columns of the model to widgets called \c mySpinBox,
\c myLineEdit and \c{myCountryChooser}:
\snippet doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp 0
After the call to toFirst(), \c mySpinBox displays the value \c{1}, \c myLineEdit
displays \c{Qt Norway} and \c myCountryChooser displays \c{Oslo}. The
navigational functions toFirst(), toNext(), toPrevious(), toLast() and setCurrentIndex()
can be used to navigate in the model and update the widgets with contents from
the model.
The setRootIndex() function enables a particular item in a model to be
specified as the root index - children of this item will be mapped to
the relevant widgets in the user interface.
QDataWidgetMapper supports two submit policies, \c AutoSubmit and \c{ManualSubmit}.
\c AutoSubmit will update the model as soon as the current widget loses focus,
\c ManualSubmit will not update the model unless submit() is called. \c ManualSubmit
is useful when displaying a dialog that lets the user cancel all modifications.
Also, other views that display the model won't update until the user finishes
all their modifications and submits.
Note that QDataWidgetMapper keeps track of external modifications. If the contents
of the model are updated in another module of the application, the widgets are
updated as well.
\sa QAbstractItemModel, QAbstractItemDelegate
*/
/*! \enum QDataWidgetMapper::SubmitPolicy
This enum describes the possible submit policies a QDataWidgetMapper
supports.
\value AutoSubmit Whenever a widget loses focus, the widget's current
value is set to the item model.
\value ManualSubmit The model is not updated until submit() is called.
*/
/*!
\fn void QDataWidgetMapper::currentIndexChanged(int index)
This signal is emitted after the current index has changed and
all widgets were populated with new data. \a index is the new
current index.
\sa currentIndex(), setCurrentIndex()
*/
/*!
Constructs a new QDataWidgetMapper with parent object \a parent.
By default, the orientation is horizontal and the submit policy
is \c{AutoSubmit}.
\sa setOrientation(), setSubmitPolicy()
*/
QDataWidgetMapper::QDataWidgetMapper(QObject *parent)
: QObject(*new QDataWidgetMapperPrivate, parent)
{
setItemDelegate(new QItemDelegate(this));
}
/*!
Sets the current model to \a model. If another model was set,
all mappings to that old model are cleared.
\sa model()
*/
void QDataWidgetMapper::setModel(QAbstractItemModel *model)
{
Q_D(QDataWidgetMapper);
if (d->model == model)
return;
if (d->model) {
disconnect(d->model, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this,
SLOT(_q_dataChanged(QModelIndex,QModelIndex)));
disconnect(d->model, SIGNAL(destroyed()), this,
SLOT(_q_modelDestroyed()));
}
clearMapping();
d->rootIndex = QModelIndex();
d->currentTopLeft = QModelIndex();
d->model = model;
connect(model, SIGNAL(dataChanged(QModelIndex,QModelIndex)),
SLOT(_q_dataChanged(QModelIndex,QModelIndex)));
connect(model, SIGNAL(destroyed()), SLOT(_q_modelDestroyed()));
}
/*!
Returns the current model.
\sa setModel()
*/
QAbstractItemModel *QDataWidgetMapper::model() const
{
Q_D(const QDataWidgetMapper);
return d->model == QAbstractItemModelPrivate::staticEmptyModel()
? static_cast<QAbstractItemModel *>(0)
: d->model;
}
/*!
Sets the item delegate to \a delegate. The delegate will be used to write
data from the model into the widget and from the widget to the model,
using QAbstractItemDelegate::setEditorData() and QAbstractItemDelegate::setModelData().
The delegate also decides when to apply data and when to change the editor,
using QAbstractItemDelegate::commitData() and QAbstractItemDelegate::closeEditor().
\warning You should not share the same instance of a delegate between widget mappers
or views. Doing so can cause incorrect or unintuitive editing behavior since each
view connected to a given delegate may receive the \l{QAbstractItemDelegate::}{closeEditor()}
signal, and attempt to access, modify or close an editor that has already been closed.
*/
void QDataWidgetMapper::setItemDelegate(QAbstractItemDelegate *delegate)
{
Q_D(QDataWidgetMapper);
QAbstractItemDelegate *oldDelegate = d->delegate;
if (oldDelegate) {
disconnect(oldDelegate, SIGNAL(commitData(QWidget*)), this, SLOT(_q_commitData(QWidget*)));
disconnect(oldDelegate, SIGNAL(closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)),
this, SLOT(_q_closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)));
}
d->delegate = delegate;
if (delegate) {
connect(delegate, SIGNAL(commitData(QWidget*)), SLOT(_q_commitData(QWidget*)));
connect(delegate, SIGNAL(closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)),
SLOT(_q_closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)));
}
d->flipEventFilters(oldDelegate, delegate);
}
/*!
Returns the current item delegate.
*/
QAbstractItemDelegate *QDataWidgetMapper::itemDelegate() const
{
Q_D(const QDataWidgetMapper);
return d->delegate;
}
/*!
Sets the root item to \a index. This can be used to display
a branch of a tree. Pass an invalid model index to display
the top-most branch.
\sa rootIndex()
*/
void QDataWidgetMapper::setRootIndex(const QModelIndex &index)
{
Q_D(QDataWidgetMapper);
d->rootIndex = index;
}
/*!
Returns the current root index.
\sa setRootIndex()
*/
QModelIndex QDataWidgetMapper::rootIndex() const
{
Q_D(const QDataWidgetMapper);
return QModelIndex(d->rootIndex);
}
/*!
Adds a mapping between a \a widget and a \a section from the model.
The \a section is a column in the model if the orientation is
horizontal (the default), otherwise a row.
For the following example, we assume a model \c myModel that
has two columns: the first one contains the names of people in a
group, and the second column contains their ages. The first column
is mapped to the QLineEdit \c nameLineEdit, and the second is
mapped to the QSpinBox \c{ageSpinBox}:
\snippet doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp 1
\bold{Notes:}
\list
\o If the \a widget is already mapped to a section, the
old mapping will be replaced by the new one.
\o Only one-to-one mappings between sections and widgets are allowed.
It is not possible to map a single section to multiple widgets, or to
map a single widget to multiple sections.
\endlist
\sa removeMapping(), mappedSection(), clearMapping()
*/
void QDataWidgetMapper::addMapping(QWidget *widget, int section)
{
Q_D(QDataWidgetMapper);
removeMapping(widget);
d->widgetMap.append(QDataWidgetMapperPrivate::WidgetMapper(widget, section, d->indexAt(section)));
widget->installEventFilter(d->delegate);
}
/*!
\since 4.3
Essentially the same as addMapping(), but adds the possibility to specify
the property to use specifying \a propertyName.
\sa addMapping()
*/
void QDataWidgetMapper::addMapping(QWidget *widget, int section, const QByteArray &propertyName)
{
Q_D(QDataWidgetMapper);
removeMapping(widget);
d->widgetMap.append(QDataWidgetMapperPrivate::WidgetMapper(widget, section, d->indexAt(section), propertyName));
widget->installEventFilter(d->delegate);
}
/*!
Removes the mapping for the given \a widget.
\sa addMapping(), clearMapping()
*/
void QDataWidgetMapper::removeMapping(QWidget *widget)
{
Q_D(QDataWidgetMapper);
int idx = d->findWidget(widget);
if (idx == -1)
return;
d->widgetMap.removeAt(idx);
widget->removeEventFilter(d->delegate);
}
/*!
Returns the section the \a widget is mapped to or -1
if the widget is not mapped.
\sa addMapping(), removeMapping()
*/
int QDataWidgetMapper::mappedSection(QWidget *widget) const
{
Q_D(const QDataWidgetMapper);
int idx = d->findWidget(widget);
if (idx == -1)
return -1;
return d->widgetMap.at(idx).section;
}
/*!
\since 4.3
Returns the name of the property that is used when mapping
data to the given \a widget.
\sa mappedSection(), addMapping(), removeMapping()
*/
QByteArray QDataWidgetMapper::mappedPropertyName(QWidget *widget) const
{
Q_D(const QDataWidgetMapper);
int idx = d->findWidget(widget);
if (idx == -1)
return QByteArray();
const QDataWidgetMapperPrivate::WidgetMapper &m = d->widgetMap.at(idx);
if (m.property.isEmpty())
return m.widget->metaObject()->userProperty().name();
else
return m.property;
}
/*!
Returns the widget that is mapped at \a section, or
0 if no widget is mapped at that section.
\sa addMapping(), removeMapping()
*/
QWidget *QDataWidgetMapper::mappedWidgetAt(int section) const
{
Q_D(const QDataWidgetMapper);
for (int i = 0; i < d->widgetMap.count(); ++i) {
if (d->widgetMap.at(i).section == section)
return d->widgetMap.at(i).widget;
}
return 0;
}
/*!
Repopulates all widgets with the current data of the model.
All unsubmitted changes will be lost.
\sa submit(), setSubmitPolicy()
*/
void QDataWidgetMapper::revert()
{
Q_D(QDataWidgetMapper);
d->populate();
}
/*!
Submits all changes from the mapped widgets to the model.
For every mapped section, the item delegate reads the current
value from the widget and sets it in the model. Finally, the
model's \l {QAbstractItemModel::}{submit()} method is invoked.
Returns true if all the values were submitted, otherwise false.
\sa revert(), setSubmitPolicy()
*/
bool QDataWidgetMapper::submit()
{
Q_D(QDataWidgetMapper);
for (int i = 0; i < d->widgetMap.count(); ++i) {
const QDataWidgetMapperPrivate::WidgetMapper &m = d->widgetMap.at(i);
if (!d->commit(m))
return false;
}
return d->model->submit();
}
/*!
Populates the widgets with data from the first row of the model
if the orientation is horizontal (the default), otherwise
with data from the first column.
This is equivalent to calling \c setCurrentIndex(0).
\sa toLast(), setCurrentIndex()
*/
void QDataWidgetMapper::toFirst()
{
setCurrentIndex(0);
}
/*!
Populates the widgets with data from the last row of the model
if the orientation is horizontal (the default), otherwise
with data from the last column.
Calls setCurrentIndex() internally.
\sa toFirst(), setCurrentIndex()
*/
void QDataWidgetMapper::toLast()
{
Q_D(QDataWidgetMapper);
setCurrentIndex(d->itemCount() - 1);
}
/*!
Populates the widgets with data from the next row of the model
if the orientation is horizontal (the default), otherwise
with data from the next column.
Calls setCurrentIndex() internally. Does nothing if there is
no next row in the model.
\sa toPrevious(), setCurrentIndex()
*/
void QDataWidgetMapper::toNext()
{
Q_D(QDataWidgetMapper);
setCurrentIndex(d->currentIdx() + 1);
}
/*!
Populates the widgets with data from the previous row of the model
if the orientation is horizontal (the default), otherwise
with data from the previous column.
Calls setCurrentIndex() internally. Does nothing if there is
no previous row in the model.
\sa toNext(), setCurrentIndex()
*/
void QDataWidgetMapper::toPrevious()
{
Q_D(QDataWidgetMapper);
setCurrentIndex(d->currentIdx() - 1);
}
/*!
\property QDataWidgetMapper::currentIndex
\brief the current row or column
The widgets are populated with with data from the row at \a index
if the orientation is horizontal (the default), otherwise with
data from the column at \a index.
\sa setCurrentModelIndex(), toFirst(), toNext(), toPrevious(), toLast()
*/
void QDataWidgetMapper::setCurrentIndex(int index)
{
Q_D(QDataWidgetMapper);
if (index < 0 || index >= d->itemCount())
return;
d->currentTopLeft = d->orientation == Qt::Horizontal
? d->model->index(index, 0, d->rootIndex)
: d->model->index(0, index, d->rootIndex);
d->populate();
emit currentIndexChanged(index);
}
int QDataWidgetMapper::currentIndex() const
{
Q_D(const QDataWidgetMapper);
return d->currentIdx();
}
/*!
Sets the current index to the row of the \a index if the
orientation is horizontal (the default), otherwise to the
column of the \a index.
Calls setCurrentIndex() internally. This convenience slot can be
connected to the signal \l
{QItemSelectionModel::}{currentRowChanged()} or \l
{QItemSelectionModel::}{currentColumnChanged()} of another view's
\l {QItemSelectionModel}{selection model}.
The following example illustrates how to update all widgets
with new data whenever the selection of a QTableView named
\c myTableView changes:
\snippet doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp 2
\sa currentIndex()
*/
void QDataWidgetMapper::setCurrentModelIndex(const QModelIndex &index)
{
Q_D(QDataWidgetMapper);
if (!index.isValid()
|| index.model() != d->model
|| index.parent() != d->rootIndex)
return;
setCurrentIndex(d->orientation == Qt::Horizontal ? index.row() : index.column());
}
/*!
Clears all mappings.
\sa addMapping(), removeMapping()
*/
void QDataWidgetMapper::clearMapping()
{
Q_D(QDataWidgetMapper);
while (!d->widgetMap.isEmpty()) {
QWidget *w = d->widgetMap.takeLast().widget;
if (w)
w->removeEventFilter(d->delegate);
}
}
/*!
\property QDataWidgetMapper::orientation
\brief the orientation of the model
If the orientation is Qt::Horizontal (the default), a widget is
mapped to a column of a data model. The widget will be populated
with the model's data from its mapped column and the row that
currentIndex() points at.
Use Qt::Horizontal for tabular data that looks like this:
\table
\row \o 1 \o Qt Norway \o Oslo
\row \o 2 \o Qt Australia \o Brisbane
\row \o 3 \o Qt USA \o Silicon Valley
\row \o 4 \o Qt China \o Beijing
\row \o 5 \o Qt Germany \o Berlin
\endtable
If the orientation is set to Qt::Vertical, a widget is mapped to
a row. Calling setCurrentIndex() will change the current column.
The widget will be populates with the model's data from its
mapped row and the column that currentIndex() points at.
Use Qt::Vertical for tabular data that looks like this:
\table
\row \o 1 \o 2 \o 3 \o 4 \o 5
\row \o Qt Norway \o Qt Australia \o Qt USA \o Qt China \o Qt Germany
\row \o Oslo \o Brisbane \o Silicon Valley \o Beijing \i Berlin
\endtable
Changing the orientation clears all existing mappings.
*/
void QDataWidgetMapper::setOrientation(Qt::Orientation orientation)
{
Q_D(QDataWidgetMapper);
if (d->orientation == orientation)
return;
clearMapping();
d->orientation = orientation;
}
Qt::Orientation QDataWidgetMapper::orientation() const
{
Q_D(const QDataWidgetMapper);
return d->orientation;
}
/*!
\property QDataWidgetMapper::submitPolicy
\brief the current submit policy
Changing the current submit policy will revert all widgets
to the current data from the model.
*/
void QDataWidgetMapper::setSubmitPolicy(SubmitPolicy policy)
{
Q_D(QDataWidgetMapper);
if (policy == d->submitPolicy)
return;
revert();
d->submitPolicy = policy;
}
QDataWidgetMapper::SubmitPolicy QDataWidgetMapper::submitPolicy() const
{
Q_D(const QDataWidgetMapper);
return d->submitPolicy;
}
QT_END_NAMESPACE
#include "moc_qdatawidgetmapper.h"
#endif // QT_NO_DATAWIDGETMAPPER

View file

@ -1,102 +0,0 @@
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Copyright (C) 2016 Ivailo Monev
**
** This file is part of the QtGui module of the Katie Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QDATAWIDGETMAPPER_H
#define QDATAWIDGETMAPPER_H
#include "QtCore/qobject.h"
#ifndef QT_NO_DATAWIDGETMAPPER
QT_BEGIN_NAMESPACE
class QAbstractItemDelegate;
class QAbstractItemModel;
class QModelIndex;
class QDataWidgetMapperPrivate;
class Q_GUI_EXPORT QDataWidgetMapper: public QObject
{
Q_OBJECT
Q_ENUMS(SubmitPolicy)
Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentIndexChanged)
Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation)
Q_PROPERTY(SubmitPolicy submitPolicy READ submitPolicy WRITE setSubmitPolicy)
public:
QDataWidgetMapper(QObject *parent = nullptr);
void setModel(QAbstractItemModel *model);
QAbstractItemModel *model() const;
void setItemDelegate(QAbstractItemDelegate *delegate);
QAbstractItemDelegate *itemDelegate() const;
void setRootIndex(const QModelIndex &index);
QModelIndex rootIndex() const;
void setOrientation(Qt::Orientation aOrientation);
Qt::Orientation orientation() const;
enum SubmitPolicy { AutoSubmit, ManualSubmit };
void setSubmitPolicy(SubmitPolicy policy);
SubmitPolicy submitPolicy() const;
void addMapping(QWidget *widget, int section);
void addMapping(QWidget *widget, int section, const QByteArray &propertyName);
void removeMapping(QWidget *widget);
int mappedSection(QWidget *widget) const;
QByteArray mappedPropertyName(QWidget *widget) const;
QWidget *mappedWidgetAt(int section) const;
void clearMapping();
int currentIndex() const;
public Q_SLOTS:
void revert();
bool submit();
void toFirst();
void toLast();
void toNext();
void toPrevious();
virtual void setCurrentIndex(int index);
void setCurrentModelIndex(const QModelIndex &index);
Q_SIGNALS:
void currentIndexChanged(int index);
private:
Q_DECLARE_PRIVATE(QDataWidgetMapper)
Q_DISABLE_COPY(QDataWidgetMapper)
Q_PRIVATE_SLOT(d_func(), void _q_dataChanged(const QModelIndex &, const QModelIndex &))
Q_PRIVATE_SLOT(d_func(), void _q_commitData(QWidget *))
Q_PRIVATE_SLOT(d_func(), void _q_closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint))
Q_PRIVATE_SLOT(d_func(), void _q_modelDestroyed())
};
QT_END_NAMESPACE
#endif // QT_NO_DATAWIDGETMAPPER
#endif // QDATAWIDGETMAPPER_H

View file

@ -558,7 +558,6 @@ protected:
void destroy(bool destroyWindow = true,
bool destroySubWindows = true);
friend class QDataWidgetMapperPrivate; // for access to focusNextPrevChild
virtual bool focusNextPrevChild(bool next);
inline bool focusNextChild() { return focusNextPrevChild(true); }
inline bool focusPreviousChild() { return focusNextPrevChild(false); }

View file

@ -124,7 +124,6 @@ static const struct ClassTblData {
{ QLatin1String("QDBusUnixFileDescriptor"), QLatin1String("QtDBus/qdbusunixfiledescriptor.h") },
{ QLatin1String("QDBusVariant"), QLatin1String("QtDBus/qdbusextratypes.h") },
{ QLatin1String("QDataStream"), QLatin1String("QtCore/qdatastream.h") },
{ QLatin1String("QDataWidgetMapper"), QLatin1String("QtGui/qdatawidgetmapper.h") },
{ QLatin1String("QDate"), QLatin1String("QtCore/qdatetime.h") },
{ QLatin1String("QDateEdit"), QLatin1String("QtGui/qdatetimeedit.h") },
{ QLatin1String("QDateTime"), QLatin1String("QtCore/qdatetime.h") },

View file

@ -1,3 +0,0 @@
katie_gui_test(tst_qdatawidgetmapper
${CMAKE_CURRENT_SOURCE_DIR}/tst_qdatawidgetmapper.cpp
)

View file

@ -1,400 +0,0 @@
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Copyright (C) 2016 Ivailo Monev
**
** This file is part of the test suite of the Katie Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtGui/QtGui>
#include <QtTest/QtTest>
#ifndef QT_NO_DATAWIDGETMAPPER
class tst_QDataWidgetMapper: public QObject
{
Q_OBJECT
private slots:
void setModel();
void navigate();
void addMapping();
void currentIndexChanged();
void changingValues();
void setData();
void mappedWidgetAt();
void comboBox();
};
static QStandardItemModel *testModel(QObject *parent = 0)
{
QStandardItemModel *model = new QStandardItemModel(10, 10, parent);
for (int row = 0; row < 10; ++row) {
for (int col = 0; col < 10; ++col)
model->setData(model->index(row, col), QString("item %1 %2").arg(row).arg(col));
}
return model;
}
void tst_QDataWidgetMapper::setModel()
{
QDataWidgetMapper mapper;
QCOMPARE(mapper.model(), (QAbstractItemModel *)0);
{ // let the model go out of scope firstma
QStandardItemModel model;
mapper.setModel(&model);
QCOMPARE(mapper.model(), static_cast<QAbstractItemModel *>(&model));
}
QCOMPARE(mapper.model(), (QAbstractItemModel *)0);
{ // let the mapper go out of scope first
QStandardItemModel model2;
QDataWidgetMapper mapper2;
mapper2.setModel(&model2);
}
}
void tst_QDataWidgetMapper::navigate()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
QLineEdit edit1;
QLineEdit edit2;
QLineEdit edit3;
mapper.addMapping(&edit1, 0);
mapper.toFirst();
mapper.addMapping(&edit2, 1);
mapper.addMapping(&edit3, 2);
QCOMPARE(edit1.text(), QString("item 0 0"));
QVERIFY(edit2.text().isEmpty());
QVERIFY(edit3.text().isEmpty());
QVERIFY(mapper.submit());
edit2.setText(QString("item 0 1"));
edit3.setText(QString("item 0 2"));
QVERIFY(mapper.submit());
mapper.toFirst(); //this will repopulate
QCOMPARE(edit1.text(), QString("item 0 0"));
QCOMPARE(edit2.text(), QString("item 0 1"));
QCOMPARE(edit3.text(), QString("item 0 2"));
mapper.toFirst();
QCOMPARE(edit1.text(), QString("item 0 0"));
QCOMPARE(edit2.text(), QString("item 0 1"));
QCOMPARE(edit3.text(), QString("item 0 2"));
mapper.toPrevious(); // should do nothing
QCOMPARE(edit1.text(), QString("item 0 0"));
QCOMPARE(edit2.text(), QString("item 0 1"));
QCOMPARE(edit3.text(), QString("item 0 2"));
mapper.toNext();
QCOMPARE(edit1.text(), QString("item 1 0"));
QCOMPARE(edit2.text(), QString("item 1 1"));
QCOMPARE(edit3.text(), QString("item 1 2"));
mapper.toLast();
QCOMPARE(edit1.text(), QString("item 9 0"));
QCOMPARE(edit2.text(), QString("item 9 1"));
QCOMPARE(edit3.text(), QString("item 9 2"));
mapper.toNext(); // should do nothing
QCOMPARE(edit1.text(), QString("item 9 0"));
QCOMPARE(edit2.text(), QString("item 9 1"));
QCOMPARE(edit3.text(), QString("item 9 2"));
mapper.setCurrentIndex(4);
QCOMPARE(edit1.text(), QString("item 4 0"));
QCOMPARE(edit2.text(), QString("item 4 1"));
QCOMPARE(edit3.text(), QString("item 4 2"));
mapper.setCurrentIndex(-1); // should do nothing
QCOMPARE(edit1.text(), QString("item 4 0"));
QCOMPARE(edit2.text(), QString("item 4 1"));
QCOMPARE(edit3.text(), QString("item 4 2"));
mapper.setCurrentIndex(10); // should do nothing
QCOMPARE(edit1.text(), QString("item 4 0"));
QCOMPARE(edit2.text(), QString("item 4 1"));
QCOMPARE(edit3.text(), QString("item 4 2"));
mapper.setCurrentModelIndex(QModelIndex()); // should do nothing
QCOMPARE(edit1.text(), QString("item 4 0"));
QCOMPARE(edit2.text(), QString("item 4 1"));
QCOMPARE(edit3.text(), QString("item 4 2"));
mapper.setCurrentModelIndex(model->index(6, 0));
QCOMPARE(edit1.text(), QString("item 6 0"));
QCOMPARE(edit2.text(), QString("item 6 1"));
QCOMPARE(edit3.text(), QString("item 6 2"));
/* now try vertical navigation */
mapper.setOrientation(Qt::Vertical);
mapper.addMapping(&edit1, 0);
mapper.addMapping(&edit2, 1);
mapper.addMapping(&edit3, 2);
mapper.toFirst();
QCOMPARE(edit1.text(), QString("item 0 0"));
QCOMPARE(edit2.text(), QString("item 1 0"));
QCOMPARE(edit3.text(), QString("item 2 0"));
mapper.toPrevious(); // should do nothing
QCOMPARE(edit1.text(), QString("item 0 0"));
QCOMPARE(edit2.text(), QString("item 1 0"));
QCOMPARE(edit3.text(), QString("item 2 0"));
mapper.toNext();
QCOMPARE(edit1.text(), QString("item 0 1"));
QCOMPARE(edit2.text(), QString("item 1 1"));
QCOMPARE(edit3.text(), QString("item 2 1"));
mapper.toLast();
QCOMPARE(edit1.text(), QString("item 0 9"));
QCOMPARE(edit2.text(), QString("item 1 9"));
QCOMPARE(edit3.text(), QString("item 2 9"));
mapper.toNext(); // should do nothing
QCOMPARE(edit1.text(), QString("item 0 9"));
QCOMPARE(edit2.text(), QString("item 1 9"));
QCOMPARE(edit3.text(), QString("item 2 9"));
mapper.setCurrentIndex(4);
QCOMPARE(edit1.text(), QString("item 0 4"));
QCOMPARE(edit2.text(), QString("item 1 4"));
QCOMPARE(edit3.text(), QString("item 2 4"));
mapper.setCurrentIndex(-1); // should do nothing
QCOMPARE(edit1.text(), QString("item 0 4"));
QCOMPARE(edit2.text(), QString("item 1 4"));
QCOMPARE(edit3.text(), QString("item 2 4"));
mapper.setCurrentIndex(10); // should do nothing
QCOMPARE(edit1.text(), QString("item 0 4"));
QCOMPARE(edit2.text(), QString("item 1 4"));
QCOMPARE(edit3.text(), QString("item 2 4"));
mapper.setCurrentModelIndex(QModelIndex()); // should do nothing
QCOMPARE(edit1.text(), QString("item 0 4"));
QCOMPARE(edit2.text(), QString("item 1 4"));
QCOMPARE(edit3.text(), QString("item 2 4"));
mapper.setCurrentModelIndex(model->index(0, 6));
QCOMPARE(edit1.text(), QString("item 0 6"));
QCOMPARE(edit2.text(), QString("item 1 6"));
QCOMPARE(edit3.text(), QString("item 2 6"));
}
void tst_QDataWidgetMapper::addMapping()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
QLineEdit edit1;
mapper.addMapping(&edit1, 0);
mapper.toFirst();
QCOMPARE(edit1.text(), QString("item 0 0"));
mapper.addMapping(&edit1, 1);
mapper.toFirst();
QCOMPARE(edit1.text(), QString("item 0 1"));
QCOMPARE(mapper.mappedSection(&edit1), 1);
edit1.clear();
mapper.removeMapping(&edit1);
mapper.toFirst();
QCOMPARE(edit1.text(), QString());
{
QLineEdit edit2;
mapper.addMapping(&edit2, 2);
mapper.toFirst();
QCOMPARE(edit2.text(), QString("item 0 2"));
} // let the edit go out of scope
QCOMPARE(mapper.mappedWidgetAt(2), (QWidget *)0);
mapper.toLast();
}
void tst_QDataWidgetMapper::currentIndexChanged()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
QSignalSpy spy(&mapper, SIGNAL(currentIndexChanged(int)));
mapper.toFirst();
QCOMPARE(spy.count(), 1);
QCOMPARE(spy.takeFirst().at(0).toInt(), 0);
mapper.toNext();
QCOMPARE(spy.count(), 1);
QCOMPARE(spy.takeFirst().at(0).toInt(), 1);
mapper.setCurrentIndex(7);
QCOMPARE(spy.count(), 1);
QCOMPARE(spy.takeFirst().at(0).toInt(), 7);
mapper.setCurrentIndex(-1);
QCOMPARE(spy.count(), 0);
mapper.setCurrentIndex(42);
QCOMPARE(spy.count(), 0);
}
void tst_QDataWidgetMapper::changingValues()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
QLineEdit edit1;
mapper.addMapping(&edit1, 0);
mapper.toFirst();
QCOMPARE(edit1.text(), QString("item 0 0"));
QLineEdit edit2;
mapper.addMapping(&edit2, 0, "text");
mapper.toFirst();
QCOMPARE(edit2.text(), QString("item 0 0"));
model->setData(model->index(0, 0), QString("changed"));
QCOMPARE(edit1.text(), QString("changed"));
QCOMPARE(edit2.text(), QString("changed"));
}
void tst_QDataWidgetMapper::setData()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
QLineEdit edit1;
QLineEdit edit2;
QLineEdit edit3;
mapper.addMapping(&edit1, 0);
mapper.addMapping(&edit2, 1);
mapper.addMapping(&edit3, 0, "text");
mapper.toFirst();
QCOMPARE(edit1.text(), QString("item 0 0"));
QCOMPARE(edit2.text(), QString("item 0 1"));
QCOMPARE(edit3.text(), QString("item 0 0"));
edit1.setText("new text");
mapper.submit();
QCOMPARE(model->data(model->index(0, 0)).toString(), QString("new text"));
edit3.setText("more text");
mapper.submit();
QCOMPARE(model->data(model->index(0, 0)).toString(), QString("more text"));
}
void tst_QDataWidgetMapper::comboBox()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
mapper.setSubmitPolicy(QDataWidgetMapper::ManualSubmit);
QComboBox readOnlyBox;
readOnlyBox.setEditable(false);
readOnlyBox.addItem("read only item 0");
readOnlyBox.addItem("read only item 1");
readOnlyBox.addItem("read only item 2");
QComboBox readWriteBox;
readWriteBox.setEditable(true);
readWriteBox.addItem("read write item 0");
readWriteBox.addItem("read write item 1");
readWriteBox.addItem("read write item 2");
// populate the combo boxes with data
mapper.addMapping(&readOnlyBox, 0, "currentIndex");
mapper.addMapping(&readWriteBox, 1, "currentText");
mapper.toFirst();
QCOMPARE(readOnlyBox.currentText(), QString("read only item 0"));
QCOMPARE(readWriteBox.currentText(), QString("read write item 0"));
// set some new values on the boxes
readOnlyBox.setCurrentIndex(1);
readWriteBox.setEditText("read write item y");
mapper.submit();
// make sure the new values are in the model
QCOMPARE(model->data(model->index(0, 0)).toInt(), 1);
QCOMPARE(model->data(model->index(0, 1)).toString(), QString("read write item y"));
// now test updating of the widgets
model->setData(model->index(0, 0), 2, Qt::EditRole);
model->setData(model->index(0, 1), QString("read write item z"), Qt::EditRole);
QCOMPARE(readOnlyBox.currentIndex(), 2);
QEXPECT_FAIL("", "See task 125493 and QTBUG-428", Abort);
QCOMPARE(readWriteBox.currentText(), QString("read write item z"));
}
void tst_QDataWidgetMapper::mappedWidgetAt()
{
QDataWidgetMapper mapper;
QAbstractItemModel *model = testModel(&mapper);
mapper.setModel(model);
QLineEdit lineEdit1;
QLineEdit lineEdit2;
QCOMPARE(mapper.mappedWidgetAt(432312), (QWidget*)0);
mapper.addMapping(&lineEdit1, 1);
mapper.addMapping(&lineEdit2, 2);
QCOMPARE(mapper.mappedWidgetAt(1), static_cast<QWidget *>(&lineEdit1));
QCOMPARE(mapper.mappedWidgetAt(2), static_cast<QWidget *>(&lineEdit2));
mapper.addMapping(&lineEdit2, 4242);
QCOMPARE(mapper.mappedWidgetAt(2), (QWidget*)0);
QCOMPARE(mapper.mappedWidgetAt(4242), static_cast<QWidget *>(&lineEdit2));
}
QTEST_MAIN(tst_QDataWidgetMapper)
#include "moc_tst_qdatawidgetmapper.cpp"
#else // QT_NO_DATAWIDGETMAPPER
QTEST_NOOP_MAIN
#endif // QT_NO_DATAWIDGETMAPPER