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  · 

QPimModel Class Reference
[QtMessagingModule, QtPimModule, QtTelephonyModule, QtUiModule]

The QPimModel class provides an abstract interface to the PIM model classes. More...

    #include <QPimModel>

Inherits QAbstractItemModel.

Inherited by QAppointmentModel, QContactModel, and QTaskModel.

Public Functions

Additional Inherited Members


Detailed Description

The QPimModel class provides an abstract interface to the PIM model classes.

The QPimModel class defines a standard interface that is implemented by all of the PIM model classes. As it is an abstract interface, the QPimModel class should not be used directly. Instead use the classes that provide access for the specific PIM data types, QAppointmentModel, QContactModel or QTaskModel.

See also QAppointmentModel, QContactModel, QTaskModel, and Pim Library.


Member Function Documentation

QPimModel::QPimModel ( QObject * parent = 0 )

Constructs a PIM model with the given parent.

QPimModel::~QPimModel ()   [virtual]

Destroys the PIM model.

bool QPimModel::abortSyncTransaction ()

Aborts the current synchronization transaction.

Returns true if transaction successfully aborted.

See also startSyncTransaction() and commitSyncTransaction().

bool QPimModel::abortTransaction ()

Aborts the current transaction.

Returns true if transaction successfully aborted.

See also startTransaction() and commitTransaction().

QUniqueId QPimModel::addRecord ( const QByteArray & bytes, const QPimSource & source, const QString & format = QString() )   [pure virtual]

Adds the PIM record encoded in bytes to the model under the specified storage source. The format of the record in bytes is given by format. An empty format string will cause the record to be read using the data stream operators for the PIM data type of the model. Valid format strings are documented in QAppointmentModel, QContactModel and QTaskModel. If the specified source is null the function will add the record to the default storage source.

Returns a valid identifier for the record if the record was successfully added. Otherwise returns a null identifier.

Can only add PIM data that is represented by the model.

See also updateRecord() and removeRecord().

QList<QUniqueId> QPimModel::added ( const QDateTime & timestamp ) const

Returns the list of identifiers for records added to the current set of visible sources on or after the specified timestamp.

Timestamps are stored in UTC. Please use QTimeZone::toUtc() for times passed into this function.

See also removed() and modified().

QSet<QPimSource> QPimModel::availableSources () const

Returns the set of storage sources that can be shown.

See also setVisibleSources() and visibleSources().

QCategoryFilter QPimModel::categoryFilter () const

Returns the category filter that records are tested against in the current filter mode.

See also setCategoryFilter().

bool QPimModel::commitSyncTransaction ()

Commits the current synchronization transaction.

Returns true if transaction successfully committed.

Does not abort transaction if unsuccessfully committed.

See also startSyncTransaction() and abortSyncTransaction().

bool QPimModel::commitTransaction ()

Commits the current transaction.

Returns true if transaction successfully committed.

Does not abort transaction if unsuccessfully committed.

See also startTransaction() and abortTransaction().

bool QPimModel::contains ( const QModelIndex & index ) const

Returns true if the current filter mode of the model contains the given index.

See also exists().

bool QPimModel::contains ( const QUniqueId & identifier ) const

This is an overloaded member function, provided for convenience.

Returns true if the current filter mode of the model contains the record with given identifier.

See also exists().

QPimContext * QPimModel::context ( const QUniqueId & identifier ) const

Returns the context that could contain the record with specified identifier. This function does not check if the record currently exists in the corresponding context, but instead returns the context that this identifier belongs to. You can call QPimContext::exists() if you wish to be more certain, but be aware that other threads or processes may make the result out of date.

Returns 0 if this identifier does not belong to any context.

See also contexts().

QPimContext * QPimModel::context ( const QPimSource & source ) const

This is an overloaded member function, provided for convenience.

If the given source exists in the model returns the context that provides that source. Otherwise returns 0.

See also contexts() and availableSources().

const QList<QPimContext *> & QPimModel::contexts () const

Returns the contexts of record data that is shown by the record model.

int QPimModel::count () const

Return the number of records visible in the in the current filter mode.

QPimSource QPimModel::defaultSource () const

Returns the default storage sources relating to the device memory.

See also source(), availableSources(), and visibleSources().

bool QPimModel::editable ( const QModelIndex & index ) const

Returns true if the record for the given index can be updated or removed.

bool QPimModel::editable ( const QUniqueId & identifier ) const

This is an overloaded member function, provided for convenience.

