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  · 

QModemCall Class Reference
[QtCellModule]

The QModemCall class implements phone call functionality for AT-based modems. More...

    #include <QModemCall>

Inherits QPhoneCallImpl.

Inherited by QModemDataCall.

Public Functions

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 4 signals inherited from QPhoneCallImpl
  • 1 signal inherited from QObject
  • 1 public type inherited from QObject
  • 4 static public members inherited from QObject
  • 7 protected functions inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

The QModemCall class implements phone call functionality for AT-based modems.

QModemCall inherits from QPhoneCallImpl to provide the back end server infrastructure for QPhoneCall.

Client applications should use QPhoneCall and QPhoneCallManager to make and receive phone calls. The QModemCall class is intended for the server-side modem telephony service.

QModemCall instances are created by the QModemCallProvider::create() function. If a modem vendor plug-in needs to change some of the functionality in this class, they should do the following:

The following example demonstrates overriding the hold() method to use a proprietary modem command instead of the standard AT+CHLD=2:

    class MyModemCall : public QModemCall
    {
        Q_OBJECT
    public:
        MyModemCall( QModemCallProvider *provider,
                     const QString& identifier,
                     const QString& callType )
            : QModemCall( provider, identifier, callType ) {}

        void hold();
    }

    void MyModemCall::hold()
    {
        if ( state() == QPhoneCall::Connected ) {
            provider()->atchat()->chat( "AT*XHLD=2" );
            setActions( QPhoneCallImpl::ActivateCall );
            setState( QPhoneCall::Hold );
        }
    }

For voice calls, there is an alternative way to modify the AT commands that correspond to voice call operations. Methods in QModemCallProvider() such as QModemCallProvider::dialVoiceCommand(), QModemCallProvider::putOnHoldCommand(), etc. can be overridden to change just the AT command without modifying the rest of the logic in QModemCall. This will usually be an easier way to modify the AT commands than inheriting from QModemCall.

See also QPhoneCallImpl, QPhoneCall, QModemDataCall, and QModemCallProvider.


Member Function Documentation

QModemCall::QModemCall ( QModemCallProvider * provider, const QString & identifier, const QString & callType )

Constructs a new modem call that is attached to provider and is associated with a globally-unique identifier. The callType specifies the type of call (Voice, Data, Fax, etc).

This constructor is called from QModemCallProvider::create() or from a subclass implementation that overrides QModemCallProvider::create().

QModemCall::~QModemCall ()

Destroys this modem call object.

uint QModemCall::modemIdentifier () const

Returns the modem identifier associated with this call. Modem identifiers are used with commands like AT+CHLD to identify specific calls. Returns zero if the modem identifier has not been assigned yet.

See also setModemIdentifier() and QPhoneCall::modemIdentifier().

QModemCallProvider * QModemCall::provider () const

Returns the QModemCallProvider instance associated with this call object.

void QModemCall::setConnected ()

Called by modem vendor plug-ins to indicate that a call has transitioned from Dialing or Alerting to Connected.

The QModemCall class adjusts the call's state() and actions() appropriately and emits the relevant signals. The state() and actions() on other calls may also be affected, indicating new actions that can be taken now that there are several calls in the system.

See also state() and actions().

void QModemCall::setModemIdentifier ( uint id )

Sets the modem identifier associated with this call to id. The QModemCallProvider::nextModemIdentifier() function can be used to assign the next call identifier in rotation.

See also modemIdentifier() and QPhoneCall::modemIdentifier().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 53
  2. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  3. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. 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