Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找出如何用左(或任何)鼠标按钮处理双击。但我找不到任何关于它的信息。
有谁能够帮我?我不想编写自己的双击处理程序。
GLFW_REPEAT 不适用于鼠标按钮。
编写自己的双击处理程序有什么问题?
只需保存鼠标单击发生的时间,例如使用std::chrono::high_resolution_clock::now(),然后在下一次鼠标单击发生时,比较时间。如果它低于特定值,则发生双击。
std::chrono::high_resolution_clock::now()