src/database/db_recipe.h

Wed, 18 Jan 2023 16:17:31 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 18 Jan 2023 16:17:31 +0100
changeset 465
8fc909360552
parent 249
3c28dc8dd51d
permissions
-rw-r--r--

In EditProduct added tab number 13. When entered, a signal is generated to init this tab so that we can defer loading. Added a AddImage button, we can select an image, give it a type and comment and store it is a separate table. The global settings file now has storage for paths (images, download and beerxml).

#ifndef	_DB_RECIPE_H
#define _DB_RECIPE_H

#include <QDebug>
#include <QMessageBox>
#include <QUuid>
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <QTranslator>
#include <QSqlQuery>
#include <QSqlError>
#include <QSqlRecord>
#include <QObject>
#include <math.h>


/**
 * @namespace db_recipe
 *
 * @brief Global database recipe functions..
 */
namespace DB_recipe {

    bool load(Recipe *reci, QDialog *dialog, int recno);
    bool save(Recipe *reci, QDialog *dialog);
    bool dele(QDialog *dialog, int recno);
}

#endif

mercurial