34

I want to use the mouse scrollwheel in my OpenGL GLUT program to zoom in and out of a scene? How do I do that?

Ashwin Nanjappa
  • 76,204
  • 83
  • 211
  • 292

3 Answers3

38

Freeglut's glutMouseWheelFunc callback is version dependant and not reliable in X. Use standard mouse function and test for buttons 3 and 4.

The OpenGlut notes on glutMouseWheelFunc state:

Due to lack of information about the mouse, it is impossible to implement this correctly on X at this time. Use of this function limits the portability of your application. (This feature does work on X, just not reliably.) You are encouraged to use the standard, reliable mouse-button reporting, rather than wheel events.

Using standard GLUT mouse reporting:

#include <GL/glut.h>

<snip...>

void mouse(int button, int state, int x, int y)
{
   // Wheel reports as button 3(scroll up) and button 4(scroll down)
   if ((button == 3) || (button == 4)) // It's a wheel event
   {
       // Each wheel event reports like a button click, GLUT_DOWN then GLUT_UP
       if (state == GLUT_UP) return; // Disregard redundant GLUT_UP events
       printf("Scroll %s At %d %d\n", (button == 3) ? "Up" : "Down", x, y);
   }else{  // normal button event
       printf("Button %s At %d %d\n", (state == GLUT_DOWN) ? "Down" : "Up", x, y);
   }
}

<snip...>

glutMouseFunc(mouse);

As the OP stated, it is "dead simple". He was just wrong.

Colonel Thirty Two
  • 23,953
  • 8
  • 45
  • 85
BentFX
  • 2,746
  • 5
  • 25
  • 30
  • 2
    Unfortunately using fixed buttons is pretty unreliable as WHICH mouse buttons correspond to the mouse wheel depends on what device you have plugged in. In fact, I think the most common is button 4/5 for up/down, not 3/4. For any usable program, you want to make it easy for the user to modify this. – Chris Dodd Jul 29 '12 at 20:00
  • 3
    On my Mac with free glut, 3/4 correspond to vertical up and down scrolling and 5/6 correspond to horizontal scrolling (on my trackpad). – Alec Jacobson Oct 19 '12 at 08:54
  • Thanks mate, this solution works perfectly in my testing scenario. – Maurizio Benedetti Feb 05 '13 at 17:59
26

Note that venerable Nate Robin's GLUT library doesn't support the scrollwheel. But, later implementations of GLUT like FreeGLUT do.

Using the scroll wheel in FreeGLUT is dead simple. Here is how:

Declare a callback function that shall be called whenever the scroll wheel is scrolled. This is the prototype:

void mouseWheel(int, int, int, int);

Register the callback with the (Free)GLUT function glutMouseWheelFunc().

glutMouseWheelFunc(mouseWheel);

Define the callback function. The second parameter gives the direction of the scroll. Values of +1 is forward, -1 is backward.

void mouseWheel(int button, int dir, int x, int y)
{
    if (dir > 0)
    {
        // Zoom in
    }
    else
    {
        // Zoom out
    }

    return;
}

That's it!

Ashwin Nanjappa
  • 76,204
  • 83
  • 211
  • 292
  • 6
    Much to my annoyance, freeGLUT doesn't seem to implement the glutMouseWheelFunc() callback. Rather ironic that posters were complaining about this style of posting, yet the answer you posted for yourself was incorrect. – Rich Jan 12 '09 at 20:57
  • 19
    Adding to that - even when one uses `#include ` so that the code compiles, glutMouseWheelFunc does not seem to be called (as tested on Ubuntu 10.04 x86_64, which ships freeglut 2.6.0). The solution is to use the regular `glutMouseFunc` callback and check for `button == 3` for wheel up, and `button == 4` for wheel down. – Carlos Scheidegger Jul 14 '10 at 21:13
  • glutMouseWheelFunc callback is windows specific might not in Linux and MAC systems – AMCoded Nov 17 '17 at 08:41
  • [As of 2020 freeglut seems to implement `glutMouseWheelFunc` on X11](https://sourceforge.net/p/freeglut/code/HEAD/tree/trunk/freeglut/freeglut/src/x11/fg_main_x11.c#l850), though I didn't check if it works. – Yakov Galka Apr 27 '20 at 15:24
4

observe case 3 and 4 in the switch statement below in the mouseClick callback

glutMouseFunc(mouseClick);

...

void mouseClick(int btn, int state, int x, int y) {
  if (state == GLUT_DOWN) {
    switch(btn) {
    case GLUT_LEFT_BUTTON:
      std::cout << "left click at: (" << x << ", " << y << ")\n";
      break;
    case GLUT_RIGHT_BUTTON:
      std::cout << "right click at: (" << x << ", " << y << ")\n";
      break;
    case GLUT_MIDDLE_BUTTON:
      std::cout << "middle click at: (" << x << ", " << y << ")\n";
      break;
    case 3:  //mouse wheel scrolls
      std::cout << "mouse wheel scroll up\n";
      break;
    case 4:
      std::cout << "mouse wheel scroll down\n";
      break;
    default:
      break;
    }
  }
  glutPostRedisplay();
}
StackAttack
  • 1,139
  • 1
  • 9
  • 15