Policy: Consumption of raw and generated mouse events
Posted: Tue Oct 26, 2004 06:12
Here is the scenario (indentation used to signify nested calls):
Ie. Even if the event handler consumed the raw event, System indicates that the event wasn't consumed. Is this by purpose and if yes, what is the reasoning?
Code: Select all
1. mouseDown injected into System
2. mouseUpInjected into System
3. MouseButtonUp Event generated
4. handler consumes MouseButtonUp
5. Timer checked, MouseClick Event generated
6. -> MouseClick not consumed
7. -> System returns event not consumed
Ie. Even if the event handler consumed the raw event, System indicates that the event wasn't consumed. Is this by purpose and if yes, what is the reasoning?