summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/recipeviewdialog.h
blob: ffc7c1245f102c0d102b18923b5343f7cf05d05c (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
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
/***************************************************************************
*   Copyright (C) 2003 by                                                 *
*   Unai Garro (ugarro@users.sourceforge.net)                             *
*   Cyril Bosselut (bosselut@b1project.com)                               *
*   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 RECIPEVIEWDIALOG_H
#define RECIPEVIEWDIALOG_H

#include <qvbox.h>
#include <qstring.h>

class RecipeDB;
class Recipe;
class KHTMLPart;
class QPushButton;

/**
@author Unai Garro
*/

class RecipeViewDialog : public QVBox
{
	Q_OBJECT

public:
	RecipeViewDialog( QWidget *parent, RecipeDB *db, int recipeID = -1 );

	~RecipeViewDialog();

	/** @return Boolean indicating whether or not the recipe was successfully loaded */
	bool loadRecipe( int recipeID );

	/** @return Boolean indicating whether or not the recipes were successfully loaded */
	bool loadRecipes( const QValueList<int> &ids, const QString &layoutConfig = QString::null );

	int recipesLoaded() const
	{
		return ids_loaded.count();
	}
	const QValueList<int> currentRecipes() const
	{
		return ids_loaded;
	}

	void reload( const QString &layoutConfig = QString::null );

public slots:
	void printNoPreview( void );
	void print( void );

private:

	// Internal Variables
	KHTMLPart *recipeView;
	RecipeDB *database;
	bool recipe_loaded;
	QValueList<int> ids_loaded;
	QString tmp_filename;

	// Internal Methods
	bool showRecipes( const QValueList<int> &ids, const QString &layoutConfig );
	void removeOldFiles();

private slots:
	void recipeRemoved(int);

};


#endif