summaryrefslogtreecommitdiffabout
path: root/libkcal/attachment.cpp
authorzautrix <zautrix>2005-07-30 16:17:54 (UTC)
committer zautrix <zautrix>2005-07-30 16:17:54 (UTC)
commit6a32c95e5f0a36cd9a681a3f3302bec6e83acce5 (patch) (unidiff)
tree3f8da30f9fe779ae697c97e16eb4dd6f47c3ed00 /libkcal/attachment.cpp
parent9ca2cd947f22d33543e065f54c6487e86d80befa (diff)
downloadkdepimpi-6a32c95e5f0a36cd9a681a3f3302bec6e83acce5.zip
kdepimpi-6a32c95e5f0a36cd9a681a3f3302bec6e83acce5.tar.gz
kdepimpi-6a32c95e5f0a36cd9a681a3f3302bec6e83acce5.tar.bz2
fixx
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
@@ -1,5 +1,6 @@
1/* 1/*
2 This file is part of libkcal. 2 This file is part of libkcal.
3
3 Copyright (c) 2002 Michael Brade <brade@kde.org> 4 Copyright (c) 2002 Michael Brade <brade@kde.org>
4 5
5 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
@@ -22,11 +23,22 @@
22 23
23using namespace KCal; 24using namespace KCal;
24 25
26Attachment::Attachment( const Attachment &attachment)
27{
28 mMimeType = attachment.mMimeType;
29 mData = attachment.mData;
30 mBinary = attachment.mBinary;
31 mShowInline = attachment.mShowInline;
32 mLabel = attachment.mLabel;
33}
34
25Attachment::Attachment(const QString& uri, const QString& mime) 35Attachment::Attachment(const QString& uri, const QString& mime)
26{ 36{
27 mMimeType = mime; 37 mMimeType = mime;
28 mData = uri; 38 mData = uri;
29 mBinary = false; 39 mBinary = false;
40 mShowInline = false;
41 mLabel = QString::null;
30} 42}
31 43
32Attachment::Attachment(const char *base64, const QString& mime) 44Attachment::Attachment(const char *base64, const QString& mime)
@@ -34,9 +46,11 @@ Attachment::Attachment(const char *base64, const QString& mime)
34 mMimeType = mime; 46 mMimeType = mime;
35 mData = QString::fromUtf8(base64); 47 mData = QString::fromUtf8(base64);
36 mBinary = true; 48 mBinary = true;
49 mShowInline = false;
50 mLabel = QString::null;
37} 51}
38 52
39bool Attachment::isURI() const 53bool Attachment::isUri() const
40{ 54{
41 return !mBinary; 55 return !mBinary;
42} 56}
@@ -49,7 +63,7 @@ QString Attachment::uri() const
49 return QString::null; 63 return QString::null;
50} 64}
51 65
52void Attachment::setURI(const QString& uri) 66void Attachment::setUri(const QString& uri)
53{ 67{
54 mData = uri; 68 mData = uri;
55 mBinary = false; 69 mBinary = false;
@@ -84,3 +98,23 @@ void Attachment::setMimeType(const QString& mime)
84 mMimeType = mime; 98 mMimeType = mime;
85} 99}
86 100
101bool Attachment::showInline() const
102{
103 return mShowInline;
104}
105
106void Attachment::setShowInline( bool showinline )
107{
108 mShowInline = showinline;
109}
110
111QString Attachment::label() const
112{
113 return mLabel;
114}
115
116void Attachment::setLabel( const QString& label )
117{
118 mLabel = label;
119}
120