diff -r 6638609328c2 -r eea8a9e7e1f6 src/EditRecipe.h --- a/src/EditRecipe.h Sun Apr 17 10:50:48 2022 +0200 +++ b/src/EditRecipe.h Mon Apr 18 10:55:33 2022 +0200 @@ -294,6 +294,9 @@ void addMiscRow_clicked(); void deleteMiscRow_clicked(); void editMiscRow_clicked(); + void addYeastRow_clicked(); + void deleteYeastRow_clicked(); + void editYeastRow_clicked(); void w2_volume_changed(double val); void wb_cacl2_changed(double val); @@ -328,6 +331,8 @@ QStringList h_useat = { tr("Mash"), tr("First wort"), tr("Boil"), tr("Aroma"), tr("Whirlpool"), tr("Dry hop") }; QStringList m_types = { tr("Spice"), tr("Herb"), tr("Flavor"), tr("Fining"), tr("Water agent"), tr("Yeast nutrient"), tr("Other") }; QStringList m_uses = { tr("Starter"), tr("Mash"), tr("Boil"), tr("Primary"), tr("Secondary"), tr("Bottling") }; + QStringList y_types = { tr("Liquid"), tr("Dry"), tr("Slant"), tr("Culture"), tr("Frozen"), tr("Bottle"), tr("Dried") }; + QStringList y_use = { tr("Primary"), tr("Secondary"), tr("Tertiary"), tr("Bottle") }; QString bar_red = "QProgressBar::chunk {background: #FF0000;}"; QString bar_orange = "QProgressBar::chunk {background: #EB7331;}"; QString bar_green = "QProgressBar::chunk {background: #008C00;}"; @@ -354,6 +359,7 @@ static bool ferment_sort_test(const Fermentables &D1, const Fermentables &D2); static bool hop_sort_test(const Hops &D1, const Hops &D2); static bool misc_sort_test(const Miscs &D1, const Miscs &D2); + static bool yeast_sort_test(const Yeasts &D1, const Yeasts &D2); void WindowTitle(); void brewing_salt_sub(QString salt, double val); void set_brewing_salt(QString salt, double val);