Open the default Messaging Composer Application: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Sub-categorize)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
{{LangSwitch}}
 
[[Category:HowTo]]
[[Category:HowTo]]
[[Category:snippets]]
[[Category:Snippets::Misc]]
 
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.
[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 ==
== Code Snippet ==
Line 22: Line 14:
Enable messaging at pro file:
Enable messaging at pro file:
<code>
<code>
CONFIG ''= mobility
CONFIG += mobility
MOBILITY''= messaging
MOBILITY += messaging
</code>
</code>


Line 33: Line 25:
message.setBody("Foo");
message.setBody("Foo");
m_pMessageManager->compose(message);
m_pMessageManager->compose(message);
</code>

Latest revision as of 11:59, 28 November 2016

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);