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
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Remove non-functioning "toc" command) |
(Cleanup) |
||
Line 1: | Line 1: | ||
{{ | {{LangSwitch}} | ||
[[Category:HowTo]] | [[Category:HowTo]] | ||
[[Category:snippets]] | [[Category:snippets]] | ||
The following code snippet shows how to open the default messaging composer application of the platform using {{DocLink|QMessageService}} of Qt Mobility. The example loads SMS that is waiting to be edited and sent by the user. | |||
The following code snippet shows how to open the default messaging composer application of the platform | |||
== Code Snippet == | == Code Snippet == | ||
Line 21: | Line 14: | ||
Enable messaging at pro file: | Enable messaging at pro file: | ||
<code> | <code> | ||
CONFIG | CONFIG += mobility | ||
MOBILITY | MOBILITY += messaging | ||
</code> | </code> | ||
Line 32: | Line 25: | ||
message.setBody("Foo"); | message.setBody("Foo"); | ||
m_pMessageManager->compose(message); | m_pMessageManager->compose(message); | ||
</code> |
Revision as of 21:07, 28 June 2015
En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh
The following code snippet shows how to open the default messaging composer application of the platform using QMessageService 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);