Send MMS using Qt Mobility
somnathbanik
(Talk | contribs) m |
hamishwillee
(Talk | contribs) m (Text replace - "<code cpp>" to "<code cpp-qt>") |
||
| (4 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| + | {{ArticleMetaData <!-- v1.2 --> | ||
| + | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Qt SDK 1.1.4]) --> | ||
| + | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20100328 | ||
| + | |author= [[User:Skumar rao]] | ||
| + | }} | ||
[[Category:Messaging]][[Category:Qt Mobility]] | [[Category:Messaging]][[Category:Qt Mobility]] | ||
{|style="background:#eceff2" width="660px" border="1" cellpadding="5" cellspacing="0" | {|style="background:#eceff2" width="660px" border="1" cellpadding="5" cellspacing="0" | ||
| Line 31: | Line 53: | ||
== Header File == | == Header File == | ||
| − | <code cpp> | + | <code cpp-qt> |
#include <qmessage.h> | #include <qmessage.h> | ||
#include <qmessageservice.h> | #include <qmessageservice.h> | ||
| Line 45: | Line 67: | ||
== Source File == | == Source File == | ||
| − | <code cpp> | + | <code cpp-qt> |
m_service = new QMessageService(this); | m_service = new QMessageService(this); | ||
connect(m_service, SIGNAL(stateChanged(QMessageService::State)), this, SLOT(stateChanged(QMessageService::State))); | connect(m_service, SIGNAL(stateChanged(QMessageService::State)), this, SLOT(stateChanged(QMessageService::State))); | ||
</code> | </code> | ||
| − | <code cpp> | + | <code cpp-qt> |
bool QtMMS::sendMMS(QString picturePath, QString phoneNumber) { | bool QtMMS::sendMMS(QString picturePath, QString phoneNumber) { | ||
// Send MMS | // Send MMS | ||
| Line 65: | Line 87: | ||
</code> | </code> | ||
| − | <code cpp> | + | <code cpp-qt> |
void QtMMS::stateChanged(QMessageService::State error) { | void QtMMS::stateChanged(QMessageService::State error) { | ||
if (error == QMessageService::FinishedState) { | if (error == QMessageService::FinishedState) { | ||
| Line 80: | Line 102: | ||
== Reference links== | == Reference links== | ||
| − | * [[Read and | + | * [[Read and send SMS messages using the Qt Messaging API]] |
| − | * [[Delete messages using Qt Mobility API | + | * [[Delete messages using Qt Mobility API]] |
* [http://qt.nokia.com/ Qt - cross-platform application and UI framework] | * [http://qt.nokia.com/ Qt - cross-platform application and UI framework] | ||
* [http://labs.trolltech.com/page/Projects/QtMobility Qt Mobility API] | * [http://labs.trolltech.com/page/Projects/QtMobility Qt Mobility API] | ||
| − | * [http://qt.nokia.com/developer/ | + | * [http://qt.nokia.com/developer/qt-roadmap New Qt APIs Beta - Mobility Project] |
* SDK help | * SDK help | ||
| − | --[[User:Skumar rao|Skumar rao]] 09:10, 28 March 2010 (UTC) | + | --[[User:Skumar rao|Skumar rao]] 09:10, 28 March 2010 (UTC)[[Category:MeeGo Harmattan]] [[Category:Symbian]] |
Latest revision as of 04:23, 11 October 2012
Article Metadata
| ID | Creation date | 28th Mar 2010 | |
| Platform | S60 5th Edition | Tested on devices | Nokia N97 Mini |
| Category | Qt | Subcategory | Qt Mobility API |
| Keywords (APIs, classes, methods, functions): QMessageService |
Contents |
Overview
This article demonstrate how to send MMS using Qt Mobility messaging API
Project configuration file (.Pro file)
- Add the Qt Mobility project configuration option in the .Pro file as shown below
CONFIG += mobility
MOBILITY += messaging
Header File
Source File
m_service = new QMessageService(this);
connect(m_service, SIGNAL(stateChanged(QMessageService::State)), this, SLOT(stateChanged(QMessageService::State)));
bool QtMMS::sendMMS(QString picturePath, QString phoneNumber) {
// Send MMS
QMessage message;
message.setType(QMessage::Mms);
message.setTo(QMessageAddress(QMessageAddress::Phone, phoneNumber));
QStringList paths;
paths << picturePath;
message.appendAttachments(paths);
return m_service->send(message);
}
void QtMMS::stateChanged(QMessageService::State error) {
if (error == QMessageService::FinishedState) {
QMessageBox::information(this, "MMS", "Message sent");
}
else if (error == QMessageService::CanceledState) {
QMessageBox::warning(this, "MMS", "Sending message failed");
}
}
Classes
- QMessageService
Reference links
- Read and send SMS messages using the Qt Messaging API
- Delete messages using Qt Mobility API
- Qt - cross-platform application and UI framework
- Qt Mobility API
- New Qt APIs Beta - Mobility Project
- SDK help
--skumar_rao 09:10, 28 March 2010 (UTC)

