First off, I’m using the Qt 4 libraries and C++.
Is there a way to be notified (signal, event, ?) when a property (dynamic or otherwise) changes on a QObject?
I can’t modify the QObject class as it is part of the Qt4 library. More info about QObject here.
You can install an event filter on QObject instances.
So if you want to be notified for windowsTitle changes you can install an eventfilter that captures QEvent::WindowTitleChange events.
For example: