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/fieldbdy.cpp | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 mimelib/fieldbdy.cpp (limited to 'mimelib/fieldbdy.cpp') diff --git a/mimelib/fieldbdy.cpp b/mimelib/fieldbdy.cpp new file mode 100644 index 000000000..9c3871691 --- /dev/null +++ b/mimelib/fieldbdy.cpp @@ -0,0 +1,110 @@ +//============================================================================= +// File: fieldbdy.cpp +// Contents: Definitions for DwFieldBody +// 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. +// +//============================================================================= + +#define DW_IMPLEMENTATION + +#include +#include +#include +#include +#include +#include +#include + + +const char* const DwFieldBody::sClassName = "DwFieldBody"; + + +DwFieldBody::DwFieldBody() +{ + mLineOffset = 0; + mDoFolding = DwTrue; + mClassId = kCidFieldBody; + mClassName = sClassName; +} + + +DwFieldBody::DwFieldBody(const DwFieldBody& aFieldBody) + : DwMessageComponent(aFieldBody) +{ + mLineOffset = aFieldBody.mLineOffset; + mDoFolding = aFieldBody.mDoFolding; + mClassId = kCidFieldBody; + mClassName = sClassName; +} + + +DwFieldBody::DwFieldBody(const DwString& aStr, DwMessageComponent* aParent) + : DwMessageComponent(aStr, aParent) +{ + mLineOffset = 0; + mDoFolding = DwTrue; + mClassId = kCidFieldBody; + mClassName = sClassName; +} + + +DwFieldBody::~DwFieldBody() +{ +} + + +const DwFieldBody& DwFieldBody::operator = (const DwFieldBody& aFieldBody) +{ + if (this == &aFieldBody) return *this; + DwMessageComponent::operator = (aFieldBody); + mLineOffset = aFieldBody.mLineOffset; + return *this; +} + + +#if defined (DW_DEBUG_VERSION) +void DwFieldBody::PrintDebugInfo(std::ostream& aStrm, int /*aDepth*/) const +{ + aStrm << + "--------------- Debug info for DwFieldBody class ---------------\n"; + _PrintDebugInfo(aStrm); +} +#else +void DwFieldBody::PrintDebugInfo(std::ostream& , int ) const {} +#endif // defined (DW_DEBUG_VERSION) + + +#if defined (DW_DEBUG_VERSION) +void DwFieldBody::_PrintDebugInfo(std::ostream& aStrm) const +{ + DwMessageComponent::_PrintDebugInfo(aStrm); + aStrm << "LineOffset: " << mLineOffset << '\n'; + aStrm << "IsFolding: " << (IsFolding() ? "True" : "False") << '\n'; +} +#else +void DwFieldBody::_PrintDebugInfo(std::ostream& ) const {} +#endif // defined (DW_DEBUG_VERSION) + + +void DwFieldBody::CheckInvariants() const +{ +#if defined (DW_DEBUG_VERSION) + DwMessageComponent::CheckInvariants(); +#endif // defined (DW_DEBUG_VERSION) +} + -- cgit v1.2.1