T O P I C R E V I E W |
jonjon |
Posted - Mar 10 2014 : 09:39:07 In a TImageEnVect, how to force circle drawing (and not an ellipse) when MouseInteractVt := [miPutEllipse] without having to use the CTRL keyboard shortcut ?
Thanks. |
4 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Mar 17 2014 : 17:23:54 Hi
It will be ready within a week. You will be able to use ImageEnVect1.ForceAltKey to force a circle with miPutEllipse (or square with miPutBox, fixed angle with miPutLine, etc).
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
jonjon |
Posted - Mar 14 2014 : 06:53:10 OK then. I will wait for v5.0.7. Do you have any estimate on release date ? Thanks. |
xequte |
Posted - Mar 12 2014 : 16:34:49 Hi
We'll have a way to handle this in code for v5.0.7. Let me investigate and come back to you.
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
jonjon |
Posted - Mar 10 2014 : 10:16:29 Here is what I found so far to restrict to a circle when created and when resizing:
OnNewObject => imgEditor.ObjAspectRatio[hobj] := true; imgEditor.ObjHeight[hobj] := imgEditor.ObjWidth[hobj];
However, I'm still stuck when MouseInteractVt = [miPutEllipse] which will always draw an ellipse except if the user hits the CTRL keyboard shortcut. |