93 lines
2.9 KiB
C++
93 lines
2.9 KiB
C++
#include "openrecipedialog.h"
|
|
#include "ui_openrecipedialog.h"
|
|
|
|
OpenRecipeDialog::OpenRecipeDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::OpenRecipeDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
ui->recipeTableView->setModel(&this->recipeTableModel);
|
|
ui->ingredientsListView->setModel(&this->ingredientsModel);
|
|
ui->tagsListView->setModel(&this->tagsModel);
|
|
|
|
connect(ui->ingredientsListView->selectionModel(),
|
|
SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
|
|
this,
|
|
SLOT(on_ingredientsListView_selectionChanged(QItemSelection)));
|
|
}
|
|
|
|
OpenRecipeDialog::OpenRecipeDialog(RecipeDatabase *recipeDB, QWidget *parent) : OpenRecipeDialog(parent){
|
|
this->recipeDB = recipeDB;
|
|
this->populateIngredientsList();
|
|
this->populateTagsList();
|
|
this->populateRecipesTable();
|
|
}
|
|
|
|
OpenRecipeDialog::~OpenRecipeDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
Recipe OpenRecipeDialog::getSelectedRecipe(){
|
|
return this->selectedRecipe;
|
|
}
|
|
|
|
void OpenRecipeDialog::populateRecipesTable(){
|
|
this->recipeTableModel.clear();
|
|
vector<Recipe> recipes = this->recipeDB->retrieveAllRecipes();
|
|
this->recipeTableModel.setRecipes(recipes);
|
|
ui->recipeTableView->resizeColumnsToContents();
|
|
ui->recipeTableView->show();
|
|
}
|
|
|
|
void OpenRecipeDialog::populateIngredientsList(){
|
|
this->ingredientsModel.setIngredients(this->recipeDB->retrieveAllIngredients());
|
|
}
|
|
|
|
void OpenRecipeDialog::populateTagsList(){
|
|
this->tagsModel.setTags(this->recipeDB->retrieveAllTags());
|
|
}
|
|
|
|
void OpenRecipeDialog::on_deleteRecipeButton_clicked(){
|
|
QItemSelectionModel *selectModel = ui->recipeTableView->selectionModel();
|
|
if (!selectModel->hasSelection()){
|
|
return;
|
|
}
|
|
vector<int> rows;
|
|
QModelIndexList indexes = selectModel->selectedRows();
|
|
for (int i = 0; i < indexes.count(); i++){
|
|
rows.push_back(indexes.at(i).row());
|
|
}
|
|
string recipePlural = (rows.size() == 1) ? "recipe" : "recipes";
|
|
QString title = QString::fromStdString("Delete " + recipePlural);
|
|
QString content = QString::fromStdString("Are you sure you wish to delete the selected "+recipePlural+"?");
|
|
QMessageBox::StandardButton reply = QMessageBox::question(this, title, content);
|
|
if (reply == QMessageBox::Yes){
|
|
for (int row : rows){
|
|
Recipe r = this->recipeTableModel.getRecipeAt(row);
|
|
bool success = this->recipeDB->deleteRecipe(r.getName());
|
|
if (!success){
|
|
QMessageBox::critical(this, QString::fromStdString("Unable to Delete"), QString::fromStdString("Could not delete recipe "+r.getName()));
|
|
}
|
|
}
|
|
this->populateRecipesTable();
|
|
}
|
|
}
|
|
|
|
void OpenRecipeDialog::on_recipeTableView_doubleClicked(const QModelIndex &index){
|
|
this->selectedRecipe = this->recipeTableModel.getRecipeAt(index.row());
|
|
this->close();
|
|
}
|
|
|
|
void OpenRecipeDialog::on_ingredientsListView_selectionChanged(const QItemSelection &selection){
|
|
printf("Selection changed!\n");
|
|
vector<Ingredient> ingredients;
|
|
for (QModelIndex index : selection.indexes()){
|
|
Ingredient i = this->ingredientsModel.getIngredients().at(index.row());
|
|
ingredients.push_back(i);
|
|
printf("Selected: %s\n", i.getName().c_str());
|
|
}
|
|
|
|
}
|