sam <seto@vsnl.com> wrote:
hi Wojtek Lerch,
thanks for your reply,
i have found the problem >
> , but i do not have the solution > 
this is problem
when we release the mouse button, multiple mouse release events get
fired, out of these multipe mouse release events the last mouse release
event is Ph_EV_RELEASE_ENDCLICK.
Yes. Except the Ph_EV_RELEASE_ENDCLICK is generated up to 250ms after
the release, and only if you don’t click again within that time. The
purpose of the ENDCLICK event is to tell you that Photon has decided
that the click you received recently is not going to be considered the
first click of a double-click (or the second click of a triple-click,
and so on) even if the person clicks again very soon. In other words,
it tells you that the click_count has stopped incrementing and will
start counting from one the next time a button is pressed.
application call ACTIVATE callback only after this ENDCLICK event is
received. and for mouse release event DISARM callback is called.
No. The library calls the ACTIVATE callback if it sees a REAL release
while the button is armed.
When you release a button, Photon sends two release events: a REAL one
and a PHANTOM one. The REAL one is sent where the mouse currently
points to, whereas the PHANTOM one goes where the last PRESS was sent
to. The REAL release causes buttons to call the ACTIVATE callback, but
only if the button is still armed; the PHANTOM causes the button to
disarm itself. This way, if you press on one button, then move to
another button, and then release, neither button gets activated.
so with my transparent region program and my test app. i found that the
test application is receiving the mouse button release event and it is
calling the DISARM callback. but it is not receiving ENDCLICK event, that is
why it is not calling ACTIVATE callback.
I think you’re confusing the REAL release with the ENDCLICK.
now in my region program i have written separate function for
re-emitting the pointer events, which i have given in my earlier post. this
function is getting called for emitting all pointer events.
why only the ENDCLICK event is not re-emitting or not receiving by the other
application ?
how the ENDCLICK event is diffrenet from other mouse button release event ?
The ENDCLICK is normally ignored by widgets.
The REAL release is different for the other releases in that it’s
rectangle doesn’t necessarily match the current position of the mouse.
But when it’s an application rather than Photon that emits them, Photon
threats them the same way.