Returns true if the record for the given identifier can be updated or removed.

bool QPimModel::exists ( const QUniqueId & identifier ) const

Returns true if a record with the given identifier is stored in the model.

The specified record does not need to be in the current filter mode.

See also contains().

bool QPimModel::flush ()

Ensures the data for the model is in a state suitable for syncing.

Returns true upon success.

See also startSyncTransaction().

QUniqueId QPimModel::id ( const QModelIndex & index ) const

Returns the identifier for the record at the specified index. If index is null or out of the range of the model, will return a null identifier.

QUniqueId QPimModel::id ( int row ) const

This is an overloaded member function, provided for convenience.

Returns the identifier for record at the specified row.

QModelIndex QPimModel::index ( const QUniqueId & identifier ) const

Returns the index of the record for the given identifier. If no record is found returns a null index.

See also contains() and exists().

QList<QUniqueId> QPimModel::modified ( const QDateTime & timestamp ) const

Returns the list of identifiers for records modified in the current set of visible sources on or after the specified timestamp.

Timestamps are stored in UTC. Please use QTimeZone::toUtc() for times passed into this function.

See also added() and removed().

QByteArray QPimModel::record ( const QUniqueId & identifier, const QString & format = QString() ) const   [pure virtual]

Returns the record in the model with the specified identifier encoded in the format specified by the format string. An empty format string will cause the record to be written using the data stream operators for the PIM data type of the model.

bool QPimModel::refresh ()

Forces a refresh of the data for the model. The PIM data models update automatically and it should not be required that this function is called in normal use of the PIM data models.

Returns true upon success.

bool QPimModel::removeRecord ( const QUniqueId & identifier )   [pure virtual]

Removes the record from the model with the specified identifier.

Returns true if the record was successfully removed.

See also addRecord() and updateRecord().

QList<QUniqueId> QPimModel::removed ( const QDateTime & timestamp ) const

Returns the list of identifiers for records removed from the current set of visible sources on or after the specified timestamp.

Timestamps are stored in UTC. Please use QTimeZone::toUtc() for times passed into this function.

See also added() and modified().

void QPimModel::setCategoryFilter ( const QCategoryFilter & filter )

Sets the model to only contain records accepted by the specified category filter.

See also categoryFilter().

void QPimModel::setVisibleSources ( const QSet<QPimSource> & list )

Sets the model to show only records contained in the storage sources specified by list.

Also refreshes the model.

See also visibleSources() and availableSources().

QPimSource QPimModel::source ( const QUniqueId & identifier ) const

Returns the storage source that contains the record with the specified identifier. Returns a null source if the record does not exist.

See also availableSources().

bool QPimModel::sourceExists ( const QPimSource & source, const QUniqueId & identifier ) const

Returns true if the record for the given identifier is stored in the specified storage source.

See also exists() and availableSources().

bool QPimModel::startSyncTransaction ( const QDateTime & timestamp )

Prepares the currently visible sources for synchronization. All modifications between startSyncTransaction() and commitSyncTransaction() will be marked with the given timestamp for modification or creation as appropriate.

Returns true if transaction successfully initiated.

Does not abort the transaction if it is unsuccessful. The calling code must call abortSyncTransaction() to do that.

Timestamps are stored in UTC. Please use QTimeZone::toUtc() for times passed into this function.

See also commitSyncTransaction() and abortSyncTransaction().

bool QPimModel::startTransaction ()

Starts an SQL transaction on the database. Allows for calling multiple functions that may modify the database as an atomic operation.

Note that the database will be locked for the current model only. Do not modify any other PIM model instance until either committing or aborting the transaction.

Returns true if transaction successfully initiated.

See also commitTransaction() and abortTransaction().

bool QPimModel::updateRecord ( const QUniqueId & id, const QByteArray & bytes, const QString & format = QString() )   [pure virtual]

Updates the corresponding record in the model to equal the record encoded in bytes. The format of the record in bytes is given by the format string. An empty format string will cause the record to be read using the data stream operators for the PIM data type of the model. If id is not null will set the record identifier to id ready from the given bytes before attempting to update the record.

Returns true if the record was successfully updated.

See also addRecord() and removeRecord().

QSet<QPimSource> QPimModel::visibleSources () const

Returns the list of sources of record data that is currently shown by the record model.

See also setVisibleSources() and availableSources().

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. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 51
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
  7. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
Page suivante

Le Qt Labs au hasard

Logo

Vue d'ensemble

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. 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 qtextended4.4
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