Thank you, Chris, this seems more like it is in Qt sources: custom append function implemented for property. I think such an implementation really gives you more control over the situation, will give it a try. However,
{
connect(t, SIGNAL(somePropertyChangeSignal()), obj, SLOT(doWhatever()));
...
emit obj->mylistpropertyChanged();
}
I’d use metacall for that, if connect is to be made each call like here. May be you wanted to say connect is somewhere else around. But I got the point, thanks.
↧