SFML community forums

Help => System => Topic started by: Skomakar'n on October 25, 2010, 03:04:01 am

Title: Does SFML support horizontal mouse scrolling?
Post by: Skomakar'n on October 25, 2010, 03:04:01 am
I'm making a little GUI system for my SFML-based engine, and I have boxes with scrolling content working, and I can use the mouse to scroll vertically, but as I'm using a MacBook Pro with a trackpad that can also scroll horizontally, I'm wondering if there is any possibility for SFML to detect horizontal scrolling, so that I can scroll through the content horizontally using the mouse scroll as well, rather than having to click the scrollbar slider and drag it around manually.

Is there?
Title: Does SFML support horizontal mouse scrolling?
Post by: Laurent on October 25, 2010, 07:50:34 am
Nop.
Title: Does SFML support horizontal mouse scrolling?
Post by: Skomakar'n on October 25, 2010, 02:07:13 pm
I'll emulate it through requiring shift being held down to scroll horizontally, then.
Thanks.