/* This file is part of the KDE project Copyright (C) 2001, 2002 Nicolas GOUTTE 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 EXPORTCSS_H #define EXPORTCSS_H #include #include #include "ExportFilter.h" class StyleMap : public TQMap { public: StyleMap(void) {} ~StyleMap(void) {} }; class HtmlCssWorker : public HtmlWorker { public: HtmlCssWorker(void) { } virtual ~HtmlCssWorker(void) { } public: virtual bool doOpenStyles(void); ///< HTML's \ virtual bool doCloseStyles(void); ///< HTML's \ virtual bool doFullDefineStyle(LayoutData& layout); virtual bool doFullPaperFormat(const int format, const double width, const double height, const int orientation); virtual bool doFullPaperBorders (const double top, const double left, const double bottom, const double right); ///< Like KWord's \ protected: virtual TQString getStartOfListOpeningTag(const CounterData::Style typeList, bool& ordered); virtual void openParagraph(const TQString& strTag, const LayoutData& layout, TQChar::Direction direction=TQChar::DirL); virtual void closeParagraph(const TQString& strTag, const LayoutData& layout); virtual void openSpan(const FormatData& formatOrigin, const FormatData& format); virtual void closeSpan(const FormatData& formatOrigin, const FormatData& format); private: TQString layoutToCss(const LayoutData& layoutOrigin,const LayoutData& layout, const bool force) const; TQString escapeCssIdentifier(const TQString& strText) const; TQString textFormatToCss(const TextFormatting& formatOrigin, const TextFormatting& formatData, const bool force) const; private: TQString m_strPageSize; TQString m_strPaperBorders; StyleMap m_styleMap; }; #endif /* EXPORTCSS_H */