> >> + disconnect(job, 0, 0, 0); >> + job->stop(); >> +++ // TODO how do the get off the hash? > > QLineEdit is asociated with job. So other option could be to move > job pointer to new class inhered by QLineEdit. That doesn't scale because everytime you want to change the assiciation, you'll have to re-inherit something. Just ensure to remove the element from the hash/map before deleting it (i did not see this happen anywhere) to ensure you've no dangeling pointers there.
>> +++ // TODO QMap is gonna perform better here >> + QHash <QLineEdit *, AddressbookJob *> >> m_completionRequests; + >> > > I thought that QHash is better for pointers (integers). The data type is nearby irrelevant. QHash is more expensive at insertion and has a fixed cost part, which makes it more expensive for very short maps/hashes - as we can expect here - anyway. >> +void SettingsDialog::slotAccept() >> +{ >> + disconnect(sender(), SIGNAL(saved()), this, >> SLOT(slotAccept())); + saveSignalCount--; >> +++ // TODO QT5, test isConnected > > Why is needed to test if is connected? QDialog::accept() is > called after all (above) widgets emit signal saved. To avoid relying on the saveSignalCount counter. > Why to cache password? Also in kwallet you can change password. To avoid having to wait and eventually even fail (when the PW backend is -temporarily- not accessible or even the server has a authentification timeout below the PW backend reply time) -> cache password, try cached if available, if it fails, ask the PW plugin, if it differs, update the cache and use the new one for authentication, otherwise ask the user for the password (and remove/update the cached PW as well) > Why to use QMetaObject::invokeMethod instead QTimer::singleShot? a) to avoid having to include QTimer b) because you rely on Qt's workaround for a very popular clientcode abuse (QMetaObject::invokeMethod with QueuedConnection does the same and is internally used by QTimer, as Kevin pointed out, because really MAAAANY users abuse the zero timer singleshot) > I need to make sure that plugins implement doStart and doStop > methods. And it is not possible to force that without pure > virtual methods. Yes, i was just pointing out they usually don't have to. > m_wallet is not dialog but single object for accessing kwallet. > it can be reused (if wallet was not closed) for next kwallet > access, so I dot no removing it. Dialog is shown by some kde > process and I do not know how to tell it application name which > accessing wallet. Yes, and the kwallet dialog is gonna be removed (by default) as it implies security that is absolutely not present. So it's not really important to have a very special "Application Name" here - you can just pass "Trojita", as long as you keep it, there should be no problem. Cheers, Thomas