mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
305 B
C++
18 lines
305 B
C++
#if defined(Hiro_HorizontalSlider)
|
|
|
|
namespace hiro {
|
|
|
|
struct pHorizontalSlider : pWidget {
|
|
Declare(HorizontalSlider, Widget)
|
|
|
|
auto minimumSize() const -> Size override;
|
|
auto setLength(unsigned length) -> void;
|
|
auto setPosition(unsigned position) -> void;
|
|
|
|
auto onChange() -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|