Open the default Messaging Composer Application: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Sub-categorize)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
=Open the default Messaging Composer Application=
{{LangSwitch}}
[[Category:HowTo]]
[[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.


==Overiew==
== Code Snippet ==


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


==Code Snippet==
Enable messaging at pro file:
<code>
CONFIG += mobility
MOBILITY += messaging
</code>


Include the required headers:<br />
Implementation:
 
<code>
Enable messaging at pro file:<br />
QMessageService pMessageManager = new QMessageService(this);
 
QMessage message;
Implementation:<br />
message.setType(QMessage::Sms);
 
message.setBody("Foo");
===Categories:===
m_pMessageManager->compose(message);
 
</code>
* [[:Category:HowTo|HowTo]]
* [[:Category:snippets|snippets]]

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