blob: eea1b1c64613751d45a52a15056aae0f62992edc (
plain)
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
|
TEMPLATE = app
CONFIG += warn_on \
thread \
qt \
debug
CONFIG -= release
QT += core gui widgets sql concurrent multimediawidgets
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES = main.cpp \
shemov.cpp \
helper.cpp \
shemoviconprovider.cpp \
configurationdialog.cpp \
statisticsdialog.cpp \
programconfigurator.cpp \
smtreeitem.cpp \
smtreemodel.cpp \
smglobals.cpp \
mappingtablemodel.cpp \
mappingtablewidget.cpp \
newmoviewizard.cpp \
filepropertiesdialog.cpp \
hoverwindow.cpp \
consistencycheck.cpp \
mappingtableeditor.cpp \
smdialog.cpp \
dbanalyzer.cpp \
mappingtreemodel.cpp \
mappingtreewidget.cpp \
newpicsdialog.cpp \
pictureswidget.cpp \
pictureviewer2.cpp \
picfilesmodel.cpp \
smtreeview.cpp \
archivemodel.cpp \
archiveview.cpp \
delegates.cpp \
archivebrowser.cpp \
archivebrowsermodel.cpp \
unpacker.cpp \
searchdialog.cpp \
copyworker.cpp \
randomtab.cpp \
fswidget.cpp \
fsproxy.cpp \
viewer.cpp \
moviewidget.cpp \
smview.cpp \
moviepropertiesdialog.cpp \
sminputdialog.cpp \
editfiledialog.cpp \
picturelistview.cpp \
mappingtreeview.cpp \
mappingtreeresultview.cpp \
mappingeditwidget.cpp \
mappinginputdialog.cpp \
mappingeditdialog.cpp \
mappingtreeproxy.cpp \
mappingtreeresultmodel.cpp \
mappingdata.cpp \
videoviewer.cpp \
wizardtreemodel.cpp \
moviemetadatapage.cpp \
moviemappingpage.cpp
HEADERS = \
shemov.h \
helper.h \
shemoviconprovider.h \
configurationdialog.h \
statisticsdialog.h \
programconfigurator.h \
smtreeitem.h \
smtreemodel.h \
smglobals.h \
mappingtablemodel.h \
mappingtablewidget.h \
newmoviewizard.h \
filepropertiesdialog.h \
hoverwindow.h \
consistencycheck.h \
mappingtableeditor.h \
smdialog.h \
dbanalyzer.h \
mappingtreemodel.h \
mappingtreewidget.h \
newpicsdialog.h \
pictureswidget.h \
pictureviewer2.h \
picfilesmodel.h \
smtreeview.h \
archivemodel.h \
archiveview.h \
delegates.h \
archivebrowser.h \
archivebrowsermodel.h \
unpacker.h \
searchdialog.h \
copyworker.h \
randomtab.h \
fswidget.h \
fsproxy.h \
viewer.h \
moviewidget.h \
smview.h \
moviepropertiesdialog.h \
sminputdialog.h \
editfiledialog.h \
picturelistview.h \
mappingtreeview.h \
mappingtreeresultview.h \
mappingeditwidget.h \
mappinginputdialog.h \
mappingeditdialog.h \
mappingtreeproxy.h \
mappingtreeresultmodel.h \
mappingdata.h \
videoviewer.h \
wizardtreemodel.h \
moviemetadatapage.h \
moviemappingpage.h
LIBS += -lmagic -lXfixes -lX11 -lMagick++-6.Q16HDRI
INCLUDEPATH += /usr/include/ImageMagick-6/
RESOURCES = shemov.qrc
|