An example of how to use makeBoundProperty() to create a KDBindings::Property that is automatically updated once any of its inputs change.
The output of this example is:
The initial size of the image = 1920000 bytes
The new size of the image = 4608000 bytes
The new size of the image = 8294400 bytes
#include <iostream>
class Image
{
public:
const int bytesPerPixel = 4;
const Property<int> byteSize = makeBoundProperty(bytesPerPixel * width * height);
};
int main()
{
Image img;
std::cout << "The initial size of the image = " << img.byteSize.get() << " bytes" << std::endl;
(void)img.byteSize.valueChanged().connect([](const int &newValue) {
std::cout << "The new size of the image = " << newValue << " bytes" << std::endl;
});
img.width = 1920;
img.height = 1080;
return 0;
}
A property represents a value that can be part of or the result of data binding.
The main namespace of the KDBindings library.