2018-02-02 09:00:46 +00:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2018-02-12 13:24:11 +00:00
|
|
|
#include <string>
|
2018-02-12 14:15:04 +00:00
|
|
|
#include <QAbstractListModel>
|
2018-02-12 13:24:11 +00:00
|
|
|
|
|
|
|
#include "model/recipe/recipe.h"
|
2018-02-12 20:31:20 +00:00
|
|
|
#include "model/recipe/ingredients/ingredientlistmodel.h"
|
2018-03-10 14:32:26 +00:00
|
|
|
#include "gui/newrecipedialog.h"
|
2018-02-12 13:24:11 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2018-02-02 09:00:46 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
2018-03-10 14:32:26 +00:00
|
|
|
MainWindow(RecipeDatabase *db, QWidget *parent = 0);
|
2018-02-02 09:00:46 +00:00
|
|
|
~MainWindow();
|
|
|
|
|
2018-02-12 13:24:11 +00:00
|
|
|
//Loads all data from a recipe into the GUI components.
|
|
|
|
void loadFromRecipe(Recipe recipe);
|
2018-03-10 14:32:26 +00:00
|
|
|
private slots:
|
|
|
|
void on_newButton_clicked();
|
|
|
|
|
|
|
|
private:
|
2018-02-02 09:00:46 +00:00
|
|
|
Ui::MainWindow *ui;
|
2018-03-10 14:32:26 +00:00
|
|
|
RecipeDatabase *recipeDB;
|
2018-02-13 09:22:05 +00:00
|
|
|
IngredientListModel ingredientModel;
|
2018-02-12 13:24:11 +00:00
|
|
|
|
|
|
|
//Hidden manipulation methods.
|
|
|
|
void setRecipeName(string name);
|
2018-02-12 14:15:04 +00:00
|
|
|
void setInstruction(Instruction instruction);
|
|
|
|
void setIngredients(vector<RecipeIngredient> ingredients);
|
2018-03-10 14:32:26 +00:00
|
|
|
void setImage(QImage img);
|
2018-02-02 09:00:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|