-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
56 lines (38 loc) · 1.2 KB
/
main.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
#include <QApplication>
#include "note.h"
#include "version.h"
#include "tache.h"
#include "relation.h"
#include "winterface.h"
#include "wgauche.h"
#include "wnoteact.h"
#include "wnotearch.h"
#include "wrelations.h"
#include "wrelationdetails.h"
int main(int argc, char* argv[]) {
//static CentreNoteAct centrenoteact=0;
//static CentreNoteArch centrenotearch=0;
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication app(argc, argv);
Interface* interface = new Interface();
interface->setFixedSize(1200, 400);
//Gauche gauche(interface);
//gauche.show();
//gauche.move(0,20);
//CentreNoteAct centrenoteact(&interface);
//centrenoteact.show();
//centrenoteact.move(400,20);
//CentreNoteArch centrenotearch(interface);
//centrenotearch.show();
//centrenotearch.move(400,20);
//CentreRelations centrerelations(interface);
//centrenotearch.show();
//centrerelations.move(800,15);
//CentreRelationNonOrientee centrerelationnonorientee(interface);
//centrerelationnonorientee.move(800,205);
//CentreRelationDetails centre(interface);
//centre.show();
interface->show();
return app.exec();
return 0;
}