-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCursusCreateur.cpp
More file actions
157 lines (132 loc) · 5.17 KB
/
CursusCreateur.cpp
File metadata and controls
157 lines (132 loc) · 5.17 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#include"CursusCreateur.h"
void CursusCreateur::sauverCursus(){
if(CursusManager::getInstance().existCursus(titre->text())==0){
CurCur.setTitre(titre->text());
CurCur.setCreditCS(CreditCS->text().toInt());
CurCur.setCreditTM(CreditTM->text().toInt());
CurCur.setCreditTSH(CreditTSH->text().toInt());
CurCur.setCreditLibre(CreditLibre->text().toInt());
QMessageBox::information(this, "Sauvegarde", "Cursus sauvegardé...");
}
else{
QMessageBox::information(this, "Sauvegarde", "Le Cursus existe déjà !");
}
}
void CursusCreateur::AjouterlUV(){
if(UVManager::getInstance().existUV(AjouterUneUV->text())!=1)
QMessageBox::information(this, "Sauvegarde", "Cette UV n'existe pas.");
else{
unsigned int i=0;
while((i<CurCur.getNbUV())&&(CurCur.getUV(i)->getCode()!=AjouterUneUV->text())){
i++;
}
if (i==CurCur.getNbUV()){
CurCur.AjouterUv(UVManager::getInstance().trouverUV(AjouterUneUV->text()));
QMessageBox::information(this, "Sauvegarde", "UV Ajoutée");
}
else
QMessageBox::information(this, "Sauvegarde", "Cette UV existe déjà !");
AjouterUneUV->clear();
}
}
void CursusCreateur::EnleverlUV(){
unsigned int i=0;
while((i<CurCur.getNbUV())&&(CurCur.getUV(i)->getCode()!=EnleverUneUV->text())){
i++;
}
if (i==CurCur.getNbUV())
QMessageBox::information(this, "Sauvegarde", "UV Inexistante dans le Cursus");
else{
CurCur.retirerUV(i);
QMessageBox::information(this, "Sauvegarde", "UV Supprimée");
}
EnleverUneUV->clear();
}
void CursusCreateur::activerSauverC(){
sauverC->setEnabled(true);
}
CursusCreateur::CursusCreateur(Cursus& CursusToEdit, QWidget *parent) :
QWidget(parent),CurCur(CursusToEdit){
this->setWindowTitle(QString("Edition du Cursus ")+CurCur.getTitle());
// creation des labels
titreLabel = new QLabel("titre",this);
uvLabel = new QLabel("Uvs",this);
NbCreditsToGet= new QLabel("Crédits à Obtenir pour valider :",this);
CSLabel = new QLabel("CS :",this);
TMLabel= new QLabel("TM:",this);
CLLabel= new QLabel("Libres:",this);
TSHLabel= new QLabel("TSH",this);
// création des composants éditables
titre = new QLineEdit("",this);
List = new QComboBox(this);
AjouterUneUV= new QLineEdit;
EnleverUneUV= new QLineEdit;
CreditCS=new QLineEdit("",this);
CreditTM=new QLineEdit("",this);
CreditTSH=new QLineEdit("",this);
CreditLibre=new QLineEdit("",this);
//Création des boutons
sauverC= new QPushButton("Sauver", this);
QObject::connect(sauverC,SIGNAL(clicked()),this,SLOT(sauverCursus()));
sauverC->setEnabled(false);
annuler= new QPushButton("Annuler", this);
QObject::connect(annuler,SIGNAL(clicked()),this,SLOT(close()));
ajouter= new QPushButton("Ajouter", this);
QObject::connect(ajouter,SIGNAL(clicked()),this,SLOT(AjouterlUV())) ;
enlever= new QPushButton("Enlever", this);
QObject::connect(enlever,SIGNAL(clicked()),this,SLOT(EnleverlUV()));
// Ajout de la liste des UV.
for(unsigned int i=0;i<CurCur.getNbUV();i++){
List->addItem(CurCur.getUV(i)->getCode());
}
// connections******************************
QObject::connect(titre,SIGNAL(textEdited(QString)),this,SLOT(activerSauverC()));
QObject::connect(ajouter,SIGNAL(clicked()),this,SLOT(activerSauverC()));
QObject::connect(enlever,SIGNAL(clicked()),this,SLOT(activerSauverC()));
QObject::connect(CreditCS,SIGNAL(textEdited(QString)),this,SLOT(activerSauverC()));
QObject::connect(CreditTM,SIGNAL(textEdited(QString)),this,SLOT(activerSauverC()));
QObject::connect(CreditTSH,SIGNAL(textEdited(QString)),this,SLOT(activerSauverC()));
QObject::connect(CreditLibre,SIGNAL(textEdited(QString)),this,SLOT(activerSauverC()));
//disposition des couches
coucheH1 = new QHBoxLayout;
coucheH2 = new QHBoxLayout;
coucheH3 = new QHBoxLayout;
coucheH4 = new QHBoxLayout;
coucheH5 = new QHBoxLayout;
coucheH6 = new QHBoxLayout;
coucheH7 = new QHBoxLayout;
coucheH8 = new QHBoxLayout;
coucheH9 = new QHBoxLayout;
coucheH10 = new QHBoxLayout;
coucheH1->addWidget(titreLabel);
coucheH1->addWidget(titre);
coucheH2->addWidget(uvLabel);
coucheH2->addWidget(List);
coucheH3->addWidget(AjouterUneUV);
coucheH3->addWidget(ajouter);
coucheH4->addWidget(EnleverUneUV);
coucheH4->addWidget(enlever);
coucheH5->addWidget(annuler);
coucheH5->addWidget(sauverC);
coucheH6->addWidget(NbCreditsToGet);
coucheH7->addWidget(CSLabel);
coucheH7->addWidget(CreditCS);
coucheH8->addWidget(TMLabel);
coucheH8->addWidget(CreditTM);
coucheH9->addWidget(TSHLabel);
coucheH9->addWidget(CreditTSH);
coucheH10->addWidget(CLLabel);
coucheH10->addWidget(CreditLibre);
couche = new QVBoxLayout;
couche->addLayout(coucheH1);
couche->addLayout(coucheH2);
couche->addLayout(coucheH3);
couche->addLayout(coucheH4);
couche->addLayout(coucheH6);
couche->addLayout(coucheH7);
couche->addLayout(coucheH8);
couche->addLayout(coucheH9);
couche->addLayout(coucheH10);
couche->addLayout(coucheH5);
setLayout(couche);
};