Change Sliders to new Slider-class

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
This commit is contained in:
Thomas Frauendorfer 2008-05-08 04:19:34 +02:00
parent d3e140ad0e
commit 60c17af114
12 changed files with 142 additions and 161 deletions

View file

@ -33,6 +33,7 @@ class MainDisplay;
#include "Display.h"
class PixmapButton;
class PixmapSlider;
class TextScroller;
class TimeDisplay;
class SmallNumberDisplay;
@ -59,8 +60,8 @@ class MainDisplay : public SkinDisplay
StereoMono *m_stereo;
PosBar *m_posbar;
Slider *m_vslider;
Slider *m_bslider;
PixmapSlider *m_vslider;
PixmapSlider *m_bslider;
PlayStatus *m_playstatus;
MainWindow *getMW(void) { return m_mw; }