/* ktnefattach.cpp Copyright (C) 2002 Michael Goffioul This file is part of KTNEF, the KDE TNEF support library/program. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include "ktnef/ktnefattach.h" #include "ktnef/ktnefproperty.h" class KTNEFAttach::AttachPrivate { public: int state_; int size_; int offset_; int displaysize_; TQString name_; int index_; TQString filename_; TQString displayname_; TQString mimetag_; TQString extension_; }; KTNEFAttach::KTNEFAttach() { d = new AttachPrivate; d->state_ = Unparsed; d->offset_ = -1; d->size_ = 0; d->displaysize_ = 0; d->index_ = -1; } KTNEFAttach::~KTNEFAttach() { delete d; } void KTNEFAttach::setTitleParsed() { d->state_ |= TitleParsed; } void KTNEFAttach::setDataParsed() { d->state_ |= DataParsed; } void KTNEFAttach::unsetDataParser() { d->state_ = ( d->state_ & ~DataParsed ); } void KTNEFAttach::setInfoParsed() { d->state_ |= InfoParsed; } bool KTNEFAttach::titleParsed() const { return (d->state_ & TitleParsed); } bool KTNEFAttach::dataParsed() const { return (d->state_ & DataParsed); } bool KTNEFAttach::infoParsed() const { return (d->state_ & InfoParsed); } bool KTNEFAttach::checkState(int state) const { return (d->state_ & state); } int KTNEFAttach::offset() const { return d->offset_; } void KTNEFAttach::setOffset(int n) { setDataParsed(); d->offset_ = n; } int KTNEFAttach::size() const { return d->size_; } void KTNEFAttach::setSize(int s) { d->size_ = s; } int KTNEFAttach::displaySize() const { return d->displaysize_; } void KTNEFAttach::setDisplaySize(int s) { d->displaysize_ = s; } TQString KTNEFAttach::name() const { return d->name_; } void KTNEFAttach::setName(const TQString& str) { setTitleParsed(); d->name_ = str; } int KTNEFAttach::index() const { return d->index_; } void KTNEFAttach::setIndex(int i) { setInfoParsed(); d->index_ = i; } TQString KTNEFAttach::fileName() const { return d->filename_; } void KTNEFAttach::setFileName(const TQString& str) { d->filename_ = str; } TQString KTNEFAttach::displayName() const { return d->displayname_; } void KTNEFAttach::setDisplayName(const TQString& str) { d->displayname_ = str; } TQString KTNEFAttach::mimeTag() const { return d->mimetag_; } void KTNEFAttach::setMimeTag(const TQString& str) { d->mimetag_ = str; } TQString KTNEFAttach::extension() const { return d->extension_; } void KTNEFAttach::setExtension(const TQString& str) { d->extension_ = str; }