summaryrefslogtreecommitdiffstats
path: root/krecipes/src/exporters/recipemlexporter.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-31 14:57:12 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-31 14:57:12 +0200
commit1a79d6f5bfce52feb71c264d1b63d78a3da584c4 (patch)
tree740b3faa8a9acff0a524733ce5dc5b036bc53969 /krecipes/src/exporters/recipemlexporter.h
downloadkrecipes-1a79d6f5bfce52feb71c264d1b63d78a3da584c4.tar.gz
krecipes-1a79d6f5bfce52feb71c264d1b63d78a3da584c4.zip
Initial import of krecipes 1.0-beta2
Diffstat (limited to 'krecipes/src/exporters/recipemlexporter.h')
-rw-r--r--krecipes/src/exporters/recipemlexporter.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/krecipes/src/exporters/recipemlexporter.h b/krecipes/src/exporters/recipemlexporter.h
new file mode 100644
index 0000000..b975c67
--- /dev/null
+++ b/krecipes/src/exporters/recipemlexporter.h
@@ -0,0 +1,45 @@
+/***************************************************************************
+* Copyright (C) 2003-2005 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 RECIPEMLEXPORTER_H
+#define RECIPEMLEXPORTER_H
+
+#include "baseexporter.h"
+
+#include <qdom.h>
+
+class IngredientData;
+
+/**
+ * Export class for the RecipeML file format <http://www.formatdata.com/recipeml>
+ * @author Jason Kivlighn
+ *
+ * Note: This format does not handle all the properties of recipes.
+ * Data lost in export to this format include:
+ * -Recipe photo
+ */
+class RecipeMLExporter : public BaseExporter
+{
+public:
+ RecipeMLExporter( const QString&, const QString& );
+ virtual ~RecipeMLExporter();
+
+ virtual int supportedItems() const;
+
+protected:
+ virtual QString createContent( const RecipeList& );
+ virtual QString createHeader( const RecipeList& );
+ virtual QString createFooter();
+
+private:
+ void createIngredient( QDomElement &ing_tag, const IngredientData &, QDomDocument &doc );
+};
+
+#endif //RECIPEMLEXPORTER_H