The QMessageFolderFilter class defines the parameters used for querying a subset of all available folders from the messaging store. More...
#include <QMessageFolderFilter>
This class was introduced in Qt Mobility 1.0.
QMessageFolderFilter () | |
QMessageFolderFilter ( const QMessageFolderFilter & other ) | |
virtual | ~QMessageFolderFilter () |
bool | isEmpty () const |
bool | isSupported () const |
QMessageDataComparator::MatchFlags | matchFlags () const |
void | setMatchFlags ( QMessageDataComparator::MatchFlags matchFlags ) |
QMessageFolderFilter | operator& ( const QMessageFolderFilter & other ) const |
const QMessageFolderFilter & | operator&= ( const QMessageFolderFilter & other ) |
QMessageFolderFilter | operator| ( const QMessageFolderFilter & other ) const |
const QMessageFolderFilter & | operator|= ( const QMessageFolderFilter & other ) |
QMessageFolderFilter | operator~ () const |
QMessageFolderFilter | byAncestorFolderIds ( const QMessageFolderId & id, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byAncestorFolderIds ( const QMessageFolderFilter & filter, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byId ( const QMessageFolderId & id, QMessageDataComparator::EqualityComparator cmp = QMessageDataComparator::Equal ) |
QMessageFolderFilter | byId ( const QMessageFolderIdList & ids, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byId ( const QMessageFolderFilter & filter, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byName ( const QString & pattern, QMessageDataComparator::LikeComparator cmp ) |
QMessageFolderFilter | byName ( const QString & value, QMessageDataComparator::EqualityComparator cmp ) |
QMessageFolderFilter | byName ( const QString & value, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byParentAccountId ( const QMessageAccountId & id, QMessageDataComparator::EqualityComparator cmp = QMessageDataComparator::Equal ) |
QMessageFolderFilter | byParentAccountId ( const QMessageAccountFilter & filter, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byParentFolderId ( const QMessageFolderId & id, QMessageDataComparator::EqualityComparator cmp = QMessageDataComparator::Equal ) |
QMessageFolderFilter | byParentFolderId ( const QMessageFolderFilter & filter, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
QMessageFolderFilter | byPath ( const QString & pattern, QMessageDataComparator::LikeComparator cmp ) |
QMessageFolderFilter | byPath ( const QString & value, QMessageDataComparator::EqualityComparator cmp ) |
QMessageFolderFilter | byPath ( const QString & value, QMessageDataComparator::InclusionComparator cmp = QMessageDataComparator::Includes ) |
The QMessageFolderFilter class defines the parameters used for querying a subset of all available folders from the messaging store.
A QMessageFolderFilter is composed of a folder property, an optional comparison operator and a comparison value. The QMessageFolderFilter class is used in conjunction with the QMessageManager::queryFolders() and QMessageManager::countFolders() functions to filter results which meet the criteria defined by the filter.
QMessageFolderFilters can be combined using the logical operators (&), (|) and (~) to create more refined queries.
Evaluation of filters is delayed until they are used in a QMessageManager function such as queryFolders, except where explicitly documented otherwise.
See also QMessageManager and QMessageFolder.
Creates a QMessageFolderFilter without specifying matching parameters.
A default-constructed filter (one for which isEmpty() returns true) matches all folders.
See also isEmpty().
Constructs a copy of other.
This function was introduced in Qt Mobility 1.0.
Destroys the filter.
Returns a filter matching folders whose ancestor folders' identifiers contain id, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose ancestor folders' identifiers contain a member of the set yielded by filter, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose identifier matches id, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose identifier is a member of ids, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose identifier is a member of the set yielded by filter, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose display name matches pattern, according to cmp.
This filter is evaluated when it is constructed.
This function was introduced in Qt Mobility 1.2.
See also QMessageFolder::name().
Returns a filter matching folders whose display name matches value, according to cmp.
Not supported on Linux, Harmattan and Meego.com (use InclusionComparator).
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::name().
Returns a filter matching folders whose display name matches the substring value, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::name().
Returns a filter matching folders whose parent account identifier matches id, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageAccount::id().
Returns a filter matching folders whose parent account identifier is a member of the set yielded by filter, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageAccount::id().
Returns a filter matching folders whose parent folder identifier matches id, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose parent folder identifier is a member of the set yielded by filter, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::id().
Returns a filter matching folders whose path matches pattern, according to cmp.
This filter is evaluated when it is constructed.
This function was introduced in Qt Mobility 1.2.
See also QMessageFolder::path().
Returns a filter matching folders whose path matches value, according to cmp.
Not supported on Linux, Harmattan and Meego.com (use InclusionComparator).
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::path().
Returns a filter matching folders whose path matches the substring value, according to cmp.
This function was introduced in Qt Mobility 1.0.
See also QMessageFolder::path().
Returns true if the filter remains empty after default construction; otherwise returns false.
An empty filter matches all folders.
The result of combining an empty filter with a non-empty filter using an AND operation is the original non-empty filter.
The result of combining an empty filter with a non-empty filter using an OR operation is the empty filter.
The result of combining two empty filters is an empty filter.
This function was introduced in Qt Mobility 1.0.
Returns true if the filter is supported on the current platform; otherwise returns false.
This function was introduced in Qt Mobility 1.0.
Return the match flags for the search filter.
Default is no match flags set.
This function was introduced in Qt Mobility 1.0.
See also setMatchFlags().
Set the match flags for the search filter to matchFlags.
This function was introduced in Qt Mobility 1.0.
See also matchFlags().
Returns a filter that is the logical AND of this filter and the value of filter other.
This function was introduced in Qt Mobility 1.0.
Performs a logical AND with this filter and the filter other and assigns the result to this filter.
This function was introduced in Qt Mobility 1.0.
Returns a filter that is the logical OR of this filter and the value of filter other.
This function was introduced in Qt Mobility 1.0.
Performs a logical OR with this filter and the filter other and assigns the result to this filter.
This function was introduced in Qt Mobility 1.0.
Returns a filter that is the logical NOT of the value of this filter (ignoring any matchFlags() set on the filter).
If this filter is empty, the result will be a non-matching filter; if this filter is non-matching, the result will be an empty filter.
This function was introduced in Qt Mobility 1.0.
See also isEmpty().
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.