1 /***************************************************************************
2                           modifyconstraintteachersmaxhoursdailyrealdaysform.cpp  -  description
3                              -------------------
4     begin                : 2021
5     copyright            : (C) 2021 by Lalescu Liviu
6     email                : Please see https://lalescu.ro/liviu/ for details about contacting Liviu Lalescu (in particular, you can find here the e-mail address)
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software: you can redistribute it and/or modify  *
12  *   it under the terms of the GNU Affero General Public License as        *
13  *   published by the Free Software Foundation, either version 3 of the    *
14  *   License, or (at your option) any later version.                       *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #include <QMessageBox>
19 
20 #include "modifyconstraintteachersmaxhoursdailyrealdaysform.h"
21 #include "timeconstraint.h"
22 
ModifyConstraintTeachersMaxHoursDailyRealDaysForm(QWidget * parent,ConstraintTeachersMaxHoursDailyRealDays * ctr)23 ModifyConstraintTeachersMaxHoursDailyRealDaysForm::ModifyConstraintTeachersMaxHoursDailyRealDaysForm(QWidget* parent, ConstraintTeachersMaxHoursDailyRealDays* ctr): QDialog(parent)
24 {
25 	setupUi(this);
26 
27 	okPushButton->setDefault(true);
28 
29 	connect(okPushButton, SIGNAL(clicked()), this, SLOT(ok()));
30 	connect(cancelPushButton, SIGNAL(clicked()), this, SLOT(cancel()));
31 
32 	centerWidgetOnScreen(this);
33 	restoreFETDialogGeometry(this);
34 
35 	this->_ctr=ctr;
36 
37 	weightLineEdit->setText(CustomFETString::number(ctr->weightPercentage));
38 
39 	updateMaxHoursSpinBox();
40 
41 	maxHoursSpinBox->setValue(ctr->maxHoursDaily);
42 }
43 
~ModifyConstraintTeachersMaxHoursDailyRealDaysForm()44 ModifyConstraintTeachersMaxHoursDailyRealDaysForm::~ModifyConstraintTeachersMaxHoursDailyRealDaysForm()
45 {
46 	saveFETDialogGeometry(this);
47 }
48 
updateMaxHoursSpinBox()49 void ModifyConstraintTeachersMaxHoursDailyRealDaysForm::updateMaxHoursSpinBox(){
50 	maxHoursSpinBox->setMinimum(1);
51 	maxHoursSpinBox->setMaximum(2*gt.rules.nHoursPerDay);
52 }
53 
ok()54 void ModifyConstraintTeachersMaxHoursDailyRealDaysForm::ok()
55 {
56 	double weight;
57 	QString tmp=weightLineEdit->text();
58 	weight_sscanf(tmp, "%lf", &weight);
59 	if(weight<0.0 || weight>100.0){
60 		QMessageBox::warning(this, tr("FET information"),
61 			tr("Invalid weight (percentage)"));
62 		return;
63 	}
64 
65 	if(weight<100.0){
66 		int t=QMessageBox::warning(this, tr("FET warning"),
67 			tr("You selected a weight less than 100%. The generation algorithm is not perfectly optimized to work with such weights (even"
68 			 " if in practice it might work well). It is recommended to work only with 100% weights for these constraints. Are you sure you want to continue?"),
69 			 QMessageBox::Yes | QMessageBox::Cancel);
70 		if(t==QMessageBox::Cancel)
71 			return;
72 	}
73 
74 	int max_hours=maxHoursSpinBox->value();
75 
76 	this->_ctr->weightPercentage=weight;
77 	this->_ctr->maxHoursDaily=max_hours;
78 
79 	gt.rules.internalStructureComputed=false;
80 	setRulesModifiedAndOtherThings(&gt.rules);
81 
82 	this->close();
83 }
84 
cancel()85 void ModifyConstraintTeachersMaxHoursDailyRealDaysForm::cancel()
86 {
87 	this->close();
88 }
89