KDBindings icon indicating copy to clipboard operation
KDBindings copied to clipboard

Reactive programming & data binding in C++

Results 13 KDBindings issues
Sort by recently updated
recently updated
newest added

When T is an aggregate type, eg `struct Rect { int x; int y; int width; int height; }` It would be great to be able to access members of...

enhancement

Often, I have to deal with a **Property p** where **T** itself contains properties. Given the property **p** is using a pointer type, I cannot binding directly to **p->someProperty** given...

enhancement

At the moment I cannot use a const Property in a binding. ``` const Property someValue = makeBinding(someExpression); Property boundValue = makeBinding(someValue); // This does not compile ``` A const...

bug