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  · 

QAbstractCallPolicyManager Class Reference
[QtTelephonyModule]

The QAbstractCallPolicyManager class provides an interface for the management of calls across multiple call types. More...

    #include <QAbstractCallPolicyManager>

Inherits QObject.

Inherited by AsteriskManager, CellModemManager, JabberManager, and VoIPManager.

Public Types

  • enum CallHandling { CannotHandle, CanHandle, MustHandle, NeverHandle }

Public Functions

  • 29 public functions inherited from QObject

Signals

Static Public Members

  • 4 static public members inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 public type inherited from QObject
  • 7 protected functions inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

The QAbstractCallPolicyManager class provides an interface for the management of calls across multiple call types.

When the user enters a number or URI to be dialed, or selects one from their list of contacts, Qt Extended needs to decide how to place and manage the call. This decision can be quite complex when multiple call types (e.g. GSM and VoIP) are registered with the system. Some examples are:

  • Emergency numbers such as 112 and 911 must be placed via a cellular network because VoIP network typically won't have the facility.
  • Ordinary numbers could be placed via either GSM or VoIP, if the user's configured VoIP server can carry PSTN traffic, and the user is in range of a VoIP-capable access point.
  • If the "number" is actually a SIP URI, it can only be placed via VoIP.

The purpose of the QAbstractCallPolicyManager class is to allow these decisions to be separated from the core Qt Extended code, and to ease the integration of new call types in the future.

This class is part of the Qt Extended server and cannot be used by other Qt Extended applications.

See also CellModemManager and VoIPManager.


Member Type Documentation

enum QAbstractCallPolicyManager::CallHandling

This enum defines how to handle a call that is about to be placed, based on the number to be dialed.

ConstantValueDescription
QAbstractCallPolicyManager::CannotHandle0The number cannot be handled by this policy manager at all, or network registration is not available so it cannot be handled at this time.
QAbstractCallPolicyManager::CanHandle1The call can be handled by this policy manager. If multiple policy managers return this value, the user will be given a choice of call types before the call is placed.
QAbstractCallPolicyManager::MustHandle2The call must be handled by this policy manager, and all other policy managers that return CanHandle should be ignored. This is typically used for emergency calls that must be placed via a specific network (e.g. GSM). It could also be returned if the user has configured a specific policy manager as their preferred call type.
QAbstractCallPolicyManager::NeverHandle3The call must never be handled by any policy manager. The call will be rejected. This is typically used for emergency calls when the device is in airplane mode. The policy manager would normally return MustHandle, but cannot right now.


Member Function Documentation

QAbstractCallPolicyManager::QAbstractCallPolicyManager ( QObject * parent = 0 )

Create a new call policy manager and attach it to parent.

QString QAbstractCallPolicyManager::callType () const   [pure virtual]

Returns the call type that will be used to create the QPhoneCall object with QPhoneCallManager::create().

See also trCallType() and callTypeIcon().

QString QAbstractCallPolicyManager::callTypeIcon () const   [pure virtual]

Returns the icon to display to indicate the call type. This is typically displayed next to the trCallType() text.

See also callType() and trCallType().

bool QAbstractCallPolicyManager::doDnd ()   [pure virtual]

Toggles the status between Do not disturb and normal status. Returns true if Do Not Disturb state is activated, otherwise returns false.

QAbstractCallPolicyManager::CallHandling QAbstractCallPolicyManager::handling ( const QString & number )   [pure virtual]

Determine how to handle calls to number.

bool QAbstractCallPolicyManager::isAvailable ( const QString & number )   [pure virtual]

If the call policy manager supports presence, determine if the party at number is currently available. If the call policy manager does not support presence, this function should always return true.

QAbstractCallPolicyManager * QAbstractCallPolicyManager::managerForCallType ( const QString & type )   [static]

Returns a reference to the call policy manager that handles call of type; otherwise returns 0.

    QString t = "Voice";
    QAbstractCallPolicyManager* m = QAbstractCallPolicyManager::managerforCallType( t );
    if (m) {
        Q_ASSERT(m->calltype() == "Voice");
    }

void QAbstractCallPolicyManager::registrationChanged ( QTelephony::RegistrationState state )   [signal]

Signal that is emitted when the registration state of the telephony service being used by this call policy manager changes.

See also registrationState(), registrationMessage(), and registrationIcon().

QString QAbstractCallPolicyManager::registrationIcon () const   [pure virtual]

Returns the name of an icon to display next to the registrationMessage(), or an empty QString for no icon.

See also registrationChanged(), registrationState(), and registrationMessage().

QString QAbstractCallPolicyManager::registrationMessage () const   [pure virtual]

Returns a human-readable message to be displayed to indicate the current registration state of the telephony service being used by this call policy manager. This function is called whenever the registration state changes.

Returns an empty QString if the call policy manager does not wish to have a message displayed. Messages are normally only displayed if the registration is not present, or the telephony service is searching for a new network to register to. Once successfully registered, the returned message should be empty.

See also registrationChanged(), registrationState(), and registrationIcon().

QTelephony::RegistrationState QAbstractCallPolicyManager::registrationState () const   [pure virtual]

Returns the current registration state of the telephony service being used by this call policy manager.

See also registrationChanged(), registrationMessage(), and registrationIcon().

void QAbstractCallPolicyManager::setCellLocation ( const QString & location )   [pure virtual]

Sets the current cell location to location.

bool QAbstractCallPolicyManager::supportsPresence () const   [pure virtual]

Returns true if the policy manager supports presence.

QString QAbstractCallPolicyManager::trCallType () const   [pure virtual]

Returns the translated, human-readable, version of the call type.

See also callType() and callTypeIcon().

void QAbstractCallPolicyManager::updateOnThePhonePresence ( bool isOnThePhone )   [pure virtual]

If isOnThePhone is true, updates the local presence to away. Otherwise updates the local presence to online. If the call policy manager does not support presence, this function should do nothing.

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 ? 72
  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

Le moteur de rendu OpenGL

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