1 /***************************************************************************
2                           modifyconstraintteachersmaxmorningsperweekform.cpp  -  description
3                              -------------------
4     begin                : 2009
5     copyright            : (C) 2009 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 "modifyconstraintteachersmaxmorningsperweekform.h"
21 #include "timeconstraint.h"
22 
ModifyConstraintTeachersMaxMorningsPerWeekForm(QWidget * parent,ConstraintTeachersMaxMorningsPerWeek * ctr)23 ModifyConstraintTeachersMaxMorningsPerWeekForm::ModifyConstraintTeachersMaxMorningsPerWeekForm(QWidget* parent, ConstraintTeachersMaxMorningsPerWeek* 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 	updateMaxMorningsSpinBox();
40 
41 	maxMorningsSpinBox->setValue(ctr->maxMorningsPerWeek);
42 }
43 
~ModifyConstraintTeachersMaxMorningsPerWeekForm()44 ModifyConstraintTeachersMaxMorningsPerWeekForm::~ModifyConstraintTeachersMaxMorningsPerWeekForm()
45 {
46 	saveFETDialogGeometry(this);
47 }
48 
updateMaxMorningsSpinBox()49 void ModifyConstraintTeachersMaxMorningsPerWeekForm::updateMaxMorningsSpinBox(){
50 	maxMorningsSpinBox->setMinimum(1);
51 	maxMorningsSpinBox->setMaximum(gt.rules.nDaysPerWeek/2);
52 }
53 
ok()54 void ModifyConstraintTeachersMaxMorningsPerWeekForm::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 	if(weight!=100.0){
65 		QMessageBox::warning(this, tr("FET information"),
66 			tr("Invalid weight (percentage) - it has to be 100%"));
67 		return;
68 	}
69 
70 	int max_mornings=maxMorningsSpinBox->value();
71 
72 	this->_ctr->weightPercentage=weight;
73 	this->_ctr->maxMorningsPerWeek=max_mornings;
74 
75 	gt.rules.internalStructureComputed=false;
76 	setRulesModifiedAndOtherThings(&gt.rules);
77 
78 	this->close();
79 }
80 
cancel()81 void ModifyConstraintTeachersMaxMorningsPerWeekForm::cancel()
82 {
83 	this->close();
84 }
85