author | zautrix <zautrix> | 2005-07-30 16:17:54 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-30 16:17:54 (UTC) |
commit | 6a32c95e5f0a36cd9a681a3f3302bec6e83acce5 (patch) (side-by-side diff) | |
tree | 3f8da30f9fe779ae697c97e16eb4dd6f47c3ed00 /libkcal/attachment.cpp | |
parent | 9ca2cd947f22d33543e065f54c6487e86d80befa (diff) | |
download | kdepimpi-6a32c95e5f0a36cd9a681a3f3302bec6e83acce5.zip kdepimpi-6a32c95e5f0a36cd9a681a3f3302bec6e83acce5.tar.gz kdepimpi-6a32c95e5f0a36cd9a681a3f3302bec6e83acce5.tar.bz2 |
fixx
-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 @@ -2,2 +2,3 @@ This file is part of libkcal. + Copyright (c) 2002 Michael Brade <brade@kde.org> @@ -24,2 +25,11 @@ 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) @@ -29,2 +39,4 @@ Attachment::Attachment(const QString& uri, const QString& mime) mBinary = false; + mShowInline = false; + mLabel = QString::null; } @@ -36,5 +48,7 @@ Attachment::Attachment(const char *base64, const QString& mime) mBinary = true; + mShowInline = false; + mLabel = QString::null; } -bool Attachment::isURI() const +bool Attachment::isUri() const { @@ -51,3 +65,3 @@ QString Attachment::uri() const -void Attachment::setURI(const QString& uri) +void Attachment::setUri(const QString& uri) { @@ -86 +100,21 @@ void Attachment::setMimeType(const QString& 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; +} + |