![]() |
Qt 6.x
The Qt SDK
|
\inmodule QtCore More...
#include <qproperty.h>
Public Member Functions | |
Q_NODISCARD_CTOR | QPropertyNotifier ()=default |
template<typename Functor > | |
Q_NODISCARD_CTOR | QPropertyNotifier (Functor handler) |
template<typename Functor , typename Property , typename = typename Property::InheritsQUntypedPropertyData> | |
Q_NODISCARD_CTOR | QPropertyNotifier (const Property &property, Functor handler) |
![]() | |
constexpr | QPropertyObserver ()=default |
QPropertyObserver (QPropertyObserver &&other) noexcept | |
QPropertyObserver & | operator= (QPropertyObserver &&other) noexcept |
~QPropertyObserver () | |
template<typename Property , typename = typename Property::InheritsQUntypedPropertyData> | |
void | setSource (const Property &property) |
void | setSource (const QtPrivate::QPropertyBindingData &property) |
Additional Inherited Members | |
![]() | |
enum | ObserverTag { ObserverNotifiesBinding , ObserverNotifiesChangeHandler , ObserverIsPlaceholder } |
![]() | |
using | ChangeHandler = void(*)(QPropertyObserver *, QUntypedPropertyData *) |
![]() | |
QPropertyObserver (ChangeHandler changeHandler) | |
QUntypedPropertyData * | aliasedProperty () const |
\inmodule QtCore
The QPropertyNotifier class controls the lifecycle of change callback installed on a QProperty.
QPropertyNotifier is created when registering a callback on a QProperty to listen to changes to the property's value, using QProperty::addNotifier. As long as the change handler is alive, the callback remains installed.
A handler instance can be transferred between C++ scopes using move semantics.
Definition at line 317 of file qproperty.h.
|
default |
|
inline |
Definition at line 325 of file qproperty.h.
|
inline |
Definition at line 336 of file qproperty.h.