summaryrefslogtreecommitdiffstats
path: root/krecipes/src/exporters/htmlbookexporter.h
blob: ca0d7fe8c95f64423c327afe683e90fec0229416 (plain)
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
/***************************************************************************
*   Copyright (C) 2006 by                                                 *
*   Jason Kivlighn (jkivlighn@gmail.com)                                  *
*                                                                         *
*   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 HTMLBOOKEXPORTER_H
#define HTMLBOOKEXPORTER_H

#include <qmap.h>
#include <qvaluelist.h>

#include "baseexporter.h"
#include "htmlexporter.h"

class RecipeDB;
class CategoryTree;

/**
  * Exports a given recipe list as HTML
  * @author Jason Kivlighn
  */
class HTMLBookExporter : public HTMLExporter
{
public:
	HTMLBookExporter( CategoryTree *categories, const QString&, const QString& );
	virtual ~HTMLBookExporter();

protected:
	virtual QString createContent( const RecipeList & );
	virtual QString createHeader( const RecipeList & );
	virtual QString createFooter();

	virtual int headerFlags() const;

private:
	void createCategoryStructure( QTextStream &xml, const RecipeList &recipes );
	bool removeIfUnused( const QValueList<int> &cat_ids, CategoryTree *parent, bool parent_should_show = false );
	void writeCategoryStructure( QTextStream &xml, const CategoryTree *categoryTree );

	QMap<QString,QTextStream*> fileMap;

	RecipeDB *database;
	CategoryTree *m_categories;
	QString m_basedir;
};

#endif //HTMLBOOKEXPORTER_H