blob: 5e2f8dce9933bcbe6149be3f605b00a0818ae3e7 (
plain) (
blame)
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Ui/qsui
SOURCES += \
mainwindow.cpp \
listwidget.cpp \
visualmenu.cpp \
positionslider.cpp \
actionmanager.cpp \
shortcutdialog.cpp \
shortcutitem.cpp \
popupsettings.cpp \
popupwidget.cpp \
equalizer.cpp \
logo.cpp \
keyboardmanager.cpp \
aboutqsuidialog.cpp \
qsuifactory.cpp \
qsuisettings.cpp \
qsuianalyzer.cpp \
fft.c \
colorwidget.cpp \
qsuitabwidget.cpp \
qsuitabbar.cpp \
eqpreset.cpp \
filesystembrowser.cpp \
elidinglabel.cpp \
coverwidget.cpp \
playlistbrowser.cpp \
toolbareditor.cpp \
listwidgetdrawer.cpp \
playlistheader.cpp \
hotkeyeditor.cpp \
volumeslider.cpp \
qsuiquicksearch.cpp
HEADERS += mainwindow.h \
listwidget.h \
visualmenu.h \
positionslider.h \
actionmanager.h \
shortcutdialog.h \
shortcutitem.h \
popupsettings.h \
popupwidget.h \
equalizer.h \
logo.h \
keyboardmanager.h \
aboutqsuidialog.h \
qsuifactory.h \
qsuisettings.h \
qsuianalyzer.h \
fft.h \
inlines.h \
colorwidget.h \
qsuitabwidget.h \
qsuitabbar.h \
eqpreset.h \
filesystembrowser.h \
elidinglabel.h \
coverwidget.h \
playlistbrowser.h \
toolbareditor.h \
listwidgetdrawer.h \
playlistheader.h \
hotkeyeditor.h \
volumeslider.h \
qsuiquicksearch.h
FORMS += forms/mainwindow.ui \
forms/shortcutdialog.ui \
forms/popupsettings.ui \
forms/aboutqsuidialog.ui \
forms/qsuisettings.ui \
forms/toolbareditor.ui \
forms/hotkeyeditor.ui
RESOURCES += translations/translations.qrc resources/qsui_resources.qrc txt/qsui_txt.qrc
LIBS += -lqmmpui
unix {
target.path = $$LIB_DIR/qmmp/Ui
INSTALLS += target
}
win32 {
INCLUDEPATH += ./
}
|