-rw-r--r-- | libkcal/attachment.cpp | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/libkcal/attachment.cpp b/libkcal/attachment.cpp index 1ead923..520ac95 100644 --- a/libkcal/attachment.cpp +++ b/libkcal/attachment.cpp @@ -1,6 +1,7 @@ /* This file is part of libkcal. + Copyright (c) 2002 Michael Brade <brade@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -21,23 +22,36 @@ #include "attachment.h" using namespace KCal; +Attachment::Attachment( const Attachment &attachment) +{ + mMimeType = attachment.mMimeType; + mData = attachment.mData; + mBinary = attachment.mBinary; + mShowInline = attachment.mShowInline; + mLabel = attachment.mLabel; +} + Attachment::Attachment(const QString& uri, const QString& mime) { mMimeType = mime; mData = uri; mBinary = false; + mShowInline = false; + mLabel = QString::null; } Attachment::Attachment(const char *base64, const QString& mime) { mMimeType = mime; mData = QString::fromUtf8(base64); mBinary = true; + mShowInline = false; + mLabel = QString::null; } -bool Attachment::isURI() const +bool Attachment::isUri() const { return !mBinary; } @@ -48,9 +62,9 @@ QString Attachment::uri() const else return QString::null; } -void Attachment::setURI(const QString& uri) +void Attachment::setUri(const QString& uri) { mData = uri; mBinary = false; } @@ -83,4 +97,24 @@ void Attachment::setMimeType(const QString& mime) { mMimeType = mime; } +bool Attachment::showInline() const +{ + return mShowInline; +} + +void Attachment::setShowInline( bool showinline ) +{ + mShowInline = showinline; +} + +QString Attachment::label() const +{ + return mLabel; +} + +void Attachment::setLabel( const QString& label ) +{ + mLabel = label; +} + |