Open the default Messaging Composer Application

From Qt Wiki
Revision as of 14:47, 24 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search


[toc align_right="yes" depth="2"]

Open the default Messaging Composer Application

Overiew

The following code snippet shows how to open the default messaging composer application of the platform (Symbian, MeeGo Harmattan, Maemo, etc.) using method "compose":http://doc.trolltech.com/qtmobility-1.2/qmessageservice.html#compose of class "QMessageService":http://doc.trolltech.com/qtmobility-1.2/qmessageservice.html of Qt Mobility. The example loads SMS that is waiting to be edited and sent by the user.

Code Snippet

Include the required headers:

<br />#include <QMessageService><br />#include <QMessage><br />

Enable messaging at pro file:

<br />CONFIG ''= mobility<br />MOBILITY''= messaging<br />

Implementation:

QMessageService pMessageManager = new QMessageService(this);
QMessage message;
message.setType(QMessage::Sms);
message.setBody("Foo");
m_pMessageManager->compose(message);