RavensKrag / ThoughtTrace

Naturally chart out words in 2D space, mapping the relations between them. Even link to other ideas. Then, build your programs on top of the flow.
0 stars 0 forks source link

make sure button parser can correctly fire events for modifiers and chords #3

Open RavensKrag opened 10 years ago

RavensKrag commented 10 years ago

if I go to fire a sequence with a modifier (control + click) I DO NOT want the standard sequence to fire (click)

in this case, you don't even have to fire the click and then cancel it you just have to make sure that the standard click doesn't fire

now chords, on the other hand, those could get tricky because you may need to cancel an existing event to fire a more complex event that better matches the pattern

RavensKrag commented 10 years ago

Also, make sure that modifier sequences like (control + click) don't fire if click is pressed first, and then control is pressed later on. The modifier must come first.

(At least, that's my current inclination.)