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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -