Minor fix to allow for multiple ticks to be received at one time by the

WIN32 code.  Take abs(direction) as the number of ticks, and count it
down.

<stdlib.h> *should* be included by freeglut_internal.h, I think, so it
should be okay; otherwise add a suitable #include.


git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@268 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
rkrolib 2003-10-30 03:20:24 +00:00
parent c2f23f0bb2
commit df711af72f

View File

@ -1461,6 +1461,7 @@ LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPara
/* THIS IS SPECULATIVE -- John Fay, 10/2/03 */
int direction = HIWORD ( lParam ) / 120 ;
/* Should be WHEEL_DELTA instead of 120 */
int ticks = abs( direction );
/*
* The mouse cursor has moved. Remember the new mouse cursor's position
@ -1483,6 +1484,7 @@ LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPara
( ( (GetKeyState( VK_LMENU ) < 0 ) ||
( GetKeyState( VK_RMENU ) < 0 )) ? GLUT_ACTIVE_ALT : 0 );
while( ticks-- )
if ( window->Callbacks.MouseWheel )
window->Callbacks.MouseWheel(
wheel_number,
@ -1492,11 +1494,11 @@ LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPara
) ;
else /* No mouse wheel, call the mouse button callback twice */
{
int button = wheel_number * 2 + 4;
/*
* XXX The above assumes that you have no more than 3 mouse
* XXX The below assumes that you have no more than 3 mouse
* XXX buttons. Sorry.
*/
int button = wheel_number * 2 + 4;
button += (1 + direction)/2;
window->Callbacks.Mouse ( button, GLUT_DOWN,
window->State.MouseX,