Mouse behaviour

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
Fredo
Posts: 2
Joined: 24 Mar 2014, 06:12

Mouse behaviour

Post by Fredo » 26 Mar 2014, 12:24

Hi,

1.
I try to change the mouse's behaviour with the DrawingNavigator.
I would like to be able to move the drawing on the left click instead of the right click.
So I change the MouseDown and MouseMove methods, which seems to work fine, the MovePictureRect is called properly.
But the drawing is repainted only when the button is released for the left button when it is still repainted during the move for the middle button !?

2.
Is there any simple way to know which entity is under the mouse? Like focus or hovering entity?

Thank you.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Mouse behaviour

Post by support » 27 Mar 2014, 11:48

Hello Fredo.
Please note, we strongly not recommend to modify any source code methods.
We tried to modify MouseDown and MouseMove methods to receive mouse buttons inversion. The required behavior was received after mbLeft/mbRight and ssLeft/ssRight displacements. The drawing was repainted similarly for middle and left buttons with Viewer application. Please check your modifications.

There is no a simple way to know which entity is under the cursor. You can use TsgDrawingNavigator.GetDrawingCoords to receive drawing coordinates for the cursor. However detecting an underlying entity is not a trivial task.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Fredo
Posts: 2
Joined: 24 Mar 2014, 06:12

Re: Mouse behaviour

Post by Fredo » 28 Mar 2014, 12:51

Thanks, I find my problem, it was the PerformCancel method.

Post Reply