How to use Messaging Filter in QML
(Devnull -) |
(Devnull -) |
||
| Line 1: | Line 1: | ||
[[Category:Qt Mobility]][[Category:Qt Quick]] | [[Category:Qt Mobility]][[Category:Qt Quick]] | ||
| − | |||
| − | {{Abstract|This article explains how to use Messaging Filter in QML ... }} | + | {{Abstract|This article explains how to use Messaging Filter in QML ... }} |
''Enter article metadata as described below. Note that this template can be placed anywhere in the article. Do not remove parameters that you do not use'' | ''Enter article metadata as described below. Note that this template can be placed anywhere in the article. Do not remove parameters that you do not use'' | ||
| Line 30: | Line 29: | ||
== Introduction == | == Introduction == | ||
| − | Qt mobility messaging when used | + | Qt mobility messaging when used with Qt quick, involves the component of MessageModel. Due to a [https://bugreports.qt-project.org/browse/QTMOBILITY-2037 bug] in the implementation, standard folders enums are not exposed to QML: |
<code cpp> | <code cpp> | ||
Revision as of 16:48, 7 March 2012
This article explains how to use Messaging Filter in QML ...
Enter article metadata as described below. Note that this template can be placed anywhere in the article. Do not remove parameters that you do not use
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: ()
Last edited: Devnull
(07 Mar 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
}

