src/EditProductTab9.cpp

changeset 210
b45bd6da5220
parent 209
19c50b1f58d3
child 212
8b84dd3579ef
equal deleted inserted replaced
209:19c50b1f58d3 210:b45bd6da5220
250 is_changed(); 250 is_changed();
251 calcEfficiencyAfterBoil(); 251 calcEfficiencyAfterBoil();
252 } 252 }
253 253
254 254
255 void EditProduct::brew_cooling_method_changed(int val)
256 {
257 product->brew_cooling_method = val;
258 is_changed();
259 }
260
261
262 void EditProduct::brew_cooling_to_changed(double val)
263 {
264 product->brew_cooling_to = val;
265 is_changed();
266 }
267
268
269 void EditProduct::brew_cooling_time_changed(double val)
270 {
271 product->brew_cooling_time = val;
272 is_changed();
273 }
274
275
276 void EditProduct::brew_whirlpool9_changed(double val)
277 {
278 product->brew_whirlpool9 = val;
279 is_changed();
280 }
281
282
283 void EditProduct::brew_whirlpool7_changed(double val)
284 {
285 product->brew_whirlpool7 = val;
286 is_changed();
287 }
288
289
290 void EditProduct::brew_whirlpool6_changed(double val)
291 {
292 product->brew_whirlpool6 = val;
293 is_changed();
294 }
295
296
297 void EditProduct::brew_whirlpool2_changed(double val)
298 {
299 product->brew_whirlpool2 = val;
300 is_changed();
301 }
302
303
304 void EditProduct::brew_aerwith_changed(int val)
305 {
306 product->brew_aeration_type = val;
307 is_changed();
308 }
309
310
311 void EditProduct::brew_aerspeed_changed(double val)
312 {
313 product->brew_aeration_speed = val;
314 is_changed();
315 }
316
317
318 void EditProduct::brew_aertime_changed(double val)
319 {
320 product->brew_aeration_time = val;
321 is_changed();
322 }
323
324
325 void EditProduct::brew_trubloss_changed(double val)
326 {
327 product->brew_fermenter_tcloss = val;
328 is_changed();
329 calcFermentables(); // This will also recalculate all volumes.
330 calcIBUs();
331 }
332
333
334 void EditProduct::brew_topupwater_changed(double val)
335 {
336 product->brew_fermenter_extrawater = val;
337 is_changed();
338 calcFermentables(); // This will also recalculate all volumes.
339 calcIBUs();
340 }
341

mercurial