#ifndef MAINWINDOW_H #define MAINWINDOW_H #include #include #include #include "model/recipe/recipe.h" using namespace std; namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); //Loads all data from a recipe into the GUI components. void loadFromRecipe(Recipe recipe); private: Ui::MainWindow *ui; QAbstractListModel *ingredientsListModel; //Hidden manipulation methods. void setRecipeName(string name); void setInstruction(Instruction instruction); void setIngredients(vector ingredients); }; #endif // MAINWINDOW_H