How to use Messaging Filter in QML
hamishwillee
(Talk | contribs) m (Text replace - "<code cpp>" to "<code cpp-qt>") |
hamishwillee
(Talk | contribs) m (Hamishwillee -) |
||
| Line 1: | Line 1: | ||
| − | [[Category:Qt Mobility]][[Category:Qt Quick]][[Category:Symbian]][[Category:MeeGo Harmattan]][[Category:Messaging]] | + | [[Category:Qt Mobility]][[Category:Qt Quick]][[Category:Symbian]][[Category:MeeGo Harmattan]][[Category:Messaging]][[Category:Qt]] |
{{Abstract|This article explains how to use Messaging Filter in QML. }} | {{Abstract|This article explains how to use Messaging Filter in QML. }} | ||
{{ArticleMetaData <!-- v1.2 --> | {{ArticleMetaData <!-- v1.2 --> | ||
Latest revision as of 01:59, 18 October 2012
This article explains how to use Messaging Filter in QML.
Article Metadata
Code Example
Source file: File:MessageFilter.zip
Tested with
SDK: Qt SDK 1.2
Devices(s): Nokia 6-01 , Belle
Compatibility
Platform(s): Symbian^3
Device(s): All*
Platform Security
Capabilities: NetworkServices ReadUserData WriteUserData
Article
Keywords: MessageModel
Created: Devnull
(07 Mar 2012)
Last edited: hamishwillee
(18 Oct 2012)
Introduction
Qt mobility messaging when used with Qt Quick, involves the component of MessageModel. Due to a bug in the implementation, standard folders enums are not exposed to QML:
enum StandardFolder {
InboxFolder = QMessage::InboxFolder,
DraftsFolder = QMessage::DraftsFolder,
OutboxFolder = QMessage::OutboxFolder,
SentFolder = QMessage::SentFolder,
TrashFolder = QMessage::TrashFolder
}
To add folder filters, one have to use the values by hand:
MessageFilter {
type: MessageFilter.StandardFolder
value: 4 //MessageFilter.SentFolder
comparator: MessageFilter.Equal
}

