本文介绍了如何在C ++中获取中间点击事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何回应C ++ / OpenGL中的中键鼠标?

How can I respond to a middle mouse click in C++/OpenGL?

我知道它可能与 WM_MBUTTONDOWN 事件有关,但是我完全无法使用它。我也不熟悉回调函数所以如果它必须使用,可以彻底解释吗?任何人都可以告诉我如何实现中间鼠标点击事件的代码?

I know it may have to do with the WM_MBUTTONDOWN event however I am completely clueless with using it. I am also unfamiliar with callback functions so if it has to be used, can it be thoroughly explained? Can anyone show me how to implement the code for middle mouse click event?

推荐答案

您可以使用 WM _ 命令尝试并实现旧版本,但我认为这将更容易使用 或。旧的基本GLUT不处理鼠标滚轮,因此,如果您想检查是否需要其中一个。

If you're doing a simple app, GLUT will be sufficient. If you wanna do something more complicated, try freeglut or openglut. The old, basic GLUT doesn't handle the mouse wheel, so if you want to check for that - you'll need one of those two.

这篇关于如何在C ++中获取中间点击事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 18:09