mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
17 lines
327 B
C++
17 lines
327 B
C++
#if defined(Hiro_HorizontalScrollBar)
|
|
|
|
namespace hiro {
|
|
|
|
struct pHorizontalScrollBar : pWidget {
|
|
Declare(HorizontalScrollBar, Widget)
|
|
|
|
auto minimumSize() const -> Size override;
|
|
auto setLength(unsigned length) -> void;
|
|
auto setPosition(unsigned position) -> void;
|
|
|
|
auto onChange(WPARAM wparam) -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|