c++ - Get notification when contacts are added/deleted/updated -
on blackberry 10, how can qt application notified when contact added, deleted, or updated? there contact api?
qcontactmanager has these 3 signals:
void qcontactmanager::contactsadded ( const qlist<qcontactlocalid> & contactids ); void qcontactmanager::contactschanged ( const qlist<qcontactlocalid> & contactids ); void qcontactmanager::contactsremoved ( const qlist<qcontactlocalid> & contactids );
connect slots them in order receive notifications.
Comments
Post a Comment