
Use the new PixmapSlider class which is based on Qt's AbstractSlider class for sliders. This should also fix some offset problems in PositionSlider which appeared after the introduction of the new Button class
45 lines
793 B
Prolog
45 lines
793 B
Prolog
TEMPLATE = lib
|
|
CONFIG += static
|
|
include (../config.pri)
|
|
|
|
MOC_DIR = .moc
|
|
OBJECTS_DIR = .obj
|
|
|
|
SOURCES += xclient.cpp \
|
|
xclientcache.cpp \
|
|
xconfig.cpp \
|
|
xplayback.cpp \
|
|
xcollection.cpp \
|
|
playlistmodel.cpp \
|
|
xmmsqt4.cpp
|
|
|
|
|
|
HEADERS += xclient.h \
|
|
xclientcache.h \
|
|
xconfig.h \
|
|
xplayback.h \
|
|
xcollection.h \
|
|
xcollection_p.h \
|
|
playlistmodel.h \
|
|
xmmsqt4.h \
|
|
debug.h
|
|
|
|
|
|
|
|
;RESOURCES = promoe.qrc
|
|
;macx:RC_FILE = promoe.icns
|
|
;macx:INCLUDEPATH = /sw/include
|
|
|
|
QT += network
|
|
;macx:QTPLUGIN += qjpeg
|
|
QMAKE_LFLAGS += -L$$[QT_INSTALL_PLUGINS]/imageformats
|
|
|
|
|
|
QMAKE_CXXFLAGS += -g
|
|
;CONFIG += debug warn_on
|
|
QMAKE_CXXFLAGS_WARN_ON += -Wno-unused-parameter
|
|
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG += xmms2-client-cpp xmms2-client
|
|
;CONFIG += avahi
|
|
|