2018-02-02 12:27:57 +00:00
|
|
|
#include "userInterface/mainwindow.h"
|
2018-02-02 09:00:46 +00:00
|
|
|
#include <QApplication>
|
2018-02-02 10:41:36 +00:00
|
|
|
|
2018-02-12 13:24:11 +00:00
|
|
|
#include "model/database/database.h"
|
2018-03-01 16:19:13 +00:00
|
|
|
#include "model/database/recipedatabase.h"
|
2018-02-02 09:00:46 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
|
2018-03-01 16:19:13 +00:00
|
|
|
//TESTING CODE
|
2018-02-02 10:41:36 +00:00
|
|
|
|
2018-03-01 16:19:13 +00:00
|
|
|
RecipeDatabase recipeDB("recipes");
|
2018-03-02 13:14:56 +00:00
|
|
|
// recipeDB.storeIngredient(Ingredient("Apple", "Fruit"));
|
|
|
|
// recipeDB.storeIngredient(Ingredient("Corn", "Vegetable"));
|
|
|
|
// recipeDB.storeIngredient(Ingredient("Lettuce", "Vegetable"));
|
|
|
|
// recipeDB.storeIngredient(Ingredient("Carrot", "Vegetable"));
|
2018-03-02 10:30:16 +00:00
|
|
|
|
2018-03-02 13:14:56 +00:00
|
|
|
// recipeDB.executeSQL("SELECT * FROM ingredient;").printData();
|
2018-03-02 09:11:26 +00:00
|
|
|
|
2018-03-02 10:30:16 +00:00
|
|
|
//TESTING CODE
|
|
|
|
vector<RecipeIngredient> ri;
|
|
|
|
ri.push_back(RecipeIngredient("flour", "grains", 3.0f, UnitOfMeasure("cup", "cups", "c")));
|
|
|
|
ri.push_back(RecipeIngredient("Baking Powder", "Additives", 1.0f, UnitOfMeasure("Teaspoon", "Teaspoons", "Tsp")));
|
|
|
|
|
|
|
|
Recipe rec("Example", ri, Instruction("<b>BOLD</b><i>iTaLiCs</i>"), QImage(), vector<RecipeTag>(), QDate::currentDate(), QTime(0, 30), QTime(0, 25), 10.0f);
|
|
|
|
|
2018-03-02 13:14:56 +00:00
|
|
|
bool success = recipeDB.storeRecipe(rec);
|
|
|
|
printf("Storage successful: %d\n", success);
|
|
|
|
|
|
|
|
recipeDB.executeSQL("SELECT * FROM recipeIngredient;").printData();
|
|
|
|
|
2018-03-02 10:30:16 +00:00
|
|
|
w.loadFromRecipe(rec);
|
2018-03-01 16:19:13 +00:00
|
|
|
|
|
|
|
return a.exec();
|
2018-02-02 09:00:46 +00:00
|
|
|
}
|