RecipeDB/userInterface/mainwindow.h

37 lines
727 B
C
Raw Normal View History

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>
#include <QAbstractListModel>
2018-02-12 13:24:11 +00:00
#include "model/recipe/recipe.h"
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);
~MainWindow();
2018-02-12 13:24:11 +00:00
//Loads all data from a recipe into the GUI components.
void loadFromRecipe(Recipe recipe);
2018-02-02 09:00:46 +00:00
private:
Ui::MainWindow *ui;
QAbstractListModel *ingredientsListModel;
2018-02-12 13:24:11 +00:00
//Hidden manipulation methods.
void setRecipeName(string name);
void setInstruction(Instruction instruction);
void setIngredients(vector<RecipeIngredient> ingredients);
2018-02-02 09:00:46 +00:00
};
#endif // MAINWINDOW_H