blob: f1ab2f84616c92539cad3bf03584627d64a1e1b8 (
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
|
include(../../plugins.pri)
FORMS += \
forms/preseteditor.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 \
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
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
TEMPLATE = lib
unix:QMAKE_LIBDIR += ../../../../lib
unix:LIBS += -lqmmpui -lqmmp
win32:QMAKE_LIBDIR += ../../../../bin
win32:LIBS += -lqmmpui0 -lqmmp0
CONFIG += warn_on \
plugin
TARGET = $$PLUGINS_PREFIX/Ui/skinned
unix:LIBS += -lqmmp -lqmmpui
win32:LIBS += -lqmmp0 -lqmmpui0
RESOURCES = resources/resources.qrc default/default.qrc
unix{
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Ui
INSTALLS += target
CONFIG += link_pkgconfig
PKGCONFIG += x11
}
INCLUDEPATH += ../../../
RESOURCES += translations/translations.qrc
|