Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Open the default Messaging Composer Application: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:HowTo]] | [[Category:HowTo]] | ||
[[Category:snippets]] | |||
[toc align_right="yes" depth="2"] | [toc align_right="yes" depth="2"] | ||
Line 11: | Line 12: | ||
== Code Snippet == | == Code Snippet == | ||
Include the required headers: | Include the required headers: | ||
<code> | |||
#include <QMessageService> | |||
#include <QMessage> | |||
</code> | |||
Enable messaging at pro file: | Enable messaging at pro file: | ||
<code> | |||
CONFIG ''= mobility | |||
MOBILITY''= messaging | |||
</code> | |||
Implementation: | Implementation: | ||
<code> | |||
QMessageService pMessageManager = new QMessageService(this); | |||
QMessage message; | |||
message.setType(QMessage::Sms); | |||
message.setBody("Foo"); | |||
m_pMessageManager->compose(message); |
Revision as of 11:52, 25 February 2015
[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:
#include <QMessageService>
#include <QMessage>
Enable messaging at pro file:
CONFIG ''= mobility
MOBILITY''= messaging
Implementation:
QMessageService pMessageManager = new QMessageService(this);
QMessage message;
message.setType(QMessage::Sms);
message.setBody("Foo");
m_pMessageManager->compose(message);