22 lines
373 B
C
22 lines
373 B
C
#ifndef SLIDER_H
|
|
#define SLIDER_H
|
|
|
|
struct Slider : Widget {
|
|
Colour colour;
|
|
bool big;
|
|
};
|
|
|
|
struct HSlider : Slider {
|
|
/* virtual */ float GetNewValue(int x, int y);
|
|
|
|
/* virtual */ void OnPaint(const PUi *pui) const;
|
|
};
|
|
|
|
struct VSlider : Slider {
|
|
/* virtual */ float GetNewValue(int x, int y);
|
|
|
|
/* virtual */ void OnPaint(const PUi *pui) const;
|
|
};
|
|
|
|
#endif /* SLIDER_H */
|