This repository has been archived by the owner on Aug 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uvediteur.cpp
83 lines (72 loc) · 2.56 KB
/
uvediteur.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
83
#include "uvediteur.h"
#include <QSignalMapper>
//void UVEditeur::saveUV()
//{
// uv->setCategorie(StringToCategorie(categorie->itemText(categorie->currentIndex())));
// uv->setCode(code->text());
// uv->setNbCredits(credits->value());
// uv->setOuvertureAutomne(automne->isChecked());
// uv->setOuverturePrintemps(printemps->isChecked());
// uv->setTitre(titre->toPlainText());
// UVManager& myUv=UVManager::getInstance();
// myUv.save(path);
// this->close();
//}
//UVEditeur::UVEditeur(UV &uvToEdit,QString chemin, QWidget *parent) : QWidget(parent)
//{
// path=chemin;
// uv=&uvToEdit;
// code = new QLineEdit(uvToEdit.getCode(),this);
// titre = new QTextEdit(uvToEdit.getTitre(),this);
// save = new QPushButton("Sauver",this);
// cancel = new QPushButton("Annuler",this);
// QObject::connect(cancel, SIGNAL(clicked()),qApp, SLOT(quit()));
// QObject::connect(save, SIGNAL(clicked()),this, SLOT(saveUV()));
// categorie =new QComboBox(this);
// credits = new QSpinBox(this);
// ouverture = new QLabel("ouverture",this);
// lCategorie = new QLabel("catégorie",this);
// lCredits = new QLabel("crédits",this);
// automne = new QCheckBox("automne",this);
// printemps = new QCheckBox("printemps",this);
// if(uvToEdit.ouvertureAutomne())
// {
// automne->setChecked(true);
// }
// if(uvToEdit.ouverturePrintemps())
// {
// printemps->setChecked(true);
// }
// categorie->addItem(CategorieToString(uvToEdit.getCategorie()));
// for(int i=0; i!=(int)Categorie::last; i++)
// {
// if((Categorie)i!=uvToEdit.getCategorie())
// {
// categorie->addItem(CategorieToString((Categorie)i));
// }
// }
// credits->setValue(uvToEdit.getNbCredits());
// credits->setMaximum(CREDITS_MAX);
// credits->setMinimum(CREDITS_MIN);
// Hlayout1=new QHBoxLayout;
// Hlayout1->addWidget(code);
// Hlayout1->addWidget(lCategorie);
// Hlayout1->addWidget(categorie);
// Hlayout1->addWidget(lCredits);
// Hlayout1->addWidget(credits);
// Hlayout2=new QHBoxLayout;
// Hlayout2->addWidget(titre);
// Hlayout3=new QHBoxLayout;
// Hlayout3->addWidget(ouverture);
// Hlayout3->addWidget(automne);
// Hlayout3->addWidget(printemps);
// Hlayout4=new QHBoxLayout;
// Hlayout4->addWidget(save);
// Hlayout4->addWidget(cancel);
// Vlayout=new QVBoxLayout;
// Vlayout->addLayout(Hlayout1);
// Vlayout->addLayout(Hlayout2);
// Vlayout->addLayout(Hlayout3);
// Vlayout->addLayout(Hlayout4);
// this->setLayout(Vlayout);
//}