qt5base-lts/tests/auto/corelib/kernel/qobject
Olivier Goffart 583c55b243 New QObject connection syntax
In addition to the old connection syntax, you can now connect using function pointers.

    connect(sender, &Sender::valueChanged,
            receiver, &Receiver::updateValue );

You can connect also to functor or C++11 lambdas

The connections are now type safe (no more problems with namespaces
or typedefs).  Implicit type conversion is also supported.

The new syntax forces us to change the meaning of signal form
protected to public, in order to be able to access the signal's
address everywhere

The way it works is by introducing new overload of QObject::connect
that take function pointer as parametter. Those new overload are template
function, that are implemented inline. The actual implementation is
in QObject::connectImpl which take a QObject::QSlotObject* as parametter
for the slot.  That slot object contains a virtual function which call
the slot which has to be implemented in the header as it depends on the
template parametter.  So the internals of QObjectPrivate::Connection
will store this QObjectSlot* in order to be able to make the call.

You can read a full description here:
http://developer.qt.nokia.com/wiki/New_Signal_Slot_Syntax

History of commits before it was imported on gerrit:
https://qt.gitorious.org/~ogoffart/qt/ogoffarts-qtbase/commits/qobject_connect_ptr

Thread on the mailing list:
http://lists.qt.nokia.com/pipermail/qt5-feedback/2011-August/000796.html
http://lists.qt.nokia.com/pipermail/qt5-feedback/2011-September/001248.html
(The discussions on the mailing list were about trying to find a
solution that do not need making signals public, but no user friendly
solution was found)

Note: support for QueuedConnection, and the symetric QObject::disconnect is
added in another commit.
Qt::UniqueConnection is not supported yet in the new overload.

Change-Id: I67d08436b0720e7f2992be9f7e34770960fa58fa
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2011-11-25 01:12:14 +01:00
..
.gitignore Moving relevant tests to corelib/kernel 2011-09-01 12:42:14 +02:00
moc_oldnormalizeobject.cpp Moving relevant tests to corelib/kernel 2011-09-01 12:42:14 +02:00
oldnormalizeobject.h Moving relevant tests to corelib/kernel 2011-09-01 12:42:14 +02:00
qobject.pro Moving relevant tests to corelib/kernel 2011-09-01 12:42:14 +02:00
signalbug.cpp Cleanup corelib autotests 2011-11-10 04:42:45 +01:00
signalbug.h Cleanup corelib autotests 2011-11-10 04:42:45 +01:00
signalbug.pro Moving relevant tests to corelib/kernel 2011-09-01 12:42:14 +02:00
tst_qobject.cpp New QObject connection syntax 2011-11-25 01:12:14 +01:00
tst_qobject.pro Cleanup corelib autotests 2011-11-11 02:45:05 +01:00