Qt-contributors-summit-2013-QObject

From Qt Wiki
Revision as of 14:07, 25 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

- We agree that we focus on C++11 and new
features requires it

- We want to add the overload
connect(ob1, &ddd::fff, receiver, []{}, Qt::QueuedConnection);

- For function such as QTimer::singleShot, we can add the
two template overload and some helper code in (private?) API
to share the complicated template code. Or just use QSlot<…>
QTimer::singleShot(int, QSlot<void()>)

- implement
template<typename …Args>
QMetaObject::queuedInvoke(QObject, Ret(T::*)(Args…), Args…)
template<typename …Args>
QMetaObject::blockingQueuedInvoke(QObject, Ret(T::*)(Args…), Args…) -> Ret

Templateed QObject: – investigate what are the use case to see what kind of features we want to support or not. (Not to open too many cans of worms