is it possible to detect mouse wheel scrolling in both the X
and Y directions simultaneously? I'm guessing the answer is no.
All examples I've seen (using the Carbon event
kEventMouseWheelMoved)
Look at the newer kEventMouseScroll event. It can handle both at
the same time.
Thanks, Steve. Interesting, but only available in 10.5. We're
compiling in 10.4, so it's not available to us yet.
According to this:
* Availability:
* Mac OS X: in version 10.4 and later in Carbon.framework
* CarbonLib: not available
*/
enum {
kEventMouseScroll = 11
};
and this:
http://developer.apple.com/qa/qa2005/qa1453.html
this event is actually available in 10.4. Just define it yourself if
you use 10.4 SDK that lacks it for some reason.