-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidgetnuoto.cpp
82 lines (66 loc) · 1.84 KB
/
widgetnuoto.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Andrea Favero
* 1125545
*/
#include "widgetnuoto.h"
#include <QMessageBox>
WidgetNuoto::WidgetNuoto()
{
layoutWidget = new QGridLayout;
gbNuoto = new QGroupBox("NUOTO");
layout = new QFormLayout;
lblLibero = new QLabel("Vasche stile:");
spinLibero = new QSpinBox();
spinLibero->setRange(0, 400);
layout->addRow(lblLibero, spinLibero);
lblRana = new QLabel("Vasche rana:");
spinRana = new QSpinBox();
spinRana->setRange(0, 400);
layout->addRow(lblRana, spinRana);
lblDorso = new QLabel("Vasche dorso:");
spineDorso = new QSpinBox();
spineDorso->setRange(0, 400);
layout->addRow(lblDorso, spineDorso);
gbNuoto->setLayout(layout);
layoutWidget->addWidget(gbNuoto);
setLayout(layoutWidget);
//setFixedSize();
}
int WidgetNuoto::vascheLibero() const {
return spinLibero->value();
}
int WidgetNuoto::vascheRana() const {
return spinRana->value();
}
int WidgetNuoto::vascheDorso() const {
return spineDorso->value();
}
void WidgetNuoto::setVascheLibero(int v) {
spinLibero->setValue(v);
}
void WidgetNuoto::setVascheRana(int v) {
spinRana->setValue(v);
}
void WidgetNuoto::setVascheDorso(int v) {
spineDorso->setValue(v);
}
void WidgetNuoto::reset() {
spinLibero->setValue(0);
spinRana->setValue(0);
spineDorso->setValue(0);
}
void WidgetNuoto::dialogErroreForm() const {
QMessageBox mes;
mes.setIcon(QMessageBox::Information);
mes.setText("Errore!");
mes.setInformativeText("È necessario aver fatto almeno una vasca in uno dei tre stili.");
mes.setStandardButtons(QMessageBox::Ok);
mes.exec();
}
void WidgetNuoto::controlloForm(bool& controllo) {
if( !spinRana->value() && !spinLibero->value() && !spineDorso->value() )
controllo = true;
else
controllo = false;
}