pplugins/pui/slider.h

21 lines
329 B
C

#ifndef SLIDER_H
#define SLIDER_H
struct Slider : Widget {
bool big;
};
struct HSlider : Slider {
/* virtual */ float GetNewValue(int x, int y);
/* virtual */ void OnPaint() const;
};
struct VSlider : Slider {
/* virtual */ float GetNewValue(int x, int y);
/* virtual */ void OnPaint() const;
};
#endif /* SLIDER_H */