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  · 

QOrganizerItemReminder Class Reference

The QOrganizerItemReminder class contains information about when and how the user wants to reminded of the item More...

 #include <QOrganizerItemReminder>

Inherits: QOrganizerItemDetail.

Inherited by: QOrganizerItemAudibleReminder, QOrganizerItemEmailReminder, and QOrganizerItemVisualReminder.

This class was introduced in Qt Mobility 1.1.

Public Types

enum ReminderType { NoReminder, AudibleReminder, VisualReminder, EmailReminder }

Public Functions

ReminderType reminderType () const
int repetitionCount () const
int repetitionDelay () const
int secondsBeforeStart () const
void setRepetition ( int count, int delaySeconds )
void setSecondsBeforeStart ( int seconds )

Static Public Members

const QLatin1Constant DefinitionName
const QLatin1Constant FieldRepetitionCount
const QLatin1Constant FieldRepetitionDelay
const QLatin1Constant FieldSecondsBeforeStart

Protected Functions

QOrganizerItemReminder ( const char * definitionName )
QOrganizerItemReminder ( const QOrganizerItemDetail & detail, const char * definitionName )

Macros

Q_DECLARE_CUSTOM_ORGANIZER_REMINDER_DETAIL

Detailed Description

The QOrganizerItemReminder class contains information about when and how the user wants to reminded of the item

Note that the Organizer API does not enforce that the user is reminded of the item; rather, it simply allows clients to store and manipulate data which might be used by the platform to implement alarms and reminders.

Member Type Documentation

enum QOrganizerItemReminder::ReminderType

ConstantValueDescription
QOrganizerItemReminder::NoReminder0This reminder is entirely unobtrusive
QOrganizerItemReminder::AudibleReminder2This reminder has an audible element
QOrganizerItemReminder::VisualReminder1This reminder has a visual element
QOrganizerItemReminder::EmailReminder3This reminder has a email element

Member Function Documentation

QOrganizerItemReminder::QOrganizerItemReminder ( const char * definitionName ) [protected]

Constructor of a QOrganizerItemReminder object by defining the definitionName.

This function was introduced in Qt Mobility 1.1.

QOrganizerItemReminder::QOrganizerItemReminder ( const QOrganizerItemDetail & detail, const char * definitionName ) [protected]

Constructor of a QOrganizerItemReminder object by defining the detail, and definitionName.

This function was introduced in Qt Mobility 1.1.

ReminderType QOrganizerItemReminder::reminderType () const

Returns the reminder type of this reminder for an organizer item.

This function was introduced in Qt Mobility 1.1.

int QOrganizerItemReminder::repetitionCount () const

Returns the number of times the user should be reminded of the item.

This function was introduced in Qt Mobility 1.1.

See also repetitionDelay().

int QOrganizerItemReminder::repetitionDelay () const

Returns the delay (in seconds) between each repetition of the reminder.

This function was introduced in Qt Mobility 1.1.

See also repetitionCount().

int QOrganizerItemReminder::secondsBeforeStart () const

Returns the number of seconds prior to the activation of the item at which the user wants to be reminded of the item. The exact datetime of activation of the item depends on the type of item: for a QOrganizerTodo or QOrganizerTodoOccurrence it is the due date time; for a QOrganizerEvent or QOrganizerEventOccurrence it is the start date time.

This function was introduced in Qt Mobility 1.1.

See also setSecondsBeforeStart().

void QOrganizerItemReminder::setRepetition ( int count, int delaySeconds )

Sets the number of repetitions of the reminderto count, and the delay (in seconds) between each repetition of the reminder to delaySeconds.

This function was introduced in Qt Mobility 1.1.

See also repetitionCount() and repetitionDelay().

void QOrganizerItemReminder::setSecondsBeforeStart ( int seconds )

Sets the number of seconds prior to the activation of the item at which the user wants to be reminded of the item to seconds. The exact datetime of activation of the item depends on the type of item: for a QOrganizerTodo or QOrganizerTodoOccurrence it is the due date time; for a QOrganizerEvent or QOrganizerEventOccurrence it is the start date time.

Calling this function will clear the absolute date time, if set.

This function was introduced in Qt Mobility 1.1.

See also secondsBeforeStart().

Member Variable Documentation

const QLatin1Constant QOrganizerItemReminder::DefinitionName

The constant string which identifies the definition of details which contain reminder information of an organizer item.

const QLatin1Constant QOrganizerItemReminder::FieldRepetitionCount

The constant key for which the number of repetitions of the reminder is stored in details of the QOrganizerItemReminder type.

const QLatin1Constant QOrganizerItemReminder::FieldRepetitionDelay

The constant key for which the delay (in seconds) between repetitions of the reminder is stored in details of the QOrganizerItemReminder type.

const QLatin1Constant QOrganizerItemReminder::FieldSecondsBeforeStart

The constant key for which time delta (in seconds prior to the item activation time) at which the user should be reminded of the item is stored in details of the QOrganizerItemReminder type.

Macro Documentation

Q_DECLARE_CUSTOM_ORGANIZER_REMINDER_DETAIL

Macro for simplifying declaring custom (leaf) reminder detail classes.

The first argument is the name of the class, and the second argument is a Latin-1 string literal naming the detail type, and the third argument is the reminder type of the leaf reminder detail class.

If you are creating a convenience class for a type of QOrganizerItemReminder, you should use this macro when declaring your class to ensure that it interoperates with other organizer item functionality.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 26
  2. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 60
  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. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  6. 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
  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 97
  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 ? 50
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 26
  5. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 57
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
Page suivante

Le Qt Labs au hasard

Logo

Qt et Box2D c'est facile

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 qtmobility-1.2
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