Issue 4988 in pharo: Capturing redButtonPressed and controlKeyPressed

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 4988 in pharo: Capturing redButtonPressed and controlKeyPressed

pharo
Status: Accepted
Owner: [hidden email]
Labels: Type-Bug Milestone-1.3 Importance-High

New issue 4988 by [hidden email]: Capturing redButtonPressed and  
controlKeyPressed
http://code.google.com/p/pharo/issues/detail?id=4988

With Pharo 1.3 and VM Squeak-4.4.7.2357

In the code bellow, redButtonPressed and shiftPressed are detected
correctly.

However if I replace the #shiftPressed message by #controlKeyPressed
message the redButtonPressed and Control key can not be detected *at the
same time*

Indeed, if I remove the redButtonPressed test, ControlKeyPressed is
detected.

All in all, it looks like redButtonPressed and ControlKeyPressed cannot
be captured at the same time.

I am under Linux VM.

Is it an known problem?


mouseMove: evt
    (evt redButtonPressed and: [evt shiftPressed]) ifTrue:
        [...].



_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4988 in pharo: Capturing redButtonPressed and controlKeyPressed

pharo

Comment #1 on issue 4988 by [hidden email]: Capturing  
redButtonPressed and controlKeyPressed
http://code.google.com/p/pharo/issues/detail?id=4988

Here is a little resume of the mouse events behavior over linux vm:

ctrl + click

type: mouseDown buttons: 1 - blue button pressed
type: mouseUp buttons: 16 - has ctrl

alt + click

Nothing

shift + click

type: mouseDown buttons: 12 - has shift - red button pressed
type: mouseUp buttons: 8 - has shift

Ctrl + Shift + Click

type: mouseDown buttons: 26 - has ctrl - has shift - yellow button pressed
type: mouseUp buttons: 24 - has ctrl - has shift

Alt + Shift + Click

type: mouseDown buttons: 73 - has cmd - has shift - blue button pressed
type: mouseUp buttons: 72 - has cmd - has shift

Ctrl + Right click

type: mouseDown buttons: 18 - has ctrl - yellow button pressed
type: mouseUp buttons: 16 - has ctrl

Alt + Right Click

type: mouseDown buttons: 66 - has cmd - yellow button pressed
type: mouseUp buttons: 64 - has cmd

Shift + right click

type: mouseDown buttons: 10 - has shift - yellow button pressed
type: mouseUp buttons: 8 - has shift

Ctrl + Shift + right click

type: mouseDown buttons: 26 - has ctrl - has shift - yellow button pressed
type: mouseUp buttons: 24 - has ctrl - has shift

Alt + shift + right click

type: mouseDown buttons: 74 - has cmd - has shift - yellow button pressed
type: mouseUp buttons: 72 - has cmd - has shift


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4988 in pharo: Capturing redButtonPressed and controlKeyPressed

pharo
In reply to this post by pharo

Comment #3 on issue 4988 by [hidden email]: Capturing  
redButtonPressed and controlKeyPressed
http://code.google.com/p/pharo/issues/detail?id=4988

What is the action to be taken on this one?

Is it a show-stopper for 1.4? Need to be in 1.3?


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4988 in pharo: Capturing redButtonPressed and controlKeyPressed

pharo
Updates:
        Labels: -Milestone-1.3

Comment #4 on issue 4988 by [hidden email]: Capturing  
redButtonPressed and controlKeyPressed
http://code.google.com/p/pharo/issues/detail?id=4988

I remove the 1.3 tag on this one.


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4988 in pharo: Capturing redButtonPressed and controlKeyPressed

pharo
Updates:
        Labels: -Milestone-1.4

Comment #5 on issue 4988 by [hidden email]: Capturing  
redButtonPressed and controlKeyPressed
http://code.google.com/p/pharo/issues/detail?id=4988

What is the status on this one? What is the next action?


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker