Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QContactChangeSet Class Reference

The QContactChangeSet class provides a simple API to simplify the emission of state-change signals from QContactManagerEngine implementations. More...

 #include <QContactChangeSet>

Public Functions

QContactChangeSet ()
QContactChangeSet ( const QContactChangeSet & other )
~QContactChangeSet ()
QSet<QContactLocalId> addedContacts () const
QSet<QContactLocalId> addedRelationshipsContacts () const
QSet<QContactLocalId> changedContacts () const
void clearAddedContacts ()
void clearAddedRelationshipsContacts ()
void clearAll ()
void clearChangedContacts ()
void clearRemovedContacts ()
void clearRemovedRelationshipsContacts ()
bool dataChanged ()
void emitSignals ( QContactManagerEngine * engine )
void insertAddedContact ( QContactLocalId addedContactId )
void insertAddedContacts ( const QList<QContactLocalId> & addedContactIds )
void insertAddedRelationshipsContact ( QContactLocalId affectedContactId )
void insertAddedRelationshipsContacts ( const QList<QContactLocalId> & affectedContactIds )
void insertChangedContact ( QContactLocalId changedContactId )
void insertChangedContacts ( const QList<QContactLocalId> & changedContactIds )
void insertRemovedContact ( QContactLocalId removedContactId )
void insertRemovedContacts ( const QList<QContactLocalId> & removedContactIds )
void insertRemovedRelationshipsContact ( QContactLocalId affectedContactId )
void insertRemovedRelationshipsContacts ( const QList<QContactLocalId> & affectedContactIds )
QPair<QContactLocalId, QContactLocalId> oldAndNewSelfContactId () const
QSet<QContactLocalId> removedContacts () const
QSet<QContactLocalId> removedRelationshipsContacts () const
void setDataChanged ( bool dataChanged )
void setOldAndNewSelfContactId ( const QPair<QContactLocalId, QContactLocalId> & oldAndNewContactId )
QContactChangeSet & operator= ( const QContactChangeSet & other )

Detailed Description

The QContactChangeSet class provides a simple API to simplify the emission of state-change signals from QContactManagerEngine implementations.

This class can be utilised by backend implementations to ensure correct emission of the QContactManagerEngine::dataChanged(), QContactManagerEngine::contactsAdded(), QContactManagerEngine::contactsChanged() and QContactManagerEngine::contactsRemoved().

See also QContactManagerEngine.

Member Function Documentation

QContactChangeSet::QContactChangeSet ()

Constructs a new change set

QContactChangeSet::QContactChangeSet ( const QContactChangeSet & other )

Constructs a copy of the other change set

QContactChangeSet::~QContactChangeSet ()

Frees the memory used by this change set

QSet<QContactLocalId> QContactChangeSet::addedContacts () const

Returns the set of ids of contacts which have been added to the database.

QSet<QContactLocalId> QContactChangeSet::addedRelationshipsContacts () const

Returns the set of ids of contacts which have been affected by the addition of relationships to the database.

QSet<QContactLocalId> QContactChangeSet::changedContacts () const

Returns the set of ids of contacts which have been changed in the database.

void QContactChangeSet::clearAddedContacts ()

Clears the set of ids of contacts which have been added to the database

void QContactChangeSet::clearAddedRelationshipsContacts ()

Clears the set of ids of contacts which have been affected by the addition of a relationship to the database.

void QContactChangeSet::clearAll ()

Clears all flags and sets of ids in this change set

void QContactChangeSet::clearChangedContacts ()

Clears the set of ids of contacts which have been changed to the database

void QContactChangeSet::clearRemovedContacts ()

Clears the set of ids of contacts which have been removed to the database

void QContactChangeSet::clearRemovedRelationshipsContacts ()

Clears the set of ids of contacts which have been affected by the removal of a relationship to the database.

bool QContactChangeSet::dataChanged ()

Returns the value of the data changed flag

See also setDataChanged().

void QContactChangeSet::emitSignals ( QContactManagerEngine * engine )

Emits the appropriate signals from the given engine given the state of the change set

void QContactChangeSet::insertAddedContact ( QContactLocalId addedContactId )

Inserts the given contact id addedContactId into the set of ids of contacts which have been added to the database.

void QContactChangeSet::insertAddedContacts ( const QList<QContactLocalId> & addedContactIds )

Inserts each of the given contact ids addedContactIds into the set of ids of contacts which have been added to the database.

void QContactChangeSet::insertAddedRelationshipsContact ( QContactLocalId affectedContactId )

Inserts the given contact id affectedContactId into the set of ids of contacts which have been affected by the addition of a relationship to the database.

void QContactChangeSet::insertAddedRelationshipsContacts ( const QList<QContactLocalId> & affectedContactIds )

Inserts each of the given contact ids affectedContactIds into the set of ids of contacts which have been affected by the addition of a relationship to the database.

void QContactChangeSet::insertChangedContact ( QContactLocalId changedContactId )

Inserts the given contact id changedContactId into the set of ids of contacts which have been changed to the database.

void QContactChangeSet::insertChangedContacts ( const QList<QContactLocalId> & changedContactIds )

Inserts each of the given contact ids changedContactIds into the set of ids of contacts which have been changed to the database.

void QContactChangeSet::insertRemovedContact ( QContactLocalId removedContactId )

Inserts the given contact id removedContactId into the set of ids of contacts which have been removed to the database.

void QContactChangeSet::insertRemovedContacts ( const QList<QContactLocalId> & removedContactIds )

Inserts each of the given contact ids removedContactIds into the set of ids of contacts which have been removed to the database.

void QContactChangeSet::insertRemovedRelationshipsContact ( QContactLocalId affectedContactId )

Inserts the given contact id affectedContactId into the set of ids of contacts which have been affected by the removal of a relationship to the database.

void QContactChangeSet::insertRemovedRelationshipsContacts ( const QList<QContactLocalId> & affectedContactIds )

Inserts each of the given contact ids affectedContactIds into the set of ids of contacts which have been affected by the removal of a relationship to the database.

QPair<QContactLocalId, QContactLocalId> QContactChangeSet::oldAndNewSelfContactId () const

Returns the pair of ids which represents the old and new self contact ids. The first id in the pair is the old self contact id, while the second id in the pair is the new self contact id. If the new id is different to the old id at the point in time when emitSignals() is called, the QContactManagerEngine::selfContactIdChanged() signal will be emitted.

See also setOldAndNewSelfContactId().

QSet<QContactLocalId> QContactChangeSet::removedContacts () const

Returns the set of ids of contacts which have been removed from the database.

QSet<QContactLocalId> QContactChangeSet::removedRelationshipsContacts () const

Returns the set of ids of contacts which have been affected by the removal of relationships from the database.

void QContactChangeSet::setDataChanged ( bool dataChanged )

Sets the data changed flag to dataChanged. If this is set to true prior to calling emitSignals(), only the QContactManagerEngine::dataChanged() signal will be emitted; otherwise, the appropriate finer-grained signals will be emitted.

See also dataChanged().

void QContactChangeSet::setOldAndNewSelfContactId ( const QPair<QContactLocalId, QContactLocalId> & oldAndNewContactId )

Sets the pair of ids which represent the old and new self contact ids to the given pair of ids oldAndNewContactId. The first id in the pair is the old self contact id, while the second id in the pair is the new self contact id. If the new id is different to the old id at the point in time when emitSignals() is called, the QContactManagerEngine::selfContactIdChanged signal will be emitted.

See also oldAndNewSelfContactId().

QContactChangeSet & QContactChangeSet::operator= ( const QContactChangeSet & other )

Assigns this change set to be equal to other

X

Thank you for giving your feedback.

Make sure it is related to this specific page. For more general bugs and requests, please use the Qt Bug Tracker.

[0]; s.parentNode.insertBefore(ga, s); })();
Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  2. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  3. Une nouvelle ère d'IHM 3D pour les automobiles, un concept proposé par Digia et implémenté avec Qt 3
  4. Qt Creator 2.5 est sorti en beta, l'EDI supporte maintenant plus de fonctionnalités de C++11 2
  5. Vingt sociétés montrent leurs décodeurs basés sur Qt au IPTV World Forum, en en exploitant diverses facettes (déclaratif, Web, widgets) 0
  6. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  7. Thread travailleur avec Qt en utilisant les signaux et les slots, un article de Christophe Dumez traduit par Thibaut Cuvelier 1
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 51
  4. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  5. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  6. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  7. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
Page suivante

Le Qt Developer Network au hasard

Logo

Introduction

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt qtmobility-1.1
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web