blob: 77fa36dd0c2c0cbca50edf3b411bfea363a580c1 (
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
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
124
125
126
127
128
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Ui/skinned
HEADERS += mainwindow.h \
button.h \
display.h \
skin.h \
titlebar.h \
positionbar.h \
number.h \
playlist.h \
listwidget.h \
pixmapwidget.h \
playlisttitlebar.h \
playlistslider.h \
dock.h \
eqwidget.h \
eqtitlebar.h \
eqslider.h \
togglebutton.h \
eqgraph.h \
mainvisual.h \
inlines.h \
fft.h \
textscroller.h \
monostereo.h \
playstatus.h \
volumebar.h \
balancebar.h \
symboldisplay.h \
playlistcontrol.h \
eqpreset.h \
preseteditor.h \
timeindicator.h \
keyboardmanager.h \
skinreader.h \
visualmenu.h \
titlebarcontrol.h \
shadedvisual.h \
shadedbar.h \
cursorimage.h \
playlistbrowser.h \
playlistselector.h \
popupwidget.h \
popupsettings.h \
windowsystem.h \
actionmanager.h \
shortcutitem.h \
shortcutdialog.h \
skinnedfactory.h \
skinnedsettings.h \
hotkeyeditor.h \
listwidgetdrawer.h \
playlistheader.h \
horizontalslider.h
SOURCES += mainwindow.cpp \
button.cpp \
display.cpp \
skin.cpp \
titlebar.cpp \
positionbar.cpp \
number.cpp \
playlist.cpp \
listwidget.cpp \
pixmapwidget.cpp \
playlisttitlebar.cpp \
playlistslider.cpp \
dock.cpp \
eqwidget.cpp \
eqtitlebar.cpp \
eqslider.cpp \
togglebutton.cpp \
eqgraph.cpp \
mainvisual.cpp \
fft.c \
textscroller.cpp \
monostereo.cpp \
playstatus.cpp \
volumebar.cpp \
balancebar.cpp \
symboldisplay.cpp \
playlistcontrol.cpp \
eqpreset.cpp \
preseteditor.cpp \
timeindicator.cpp \
keyboardmanager.cpp \
skinreader.cpp \
visualmenu.cpp \
titlebarcontrol.cpp \
shadedvisual.cpp \
shadedbar.cpp \
cursorimage.cpp \
playlistbrowser.cpp \
playlistselector.cpp \
popupwidget.cpp \
popupsettings.cpp \
windowsystem.cpp \
actionmanager.cpp \
shortcutitem.cpp \
shortcutdialog.cpp \
skinnedfactory.cpp \
skinnedsettings.cpp \
hotkeyeditor.cpp \
listwidgetdrawer.cpp \
playlistheader.cpp \
horizontalslider.cpp
FORMS += \
forms/preseteditor.ui \
forms/playlistbrowser.ui \
forms/popupsettings.ui \
forms/shortcutdialog.ui \
forms/skinnedsettings.ui \
forms/hotkeyeditor.ui
RESOURCES = resources/resources.qrc \
glare/glare.qrc \
translations/translations.qrc
LIBS += $$QMMPUI_LIB
unix {
target.path = $$LIB_DIR/qmmp/Ui
INSTALLS += target
PKGCONFIG += x11
}
|