1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/***************************************************************************
* Copyright (C) 2003-2006 by *
* Jason Kivlighn ([email protected] *
* *
* 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. *
***************************************************************************/
#ifndef HTMLEXPORTER_H
#define HTMLEXPORTER_H
#include <qdom.h>
#include <qmap.h>
#include "baseexporter.h"
#include "klomanager.h"
class RecipeDB;
class KProgress;
/**
* Exports a given recipe list as HTML
* @author Jason Kivlighn
*/
class HTMLExporter : public BaseExporter, protected KLOManager
{
public:
HTMLExporter( const QString&, const QString& );
virtual ~HTMLExporter();
virtual int supportedItems() const;
static void removeHTMLFiles( const QString &filename, int recipe_id );
static void removeHTMLFiles( const QString &filename, const QValueList<int> &recipe_ids );
void setTemplate( const QString &filename );
void setStyle( const QString &filename );
protected:
QString createContent( const Recipe& recipe );
virtual QString createContent( const RecipeList & );
virtual QString createHeader( const RecipeList & );
virtual QString createFooter();
virtual int progressInterval() const { return 1; }
virtual void loadBackgroundColor( const QString &obj, const QColor& );
virtual void loadFont( const QString &obj, const QFont& );
virtual void loadTextColor( const QString &obj, const QColor& );
virtual void loadVisibility( const QString &obj, bool );
virtual void loadAlignment( const QString &obj, int );
virtual void loadBorder( const QString &obj, const KreBorder& );
virtual void loadColumns( const QString & obj, int cols );
virtual void beginObject( const QString &obj );
virtual void endObject();
static QString escape( const QString & );
QString m_templateContent;
private:
void storePhoto( const Recipe &recipe );
void populateTemplate( const Recipe &recipe, QString &content );
void replaceIfVisible( QString &content, const QString &name, const QString &html );
QString HTMLIfVisible( const QString &name, const QString &html );
QString m_layoutFilename;
QString m_templateFilename;
QString m_cachedCSS;
QMap<QString,bool> m_visibilityMap;
QMap<QString,int> m_columnsMap;
bool m_error;
};
#endif //HTMLEXPORTER_H
|