kde-playground/kdepimlibs/akonadi/kmime/messagestatus.h
Ivailo Monev a9b00154bc generic: replace forward class declarations with header inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-07-31 18:05:48 +00:00

440 lines
14 KiB
C++

/* -*- mode: C++ -*-
This file is part of Akonadi.
Copyright (c) 2005 Andreas Gungl <a.gungl@gmx.de>
Copyright (c) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Copyright (c) 2010 Leo Franchi <lfranchi@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef AKONADI_KMIME_MESSAGESTATUS_H
#define AKONADI_KMIME_MESSAGESTATUS_H
#include <QtCore/QSet>
#include "akonadi-kmime_export.h"
#include <QString>
namespace Akonadi {
//---------------------------------------------------------------------------
/**
@short Akonadi KMime Message Status.
@author Andreas Gungl <a.gungl@gmx.de>
The class encapsulates the handling of the different flags
which describe the status of a message.
The flags themselves are not intended to be used outside this class.
In the status pairs Watched/Ignored and Spam/Ham, there both
values can't be set at the same time, however they can
be unset at the same time.
Note that this class does not sync with the Akonadi storage. It is
used as an in-memory helper when manipulating Akonadi items.
@since 4.6.
*/
class AKONADI_KMIME_EXPORT MessageStatus
{
public:
/** Constructor - sets status initially to unknown. */
MessageStatus();
/** Assign the status from another instance. The internal
representation is identical afterwards, i.e. a comparison
by operator == will return true.
@param other message status to copy from
*/
MessageStatus &operator = ( const MessageStatus &other );
/** Compare the status with that from another instance.
@return true if the stati are equal, false if different.
@param other message status to compare with current object
*/
bool operator == ( const MessageStatus &other ) const;
/** Compare the status with that from another instance.
@return true if the stati are equal, false if different.
@param other message status to compare with current object
*/
bool operator != ( const MessageStatus &other ) const;
/** Check, if some of the flags in the status match
with those flags from another instance.
@return true if at least one flag is set in both stati.
@param other message status to compare objects' flags
*/
bool operator & ( const MessageStatus &other ) const;
/** Clear all status flags, this resets to unknown. */
void clear();
/** Set / add stati described by another MessageStatus object.
This can be used to merge in multiple stati at once without
using the single setter methods.
However, internally the setters are used anyway to ensure the
integrity of the resulting status.
@param other message status to set
*/
void set( const MessageStatus &other );
/** Toggle one or more stati described by another MessageStatus object.
Internally the setters are used to ensure the integrity of the
resulting status.
@param other message status to toggle
*/
void toggle( const MessageStatus &other );
/* ----- getters ----------------------------------------------------- */
/** Check for Unknown status.
@return true if status is unknown.
*/
bool isOfUnknownStatus() const;
/** Check for Read status. Note that ignored messages are read.
@return true if status is read.
*/
bool isRead() const;
/** Check for Deleted status.
@return true if status is deleted.
*/
bool isDeleted() const;
/** Check for Replied status.
@return true if status is replied.
*/
bool isReplied() const;
/** Check for Forwarded status.
@return true if status is forwarded.
*/
bool isForwarded() const;
/** Check for Queued status.
@return true if status is queued.
*/
bool isQueued() const;
/** Check for Sent status.
@return true if status is sent.
*/
bool isSent() const;
/** Check for Important status.
@return true if status is important.
*/
bool isImportant() const;
/** Check for Watched status.
@return true if status is watched.
*/
bool isWatched() const;
/** Check for Ignored status.
@return true if status is ignored.
*/
bool isIgnored() const;
/** Check for ToAct status.
@return true if status is action item.
*/
bool isToAct() const;
/** Check for Spam status.
@return true if status is spam.
*/
bool isSpam() const;
/** Check for Ham status.
@return true if status is not spam.
*/
bool isHam() const;
/** Check for Attachment status.
@return true if status indicates an attachment.
*/
bool hasAttachment() const;
/** Check for Invitation status.
@return true if status indicates an invitation.
*/
bool hasInvitation() const;
/** Check for Signed status.
@return true if status is signed.
*/
bool isSigned() const;
/** Check for Encrypted status.
@return true if status is encrypted.
*/
bool isEncrypted() const;
/** Check for error status.
@return true if status indicates an error.
*/
bool hasError() const;
/* ----- setters ----------------------------------------------------- */
/**
* Set the status to read
* @param read new read status
*/
void setRead( bool read = true );
/** Set the status for deleted.
@param deleted Set (true) or unset (false) this status flag.
*/
void setDeleted( bool deleted = true );
/** Set the status for replied.
@param replied Set (true) or unset (false) this status flag.
*/
void setReplied( bool replied = true );
/** Set the status for forwarded.
@param forwarded Set (true) or unset (false) this status flag.
*/
void setForwarded( bool forwarded = true );
/** Set the status for queued.
@param queued Set (true) or unset (false) this status flag.
*/
void setQueued( bool queued = true );
/** Set the status for sent.
@param sent Set (true) or unset (false) this status flag.
*/
void setSent( bool sent = true );
/** Set the status for important.
@param important Set (true) or unset (false) this status flag.
*/
void setImportant( bool important = true );
/** Set the status to watched.
@param watched Set (true) or unset (false) this status flag.
*/
void setWatched( bool watched = true );
/** Set the status to ignored.
@param ignored Set (true) or unset (false) this status flag.
*/
void setIgnored( bool ignored = true );
/** Set the status to action item.
@param toAct Set (true) or unset (false) this status flag.
*/
void setToAct( bool toAct = true );
/** Set the status to spam.
@param spam Set (true) or unset (false) this status flag.
*/
void setSpam( bool spam = true );
/** Set the status to not spam.
@param ham Set (true) or unset (false) this status flag.
*/
void setHam( bool ham = true );
/** Set the status for an attachment.
@param hasAttachment Set (true) or unset (false) this status flag.
*/
void setHasAttachment( bool hasAttachment = true );
/** Set the status for an invitation.
@param hasInvitation Set (true) or unset (false) this status flag.
*/
void setHasInvitation( bool hasInvitation = true );
/** Set the status to signed.
@param value Set (true) or unset (false) this status flag.
*/
void setSigned( bool value = true );
/** Set the status to encrypted.
@param value Set (true) or unset (false) this status flag.
*/
void setEncrypted( bool value = true );
/** Set the status to error.
@param value Set (true) or unset (false) this status flag.
*/
void setHasError( bool value = true );
/* ----- state representation --------------------------------------- */
/** Get the status as a whole e.g. for storage in an index.
D on't manipulte the *index via this value, this bypasses
all integrity checks in the setter methods.
@return The status encoded in bits.
*/
qint32 toQInt32() const;
/** Set the status as a whole e.g. for reading from an index.
Don't manipulte the index via this value, this bypasses
all integrity checks in the setter methods.
@param status The status encoded in bits to be set in this instance.
*/
void fromQInt32( qint32 status );
/** Convert the status to a string representation.
@return A string containing coded uppercase letters
which describe the status.
@note This code is legacy for the KMail1 indexes
*/
QString statusStr() const;
/** Set the status based on a string representation.
@param aStr The status string to be analyzed.
Normally it is a string obtained using
getStatusStr().
@note This code is legacy for the KMail1 indexes
*/
void setStatusFromStr( const QString &aStr );
/** Get the status as a whole e.g. for storage as IMAP flags.
@return The status encoded in flags.
*/
QSet<QByteArray> statusFlags() const;
/** Set the status as a whole e.g. for reading from IMAP flags.
@param flags set of flags for status as a whole
*/
void setStatusFromFlags( const QSet<QByteArray> &flags );
/* ----- static accessors to simple states --------------------------- */
/** Return a special status that expresses Unread.
This status can only be used for comparison with other states.
*/
static const MessageStatus statusUnread();
/** Return a predefined status initialized as Read as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Read.
*/
static const MessageStatus statusRead();
/** Return a predefined status initialized as Deleted as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Deleted.
*/
static const MessageStatus statusDeleted();
/** Return a predefined status initialized as Replied as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Replied.
*/
static const MessageStatus statusReplied();
/** Return a predefined status initialized as Forwarded as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Forwarded.
*/
static const MessageStatus statusForwarded();
/** Return a predefined status initialized as Queued as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Queued.
*/
static const MessageStatus statusQueued();
/** Return a predefined status initialized as Sent as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Sent.
*/
static const MessageStatus statusSent();
/** Return a predefined status initialized as Important as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Important.
*/
static const MessageStatus statusImportant();
/** Return a predefined status initialized as Watched as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Watched.
*/
static const MessageStatus statusWatched();
/** Return a predefined status initialized as Ignored as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Ignored.
*/
static const MessageStatus statusIgnored();
/** Return a predefined status initialized as Action Item as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as ToAct.
*/
static const MessageStatus statusToAct();
/** Return a predefined status initialized as Spam as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Spam.
*/
static const MessageStatus statusSpam();
/** Return a predefined status initialized as Ham as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Ham.
*/
static const MessageStatus statusHam();
/** Return a predefined status initialized as Attachment as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Attachment.
*/
static const MessageStatus statusHasAttachment();
/** Return a predefined status initialized as Invitation as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Invitation.
*/
static const MessageStatus statusHasInvitation();
/** Return a predefined status initialized as Signed as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Signed.
*/
static const MessageStatus statusSigned();
/** Return a predefined status initialized as Encrypted as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Encrypted.
*/
static const MessageStatus statusEncrypted();
/** Return a predefined status initialized as Error as is useful
e.g. when providing a state for comparison.
@return A reference to a status instance initialized as Error.
*/
static const MessageStatus statusHasError();
private:
quint32 mStatus;
};
} // namespace Akonadi
#endif