/**************************************************************************** ** ** Copyright (C) 2013 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 QMAILID_H #define QMAILID_H #include "qmailglobal.h" #include "qmailipc.h" #include "qmailfolderfwd.h" #include #include #include #include class MailIdPrivate; class QTOPIAMAIL_EXPORT MailId { private: friend class QMailAccountId; friend class QMailFolderId; friend class QMailMessageId; explicit MailId(quint64 value); QSharedDataPointer d; public: MailId(); MailId(const MailId& other); virtual ~MailId(); MailId& operator=(const MailId& other); bool isValid() const; quint64 toULongLong() const; bool operator!=(const MailId& other) const; bool operator==(const MailId& other) const; bool operator<(const MailId& other) const; template void serialize(Stream &stream) const; template void deserialize(Stream &stream); }; class QTOPIAMAIL_EXPORT QMailAccountId : private MailId { public: QMailAccountId(); explicit QMailAccountId(quint64 value); QMailAccountId(const QMailAccountId& other); virtual ~QMailAccountId(); QMailAccountId& operator=(const QMailAccountId& other); bool isValid() const; quint64 toULongLong() const; operator QVariant() const; bool operator!=(const QMailAccountId& other) const; bool operator==(const QMailAccountId& other) const; bool operator<(const QMailAccountId& other) const; template void serialize(Stream &stream) const; template void deserialize(Stream &stream); friend QTOPIAMAIL_EXPORT QDebug& operator<<(QDebug&, const QMailAccountId&); friend QTOPIAMAIL_EXPORT QTextStream& operator <<(QTextStream&, const QMailAccountId&); }; class QTOPIAMAIL_EXPORT QMailFolderId : private MailId { public: QMailFolderId(); QMailFolderId(QMailFolderFwd::PredefinedFolderId id); explicit QMailFolderId(quint64 value); QMailFolderId(const QMailFolderId& other); virtual ~QMailFolderId(); QMailFolderId& operator=(const QMailFolderId& other); bool isValid() const; quint64 toULongLong() const; operator QVariant() const; bool operator!=(const QMailFolderId& other) const; bool operator==(const QMailFolderId& other) const; bool operator<(const QMailFolderId& other) const; template void serialize(Stream &stream) const; template void deserialize(Stream &stream); friend QTOPIAMAIL_EXPORT QDebug& operator<<(QDebug&, const QMailFolderId&); friend QTOPIAMAIL_EXPORT QTextStream& operator<<(QTextStream&, const QMailFolderId&); }; class QTOPIAMAIL_EXPORT QMailMessageId : private MailId { public: QMailMessageId(); explicit QMailMessageId(quint64 value); QMailMessageId(const QMailMessageId& other); virtual ~QMailMessageId(); QMailMessageId& operator=(const QMailMessageId& other); bool isValid() const; quint64 toULongLong() const; operator QVariant() const; bool operator!=(const QMailMessageId& other) const; bool operator==(const QMailMessageId& other) const; bool operator<(const QMailMessageId& other) const; template void serialize(Stream &stream) const; template void deserialize(Stream &stream); friend QTOPIAMAIL_EXPORT QDebug& operator<<(QDebug&, const QMailMessageId&); friend QTOPIAMAIL_EXPORT QTextStream& operator <<(QTextStream&, const QMailMessageId&); }; typedef QList QMailAccountIdList; typedef QList QMailFolderIdList; typedef QList QMailMessageIdList; QTOPIAMAIL_EXPORT QDebug& operator<< (QDebug& debug, const MailId &id); QTOPIAMAIL_EXPORT QDebug& operator<< (QDebug& debug, const QMailAccountId &id); QTOPIAMAIL_EXPORT QDebug& operator<< (QDebug& debug, const QMailFolderId &id); QTOPIAMAIL_EXPORT QDebug& operator<< (QDebug& debug, const QMailMessageId &id); QTOPIAMAIL_EXPORT QTextStream& operator<< (QTextStream& s, const MailId &id); QTOPIAMAIL_EXPORT QTextStream& operator<< (QTextStream& s, const QMailAccountId &id); QTOPIAMAIL_EXPORT QTextStream& operator<< (QTextStream& s, const QMailFolderId &id); QTOPIAMAIL_EXPORT QTextStream& operator<< (QTextStream& s, const QMailMessageId &id); Q_DECLARE_USER_METATYPE(MailId); Q_DECLARE_USER_METATYPE(QMailAccountId); Q_DECLARE_USER_METATYPE(QMailFolderId); Q_DECLARE_USER_METATYPE(QMailMessageId); Q_DECLARE_METATYPE(QMailAccountIdList) Q_DECLARE_METATYPE(QMailFolderIdList) Q_DECLARE_METATYPE(QMailMessageIdList) Q_DECLARE_USER_METATYPE_TYPEDEF(QMailAccountIdList, QMailAccountIdList) Q_DECLARE_USER_METATYPE_TYPEDEF(QMailFolderIdList, QMailFolderIdList) Q_DECLARE_USER_METATYPE_TYPEDEF(QMailMessageIdList, QMailMessageIdList) uint QTOPIAMAIL_EXPORT qHash(const QMailAccountId &id); uint QTOPIAMAIL_EXPORT qHash(const QMailFolderId &id); uint QTOPIAMAIL_EXPORT qHash(const QMailMessageId &id); #endif