/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Mobility Components. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QMESSAGINGMAEMOHELPERPRIVATE_H #define QMESSAGINGMAEMOHELPERPRIVATE_H #include #include #include #include #include #include #include QTM_BEGIN_NAMESPACE class QMessageAccountFilter; class QMessageAccountSortOrder; class QMessageFolderFilter; class QMessageFolderSortOrder; class QMessageFilter; class QMessageSortOrder; class MessagingHelper { public: static MessagingHelper* instance(); MessagingHelper(); ~MessagingHelper(); static void filterAccounts(QMessageAccountIdList& accountIds, const QMessageAccountFilter& filter); static void orderAccounts(QMessageAccountIdList& accountIds, const QMessageAccountSortOrder &sortOrder); static void applyOffsetAndLimitToAccountIdList(QMessageAccountIdList& accountIds, int limit, int offset); static void filterFolders(QMessageFolderIdList& folderIds, const QMessageFolderFilter& filter); static void orderFolders(QMessageFolderIdList& folderIds, const QMessageFolderSortOrder &sortOrder); static void applyOffsetAndLimitToFolderIdList(QMessageFolderIdList& folderIds, int limit, int offset); static void filterMessages(QMessageIdList& messageIds, const QMessageFilter& filter); static void orderMessages(QMessageIdList& messageIds, const QMessageSortOrder &sortOrder); static void applyOffsetAndLimitToMessageIdList(QMessageIdList& messageIds, int limit, int offset); static void handleNestedFiltersFromFolderFilter(QMessageFolderFilter &filter); static void handleNestedFiltersFromMessageFilter(QMessageFilter &filter); static QString addressListToString(const QMessageAddressList &alist); static QMessageAddressList stringToAddressList(const QString &astring); static QStringList stringListFromAddressList(const QMessageAddressList &alist); private: static bool accountLessThan(const QMessageAccountId accountId1, const QMessageAccountId accountId2); static bool folderLessThan(const QMessageFolderId folderId1, const QMessageFolderId folderId2); static bool messageLessThan(const QMessageId messageId1, const QMessageId messageId2); private: QMessageAccountSortOrder* m_AccountSortOrder; QMessageFolderSortOrder* m_FolderSortOrder; QMessageSortOrder* m_MessageSortOrder; }; QTM_END_NAMESPACE #endif // QMESSAGINGMAEMOHELPERPRIVATE_H