KDBindings API Documentation
1.0.95
|
Properties are values that can notify observers of changes. They can therefore be used as values in data bindings.
Unlike Qts Properties, KDBindings Properties don't require a Meta Object Compiler and are available in pure C++17. They can even be used outside of classes as free values.
Properties can be declared for most types by creating a KDBindings::Property<T>
instance.
The property instance will then emit signals every time the properties value changes, the property is moved or destructed.
Expected output:
For more information and examples see the KDBindings::Property documentation.