-
Notifications
You must be signed in to change notification settings - Fork 1
/
Furqan.pro
109 lines (98 loc) · 2.96 KB
/
Furqan.pro
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
QT = core gui widgets sql printsupport
TEMPLATE = app
TARGET = Furqan
VERSION = 1.0.0
CONFIG += release
RESOURCES += \
resource.qrc
RC_ICONS = furqan.ico
TRANSLATIONS += translations\en.ts translations\ar.ts
INCLUDEPATH += widgets structures relations delegates handlers utility
FORMS += \
interfaces\classwidget.ui \
interfaces\competitionwidget.ui \
interfaces\competitorwidget.ui \
interfaces\coursewidget.ui \
interfaces\mainwidget.ui \
interfaces\employeewidget.ui \
interfaces\jobwidget.ui \
interfaces\quranwidget.ui \
interfaces\resultwidget.ui \
interfaces\settingwidget.ui \
interfaces\studentwidget.ui \
interfaces\teacherwidget.ui \
interfaces\teachingwidget.ui
HEADERS += \
delegates/datedelegate.h \
delegates/mapdelegate.h \
delegates/numericdelegate.h \
delegates/relationaldelegate.h \
delegates/sqldelegate.h \
delegates/uniquedelegate.h \
handlers/databasehandler.h \
handlers/maphandler.h \
handlers/modelhandler.h \
handlers/printerhandler.h \
handlers/settinghandler.h \
handlers/translatorhandler.h \
relations/abstractrelation.h \
relations/maprelation.h \
relations/sqlrelation.h \
structures/printOption.h \
structures/richsqlmodel.h \
utility/enumeration.h \
utility/generalenumeration.h \
utility/mapenumeration.h \
utility/resourcemanager.h \
utility/settingenumeration.h \
utility/sqlenumeration.h \
widgets/classwidget.h \
widgets/competitionwidget.h \
widgets/competitorwidget.h \
widgets/coursewidget.h \
widgets/mainwidget.h \
widgets/employeewidget.h \
widgets/jobwidget.h \
widgets/quranwidget.h \
widgets/resultwidget.h \
widgets/settingwidget.h \
widgets/studentwidget.h \
widgets/teacherwidget.h \
widgets/teachingwidget.h \
widgets/printdialog.h \
widgets/texteditor.h
SOURCES += \
delegates/datedelegate.cpp \
delegates/mapdelegate.cpp \
delegates/numericdelegate.cpp \
delegates/relationaldelegate.cpp \
delegates/sqldelegate.cpp \
delegates/uniquedelegate.cpp \
handlers/databasehandler.cpp \
handlers/maphandler.cpp \
handlers/modelhandler.cpp \
handlers/printerhandler.cpp \
handlers/settinghandler.cpp \
handlers/translatorhandler.cpp \
relations/abstractrelation.cpp \
relations/maprelation.cpp \
relations/sqlrelation.cpp \
structures/printoption.cpp \
structures/richsqlmodel.cpp \
utility/resourcemanager.cpp \
widgets/classwidget.cpp \
widgets/competitionwidget.cpp \
widgets/competitorwidget.cpp \
widgets/coursewidget.cpp \
widgets/mainwidget.cpp \
widgets/employeewidget.cpp \
widgets/jobwidget.cpp \
widgets/quranwidget.cpp \
widgets/resultwidget.cpp \
widgets/settingwidget.cpp \
widgets/studentwidget.cpp \
widgets/teacherwidget.cpp \
widgets/teachingwidget.cpp \
widgets/printdialog.cpp \
widgets/texteditor.cpp \
main.cpp