phoneengine/phoneservices/inc/dialservice.h
changeset 30 ebdbd102c78a
parent 22 6bb1b21d2484
child 51 f39ed5e045e0
equal deleted inserted replaced
27:2f8f8080a020 30:ebdbd102c78a
    37         
    37         
    38         This method makes a cellular switched dial command to
    38         This method makes a cellular switched dial command to
    39         Phone Application. It is intended to be used via Qt Highway.
    39         Phone Application. It is intended to be used via Qt Highway.
    40         
    40         
    41         Usage example:
    41         Usage example:
    42         XQServiceRequest snd("com.nokia.services.telephony","dial(QString)");
    42         XQServiceRequest snd("com.nokia.symbian.ICallDial","dial(QString)");
    43         snd << "0501234567";        
    43         snd << "0501234567";        
    44     */
    44     */
    45     int dial(const QString& number);
    45     int dial(const QString& number);
    46     
    46     
    47     /*!
    47     /*!
    51         Phone Application. It is intended to be used via Qt Highway.
    51         Phone Application. It is intended to be used via Qt Highway.
    52         Caller's name is shown according to the given Phonebook contact
    52         Caller's name is shown according to the given Phonebook contact
    53         identifier.
    53         identifier.
    54         
    54         
    55         Usage example:
    55         Usage example:
    56         XQServiceRequest snd("com.nokia.services.telephony","dial(QString,int)");
    56         XQServiceRequest snd("com.nokia.symbian.ICallDial","dial(QString,int)");
    57         snd << "0501234567" << 123456;        
    57         snd << "0501234567" << 123456;        
    58     */
    58     */
    59     int dial(const QString& number, int contactId);
    59     int dial(const QString& number, int contactId);
    60     
    60     
    61     /*!
    61     /*!
    63         
    63         
    64         This method makes a video call dial command to
    64         This method makes a video call dial command to
    65         Phone Application. It is intended to be used via Qt Highway.
    65         Phone Application. It is intended to be used via Qt Highway.
    66         
    66         
    67         Usage example:
    67         Usage example:
    68         XQServiceRequest snd("com.nokia.services.telephony","dial(QString)");
    68         XQServiceRequest snd("com.nokia.symbian.ICallDial","dial(QString)");
    69         snd << "0501234567";        
    69         snd << "0501234567";        
    70     */
    70     */
    71     void dialVideo(const QString& number);
    71     void dialVideo(const QString& number);
    72 
    72 
    73     /*!
    73     /*!
    77         Phone Application. It is intended to be used via Qt Highway.
    77         Phone Application. It is intended to be used via Qt Highway.
    78         Caller's name is shown according to the given Phonebook contact
    78         Caller's name is shown according to the given Phonebook contact
    79         identifier.
    79         identifier.
    80         
    80         
    81         Usage example:
    81         Usage example:
    82         XQServiceRequest snd("com.nokia.services.telephony","dial(QString,int)");
    82         XQServiceRequest snd("com.nokia.symbian.ICallDial","dial(QString,int)");
    83         snd << "0501234567" << 123456;        
    83         snd << "0501234567" << 123456;        
    84     */
    84     */
    85     void dialVideo(const QString& number, int contactId);
    85     void dialVideo(const QString& number, int contactId);
    86     
    86     
    87     /*!
    87     /*!
    89         
    89         
    90         This method makes a voip call dial command to
    90         This method makes a voip call dial command to
    91         Phone Application. It is intended to be used via Qt Highway.
    91         Phone Application. It is intended to be used via Qt Highway.
    92         
    92         
    93         Usage example:
    93         Usage example:
    94         XQServiceRequest snd("com.nokia.services.telephony","dialVoip(QString)");
    94         XQServiceRequest snd("com.nokia.symbian.ICallDial","dialVoip(QString)");
    95         snd << "address@domain";        
    95         snd << "address@domain";        
    96     */
    96     */
    97     void dialVoip(const QString& address);
    97     void dialVoip(const QString& address);
    98     
    98     
    99     /*!
    99     /*!
   103         Phone Application. It is intended to be used via Qt Highway.
   103         Phone Application. It is intended to be used via Qt Highway.
   104         Caller's name is shown according to the given Phonebook contact
   104         Caller's name is shown according to the given Phonebook contact
   105         identifier.
   105         identifier.
   106         
   106         
   107         Usage example:
   107         Usage example:
   108         XQServiceRequest snd("com.nokia.services.telephony","dialVoip(QString,int)");
   108         XQServiceRequest snd("com.nokia.symbian.ICallDial","dialVoip(QString,int)");
   109         snd << "address@domain" << 123456;        
   109         snd << "address@domain" << 123456;        
   110     */
   110     */
   111     void dialVoip(const QString& address, int contactId);
   111     void dialVoip(const QString& address, int contactId);
   112     
   112     
   113     /*!
   113     /*!
   116         This method makes a voip call dial command to
   116         This method makes a voip call dial command to
   117         Phone Application. It is intended to be used via Qt Highway.
   117         Phone Application. It is intended to be used via Qt Highway.
   118         Call is made by given service (id).
   118         Call is made by given service (id).
   119         
   119         
   120         Usage example:
   120         Usage example:
   121         XQServiceRequest snd("com.nokia.services.telephony","dialVoipService(QString,int)");
   121         XQServiceRequest snd("com.nokia.symbian.ICallDial","dialVoipService(QString,int)");
   122         snd << "address@domain" << 123;        
   122         snd << "address@domain" << 123;        
   123     */
   123     */
   124     void dialVoipService(const QString& address, int serviceId);
   124     void dialVoipService(const QString& address, int serviceId);
   125     
   125     
   126     /*!
   126     /*!
   131         Call is made by given service (id).
   131         Call is made by given service (id).
   132         Caller's name is shown according to the given Phonebook contact
   132         Caller's name is shown according to the given Phonebook contact
   133         identifier.
   133         identifier.
   134         
   134         
   135         Usage example:
   135         Usage example:
   136         XQServiceRequest snd("com.nokia.services.telephony","dialVoipService(QString,int,int)");
   136         XQServiceRequest snd("com.nokia.symbian.ICallDial","dialVoipService(QString,int,int)");
   137         snd << "address@domain" << 123 << 12345;        
   137         snd << "address@domain" << 123 << 12345;        
   138     */
   138     */
   139     void dialVoipService(const QString& address, int serviceId, int contactId);
   139     void dialVoipService(const QString& address, int serviceId, int contactId);
   140     
   140     
   141 private:
   141 private: