blob: 4b5ffe3d38070bd4917c7865614316eae6ef042b (
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
include(../../plugins.pri)
FORMS += \
forms/preseteditor.ui \
forms/aboutdialog.ui \
forms/addurldialog.ui \
forms/playlistbrowser.ui \
forms/popupsettings.ui \
forms/shortcutdialog.ui \
forms/skinnedsettings.ui \
forms/hotkeyeditor.ui
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 \
aboutdialog.h \
timeindicator.h \
keyboardmanager.h \
addurldialog.h \
skinreader.h \
visualmenu.h \
titlebarcontrol.h \
shadedvisual.h \
shadedbar.h \
cursorimage.h \
playlistbrowser.h \
playlistselector.h \
popupwidget.h \
popupsettings.h \
windowsystem.h \
lxdesupport.h \
actionmanager.h \
shortcutitem.h \
shortcutdialog.h \
skinnedfactory.h \
skinnedsettings.h \
hotkeyeditor.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 \
aboutdialog.cpp \
timeindicator.cpp \
keyboardmanager.cpp \
addurldialog.cpp \
skinreader.cpp \
visualmenu.cpp \
titlebarcontrol.cpp \
shadedvisual.cpp \
shadedbar.cpp \
cursorimage.cpp \
playlistbrowser.cpp \
playlistselector.cpp \
popupwidget.cpp \
popupsettings.cpp \
windowsystem.cpp \
lxdesupport.cpp \
actionmanager.cpp \
shortcutitem.cpp \
shortcutdialog.cpp \
skinnedfactory.cpp \
skinnedsettings.cpp \
hotkeyeditor.cpp
QT += network
TEMPLATE = lib
unix:QMAKE_LIBDIR += ../../../../lib
unix:LIBS += -lqmmpui -lqmmp
win32:QMAKE_LIBDIR += ../../../../bin
win32:LIBS += -lqmmpui0 -lqmmp0
CONFIG += release \
warn_on \
plugin
TARGET = $$PLUGINS_PREFIX/Ui/skinned
unix:LIBS += -lqmmp -lqmmpui
win32:LIBS += -lqmmp0 -lqmmpui0
RESOURCES = images/images.qrc stuff.qrc
unix{
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Ui
INSTALLS += target
}
INCLUDEPATH += ../../../
RESOURCES += translations/translations.qrc
TRANSLATIONS = translations/skinned_plugin_ru.ts \
translations/skinned_plugin_tr.ts \
translations/skinned_plugin_zh_CN.ts \
translations/skinned_plugin_cs.ts \
translations/skinned_plugin_pt_BR.ts \
translations/skinned_plugin_uk_UA.ts \
translations/skinned_plugin_zh_TW.ts \
translations/skinned_plugin_de.ts \
translations/skinned_plugin_pl_PL.ts \
translations/skinned_plugin_it.ts \
translations/skinned_plugin_lt.ts \
translations/skinned_plugin_hu.ts \
translations/skinned_plugin_nl.ts \
translations/skinned_plugin_ja.ts \
translations/skinned_plugin_es.ts \
translations/skinned_plugin_sk.ts
CONFIG += link_pkgconfig
PKGCONFIG += x11
|