bsnes/hiro/gtk/widget/horizontal-slider.hpp

12 lines
224 B
C++

namespace hiro {
struct pHorizontalSlider : pWidget {
Declare(HorizontalSlider, Widget)
auto minimumSize() const -> Size;
auto setLength(unsigned length) -> void;
auto setPosition(unsigned position) -> void;
};
}