blob: 46cbbb9a4d65d6231a38161bf3a9ee0c726fb304 (
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
|
TEMPLATE = app
CONFIG += warn_on \
thread \
qt \
debug
CONFIG -= release
QT += sql
SOURCES = main.cpp \
listmodel.cpp \
movieitem.cpp \
moviemodel.cpp \
coveritem.cpp \
filesystemdirproxy.cpp \
filesystemwidget.cpp \
fileview.cpp \
shemov.cpp \
filesystemfileproxy.cpp \
helper.cpp \
shemoviconprovider.cpp \
messagedialog.cpp \
configurationdialog.cpp \
archiveeditdialog.cpp \
listeditor.cpp \
covereditor.cpp \
archivefilewidget.cpp \
archiveviewwidget.cpp \
archivefileview.cpp \
archiveproxy.cpp \
sizedelegate.cpp \
archiveddelegate.cpp \
textenterdialog.cpp \
moviepropertiesdialog.cpp \
statisticsdialog.cpp \
actorwidget.cpp \
actormodel.cpp \
fileinfoitem.cpp \
fileinfomodel.cpp \
actorcountmodel.cpp \
graphbarwidget.cpp \
programconfigurator.cpp \
addmoviewizard.cpp \
listmodelsingleton.cpp \
moviemodelsingleton.cpp \
pictureviewer.cpp \
pictureviewerinfoitem.cpp \
archiveiteminfoedit.cpp \
archiveitemcoveredit.cpp \
archiveitemeditdialog.cpp \
smtreeitem.cpp \
smtreemodel.cpp \
smubermodel.cpp \
smubermodelsingleton.cpp \
archivetreeview.cpp \
seriestreewidget.cpp \
seriestreemodel.cpp
HEADERS = listitem.h \
listmodel.h \
movieitem.h \
moviemodel.h \
coveritem.h \
filesystemdirproxy.h \
filesystemwidget.h \
fileview.h \
shemov.h \
filesystemfileproxy.h \
helper.h \
shemoviconprovider.h \
messagedialog.h \
configurationdialog.h \
archiveeditdialog.h \
listeditor.h \
covereditor.h \
archivefilewidget.h \
archiveviewwidget.h \
archivefileview.h \
archiveproxy.h \
sizedelegate.h \
archiveddelegate.h \
textenterdialog.h \
moviepropertiesdialog.h \
statisticsdialog.h \
actorwidget.h \
actormodel.h \
fileinfoitem.h \
fileinfomodel.h \
actorcountmodel.h \
graphbarwidget.h \
programconfigurator.h \
addmoviewizard.h \
listmodelsingleton.h \
moviemodelsingleton.h \
pictureviewer.h \
pictureviewerinfoitem.h \
archiveiteminfoedit.h \
archiveitemcoveredit.h \
archiveitemeditdialog.h \
smtreeitem.h \
smtreemodel.h \
smubermodel.h \
smubermodelsingleton.h \
archivetreeview.h \
seriestreewidget.h \
seriestreemodel.h
LIBS += -lmagic
RESOURCES = shemov.qrc
|