Questions tagged [mouse-hook]

Changing, listening or reacting to events related to specific mouse events.

A mouse hook is a feature that allows to replace or extend the standard behavior for specific mouse events in a systematic way.

The hook may work at a low level, by replacing some system routines at operating system level or at driver level. It is different from a simple event listener, in that the hooks behavior is not specific for a software feature, but is general to the whole application or event to the whole system.

Related tags

  • Use tag for hooking other event drivers than those of the mouse.
  • Use age for hooking mouse keys and keyboard keys
  • Use tag for .Net mouse key hooking

See also

92 questions
-3
votes
1 answer

C++: Global Mouse hook and reset the position of window

Now, I'm developing the app to reset the position of window. One thing to notice is that I used the global mouse hook to listen the desktop mouse event. Global Mouse hook is working well. My issue is that SetWindowPos() method is working…
falcon.guru
  • 33
  • 1
  • 4
-3
votes
1 answer

How to disable right-click button on windows using C++?

Is there a way to disable the right-click button? I'm trying to use a mouse hook, that just simply disables the right-click button when you run the program. #include #include #include #include #include…
TheTester
  • 23
  • 2
1 2 3 4 5 6
7