mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
/*
|
|
Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
|
|
Copyright (c) 2004 Reinhold Kainhofer <reinhold@kainhofer.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
/**
|
|
@file
|
|
This file is part of the API for handling TNEF data and provides
|
|
static Formatter helpers.
|
|
|
|
@brief
|
|
Provides helpers too format @acronym TNEF attachments into different
|
|
formats like eg. a HTML representation.
|
|
|
|
@author Cornelius Schumacher
|
|
@author Reinhold Kainhofer
|
|
*/
|
|
|
|
#ifndef KTNEF_FORMATTER_H
|
|
#define KTNEF_FORMATTER_H
|
|
|
|
#include <QtCore/QString>
|
|
|
|
#include <kcalcore/memorycalendar.h>
|
|
|
|
#include "ktnef_export.h"
|
|
|
|
namespace KCal {
|
|
class Calendar;
|
|
class InvitationFormatterHelper;
|
|
}
|
|
|
|
namespace KCalUtils {
|
|
class InvitationFormatterHelper;
|
|
}
|
|
|
|
namespace KTnef {
|
|
|
|
#ifndef KDEPIM_NO_KCAL
|
|
/**
|
|
Formats a @acronym TNEF attachment to an HTML mail.
|
|
|
|
@param tnef is the QByteArray contain the @acronym TNEF data.
|
|
@param cal is a pointer to a Calendar object.
|
|
@param h is a pointer to a InvitationFormatterHelp object.
|
|
*/
|
|
KTNEF_DEPRECATED_EXPORT QString formatTNEFInvitation( const QByteArray &tnef,
|
|
KCal::Calendar *cal,
|
|
KCal::InvitationFormatterHelper *h );
|
|
#endif
|
|
|
|
/**
|
|
Formats a @acronym TNEF attachment to an HTML mail.
|
|
|
|
@param tnef is the QByteArray contain the @acronym TNEF data.
|
|
@param cal is a pointer to a Calendar object.
|
|
@param h is a pointer to a InvitationFormatterHelp object.
|
|
*/
|
|
KTNEF_EXPORT QString formatTNEFInvitation( const QByteArray &tnef,
|
|
const KCalCore::MemoryCalendar::Ptr &cal,
|
|
KCalUtils::InvitationFormatterHelper *h );
|
|
|
|
/**
|
|
Transforms a @acronym TNEF attachment to an iCal or vCard.
|
|
|
|
@param tnef is the QByteArray containing the @acronym TNEF data.
|
|
|
|
@return a string containing the transformed attachment.
|
|
*/
|
|
KTNEF_EXPORT QString msTNEFToVPart( const QByteArray &tnef );
|
|
}
|
|
|
|
#endif
|