summaryrefslogtreecommitdiffabout
path: root/libkcal/attachment.cpp
Side-by-side diff
Diffstat (limited to 'libkcal/attachment.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkcal/attachment.cpp38
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;
+}
+