From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- mimelib/attach.h | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 mimelib/attach.h (limited to 'mimelib/attach.h') diff --git a/mimelib/attach.h b/mimelib/attach.h new file mode 100644 index 000000000..1ababc56a --- /dev/null +++ b/mimelib/attach.h @@ -0,0 +1,54 @@ +//============================================================================= +// File: attach.h +// Contents: Declarations for MessageWithAttachments +// Maintainer: Doug Sauder +// WWW: http://www.fwb.gulf.net/~dwsauder/mimepp.html +// +// Copyright (c) 1996, 1997 Douglas W. Sauder +// All rights reserved. +// +// IN NO EVENT SHALL DOUGLAS W. SAUDER BE LIABLE TO ANY PARTY FOR DIRECT, +// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF +// THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DOUGLAS W. SAUDER +// HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// DOUGLAS W. SAUDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT +// NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +// PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" +// BASIS, AND DOUGLAS W. SAUDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, +// SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +// +//============================================================================= + +#ifndef ATTACH_H +#define ATTACH_H + +#include "multipar.h" + + +class DwString; + + +class MessageWithAttachments : public MultipartMessage { + +public: + + MessageWithAttachments(); + virtual ~MessageWithAttachments(); + + void SetText(const DwString& aStr); + int NumberOfAttachments() const; + void Attach7bitFile(const char* aFilename, int aType=DwMime::kTypeText, + int aSubtype=DwMime::kSubtypePlain); + void Attach8bitFile(const char* aFilename, int aType=DwMime::kTypeText, + int aSubtype=DwMime::kSubtypePlain); + void AttachBinaryFile(const char* aFilename, int aType=DwMime::kTypeApplication, + int aSubtype=DwMime::kSubtypeOctetStream); + +protected: + + int PutFileInString(const char* aFilename, DwString& str); + +}; + +#endif -- cgit v1.2.1