Message receive notification using Qt Mobility
somnathbanik
(Talk | contribs) |
hamishwillee
(Talk | contribs) m (Hamishwillee -) |
||
| (8 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Qt Mobility]] | + | [[Category:Qt Mobility]][[Category:Messaging]][[Category:MeeGo Harmattan]][[Category:Symbian]][[Category:Qt]] |
| − | {| | + | {{ArticleMetaData |
| − | |- | + | |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=Nokia N97 Mini | |
| − | |- | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | | | + | |platform=S60 5th Edition |
| − | | | + | |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=QMessageStore |
| − | | | + | |id= <!-- Article Id (Knowledge base articles only) --> |
| − | + | |language=<!-- Language category code for non-English topics - e.g. Lang-Chinese --> | |
| − | + | |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=20100315 |
| − | + | |author=[[User:Skumar rao]] | |
| − | + | }} | |
| − | + | {{Abstract| This article demonstrates how to query messages from the system, how to get notifications of when messages are added or updated.}} Circle through all messages including SMS, MMS and Email from device | |
| − | + | ||
| − | {{Abstract| This article demonstrates how to query messages from the system, how to get notifications of when messages are added or updated}} | + | |
| − | Circle through all messages including SMS, MMS and Email from device | + | |
| − | + | ||
| − | + | ||
| − | + | ||
== Project configuration file (.Pro file) == | == Project configuration file (.Pro file) == | ||
* Add the Qt Mobility project configuration option in the .Pro file as shown below | * Add the Qt Mobility project configuration option in the .Pro file as shown below | ||
| Line 35: | Line 29: | ||
== Header File == | == Header File == | ||
| − | <code cpp> | + | <code cpp-qt> |
#include <qtmessaging.h> | #include <qtmessaging.h> | ||
| Line 48: | Line 42: | ||
== Source File == | == Source File == | ||
| − | <code cpp> | + | <code cpp-qt> |
void send_notification::initialization() { | void send_notification::initialization() { | ||
msgStore = QMessageStore::instance(); | msgStore = QMessageStore::instance(); | ||
| Line 88: | Line 82: | ||
* [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]] 02:40, 16 March 2010 (UTC) | --[[User:Skumar rao|Skumar rao]] 02:40, 16 March 2010 (UTC) | ||
Latest revision as of 01:59, 18 October 2012
Article Metadata
Tested with
Devices(s): Nokia N97 Mini
Compatibility
Platform(s): S60 5th Edition
Article
Keywords: QMessageStore
Created: skumar_rao
(15 Mar 2010)
Last edited: hamishwillee
(18 Oct 2012)
This article demonstrates how to query messages from the system, how to get notifications of when messages are added or updated. Circle through all messages including SMS, MMS and Email from device
Contents |
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
#include <qtmessaging.h>
private slots:
void messageAdded(const QMessageId &id, const QMessageStore::NotificationFilterIdSet &matchingFilterIds);
private:
QMessageStore* msgStore;
QMessageFilter msgFilter;
QMessageStore::NotificationFilterId msgFilterId;
Source File
void send_notification::initialization() {
msgStore = QMessageStore::instance();
QMessageFolderFilter folderFilter(QMessageFolderFilter::byDisplayName("Inbox"));
msgFilter = QMessageFilter::byParentFolderId(folderFilter);
}
void send_notification::register_to_receive_msgs() {
msgFilterId = msgStore->registerNotificationFilter(msgFilter);
connect(msgStore, SIGNAL(messageUpdated(QMessageId, QMessageStore::NotificationFilterIdSet)), this, SLOT(messageAdded(QMessageId, QMessageStore::NotificationFilterIdSet)));
}
void send_notification::deregister_to_receive_msgs() {
msgStore->unregisterNotificationFilter(msgFilterId);
disconnect(msgStore, SIGNAL(messageAdded(QMessageId, QMessageStore::NotificationFilterIdSet)), this, SLOT(messageAdded(QMessageId, QMessageStore::NotificationFilterIdSet)));
}
void send_notification::messageAdded(const QMessageId &id, const QMessageStore::NotificationFilterIdSet &matchingFilterIds) {
if(id.isValid()) {
QMessage msgReceived(id);
QMessageContentContainer bodyPart = msgReceived.find(msgReceived.bodyId());
// bodyPart.isContentAvailable() : returns true if there is message body
QString bodyText = bodyPart.textContent();
QString msgSender = msgReceived.from().recipient();
}
else {
// Ignore this state
}
}
Classes
- QMessageStore
- QMessageFilter
- QMessageStore::NotificationFilterId
- QMessage
Reference links
- Qt - cross-platform application and UI framework
- Qt Mobility API
- New Qt APIs Beta - Mobility Project
- SDK help
--skumar_rao 02:40, 16 March 2010 (UTC)

