You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/kword/html/export/ExportFilter.h

105 lines
4.4 KiB

/*
This file is part of the KDE project
Copyright (C) 2001, 2002 Nicolas GOUTTE <goutte@kde.org>
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.
*/
#ifndef EXPORTFILTERFULLPOWER_H
#define EXPORTFILTERFULLPOWER_H
#include <tqvaluestack.h>
#include <KWEFBaseWorker.h>
class ListInfo
{
public:
CounterData::Style m_typeList; ///< What is the style of the current list (undefined, if we are not in a list)
bool m_orderedList; ///< Is the current list ordered or not (undefined, if we are not in a list)
};
class HtmlWorker : public KWEFBaseWorker
{
public:
HtmlWorker(void) : m_ioDevice(NULL), m_streamOut(NULL) { }
virtual ~HtmlWorker(void) { delete m_streamOut; delete m_ioDevice; }
public:
virtual bool doOpenFile(const TQString& filenameOut, const TQString& to);
virtual bool doCloseFile(void); // Close file in normal conditions
virtual bool doOpenDocument(void);
virtual bool doCloseDocument(void);
virtual bool doFullParagraph(const TQString& paraText, const LayoutData& layout,
const ValueListFormatData& paraFormatDataList);
virtual bool doFullDocumentInfo(const KWEFDocumentInfo& docInfo);
virtual bool doOpenTextFrameSet(void);
virtual bool doCloseTextFrameSet(void);
virtual bool doOpenHead(void); ///< HTML's \<head\>
virtual bool doCloseHead(void); ///< HTML's \</head\>
virtual bool doOpenBody(void); ///< HTML's \<body\>
virtual bool doCloseBody(void); ///< HTML's \</body\>
protected:
virtual TQString getStartOfListOpeningTag(const CounterData::Style typeList, bool& ordered)=0;
/**
* \note TQChar::Direction is needed because the text flow can only
* be detected from the actual string data
*/
virtual void openParagraph(const TQString& strTag,
const LayoutData& layout, TQChar::Direction direction=TQChar::DirL)=0;
virtual void closeParagraph(const TQString& strTag,
const LayoutData& layout)=0;
virtual void openSpan(const FormatData& formatOrigin, const FormatData& format)=0;
virtual void closeSpan(const FormatData& formatOrigin, const FormatData& format)=0;
virtual void writeDocType(void);
virtual TQString customCSSURL(void) const { return TQString(); }
public:
inline bool isXML (void) const { return m_xml; }
inline void setXML (const bool flag ) { m_xml=flag; }
inline TQTextCodec* getCodec(void) const { return m_codec; }
inline void setCodec(TQTextCodec* codec) { m_codec=codec; }
protected:
TQString escapeHtmlText(const TQString& strText) const;
/**
* \brief Get file name for an additional file
*
* This is used for example for an image file.
*
* \param additionalName is the wanted name
* \return the path where the file has to be written
*/
TQString getAdditionalFileName(const TQString& additionalName);
private:
void ProcessParagraphData ( const TQString& strTag, const TQString &paraText,
const LayoutData& layout, const ValueListFormatData &paraFormatDataList);
void formatTextParagraph(const TQString& strText,
const FormatData& formatOrigin, const FormatData& format);
bool makeTable(const FrameAnchor& anchor);
bool makeImage(const FrameAnchor& anchor);
protected:
TQIODevice* m_ioDevice;
TQTextStream* m_streamOut;
TQTextCodec* m_codec; ///< TQTextCodec in which the file will be written
TQString m_strTitle;
TQString m_fileName; ///< Name of the output file
TQString m_strFileDir; ///< Directory of the output file
TQString m_strSubDirectoryName; ///< Name of the sub directory for the additional files
TQValueStack<ListInfo> m_listStack; ///< Stack for list information
bool m_xml;
};
#endif /* EXPORTFILTERFULLPOWER_H */