MessagingThe Qt Messaging API enables access to messaging services to search and sort messages, send messages, retrieve message data, and launch the preferred messaging client on the system to either display an existing message, compose a new message, or respond to an existing message. NamespaceThe QtMobility APIs are placed into the QtMobility namespace. This is done to facilitate the future migration of Mobility APIs into Qt. See the Quickstart guide for an example on how the namespace impacts on application development. OverviewThe messaging library provides a set of APIs for accessing messaging data. Interfaces are provided to retrieve and query messages, folders and accounts, also interfaces to create, modify, and store messages are provided. A unified interface for manipulation and storage of SMS, MMS, MIME Email and TNEF Email messages is provided. Handling of messages that have only been partially retrieved is supported. An API to access messaging services to send messages and retrieve message data is provided, as well as messaging services to compose, reply to, forward and show messages using a native application. Notifications of addition, removal and updating of stored messages can be enabled. The library provides unified access to the messaging data on a device including concurrent access to messaging data by multiple applications, and independence from the mechanism used to store the messaging data on the device. On Microsoft Windows, MAPI header files are required to be installed, we recommend installing Visual Studio Express for this purpose. On Linux QMF 2010W41 or newer is required to be installed and the QMF_INCLUDEDIR and QMF_LIBDIR environment variables set to the messagingframework/src/libraries/qmfclient and build/messagingframework/image/lib directories respectively. Reference documentationMain classes
Composition and Manipulation of MessagesThe library provides a number of classes to assist with the composition and manipulation of message data. Messages of all supported types are represented uniformly. Messages can be composed of multiple parts. Classes to assist with composition and manipulation of messages:
Message AccountsThe library provides classes for accessing information about messaging accounts both outgoing and incoming. Classes relating to messaging accounts:
Sorting and Filtering FunctionalityThe library provides a number of sort and filter functions to aid in selecting a useful view of data. This reduces the burden on the client of the library for managing the messaging data, as well as allowing better use of the underlying storage mechanism. Sorting is accomplished by providing a sorting object, specifying the sort order, and the message property upon which to order. Filtering is accomplished by providing a filtering condition, specifying a value, the property to match, and the desired relation between the value and the property. Filters can be combined using boolean operators to produce filters of arbitrary complexity. Classes to assist with sorting and filtering messages:
Using the Ordering FunctionsAn example of the use of Ordering functions can be found in the Send Message example. QMessageIdList ids = QMessageManager().queryMessages(QMessageFilter(), QMessageSortOrder::byReceptionTimeStamp(Qt::DescendingOrder), 100, 0); Using the Filter FunctionsThe following code is taken from the Keep In Touch example, it demonstrates the use of filters to achieve desired effects. You can also see how the filters once constructed can be operated on by typical boolean operators, in the same way you would manipulate bit settings in C. In this way we can build more complex conditions. QMessageFilter includeFilter(QMessageFilter::byTimeStamp(minimumDate, QMessageDataComparator::GreaterThanEqual)); QMessageFilter excludeFilter(QMessageFilter::byTimeStamp(maximumDate, QMessageDataComparator::GreaterThanEqual)); QMessageFilter outgoingFilter(QMessageFilter::byStatus(QMessage::Incoming, QMessageDataComparator::Excludes)); // Search for messages containing addresses to exclude service.queryMessages(outgoingFilter & excludeFilter); // Create the filter needed to locate messages to search for addresses inclusionFilter = (outgoingFilter & includeFilter & ~excludeFilter); Messaging ServicesThe library provides the QMessageService class, which provides an interface to communicate with the system's native messaging services, including sending messages, retrieving message data, and composing or showing a message using a native application. Service actions communciate their operational status by emitting signals. Functions outside the QMessageService class should not invoke network activity. That is, only QMessageService functions should be responsible for initiating network activity (Note: this is not true for the Windows desktop and mobile platforms, where network activity can occur outside the client's control). Concurrent Access to Messaging DataThe library provides a level of concurrent access to messaging data by multiple clients. The concurrent access does guarantee that data won't be corrupted by concurrent access, however it does not give any guarantees as to performance of messaging data access if accessed concurrently by multiple clients. A single client may access the messaging data from multiple threads, but only one thread may access the data concurrently. Abstraction of Messaging Data Storage MechanismThe library abstracts the storage method used to store messaging data. QML Messaging ElementsExamplesKeep In TouchThe Keep In Touch example shows how to extract useful information from the messages stored by the system. Service ActionsThe Service Actions example is a program to demonstrate how to compose, send, show, query and retrieve messages, and also react to message store events using the Qt Mobility Messaging API. X
|