ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
Forum membership is Free!  Click Join to sign-up
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Important Compatibility Information for v8.6.0
 New Topic  Reply to Topic
Author Previous Topic Topic Next Topic  

xequte

38128 Posts

Posted - Jun 09 2019 :  18:05:33  Show Profile  Reply
Prior to v8.6.0, all mouse interactions (both MouseInteractGeneral and MouseInteractLayers items) were set with a single property, MouseInteract. To overcome the size limitation for published sets, this was split into:

- MouseInteractGeneral: All mouse interactions that are not related to layer editing

http://www.imageen.com/help/TImageEnView.MouseInteractGeneral.html

- MouseInteractLayers: Mouse interactions for layer editing

https://www.imageen.com/help/TImageEnView.MouseInteractLayers.html


In most cases, code that was previously:


ImageEnView1.MouseInteract := [ miZoom, miScroll ];

Simply changes to:

ImageEnView1.MouseInteractGeneral := [ miZoom, miScroll ];


However for layer editing items (miMoveLayers, miResizeLayers, miRotateLayers, miCreate*Layers, etc.), the prefix has changed to ml, and you must reference MouseInteractLayers.

In older versions:

ImageEnView1.MouseInteract := [ miMoveLayers, miResizeLayers ];

Now becomes:

ImageEnView1.MouseInteractLayers := [ mlMoveLayers, mlResizeLayers ];


These are the layer editing items: miMoveLayers, miResizeLayers, miRotateLayers, miCreateImageLayers, miCreateShapeLayers, miCreateLineLayers, miCreatePolylineLayers, miCreateTextLayers, miClickCreateLineLayers, miClickCreatePolylineLayers, miDrawCreatePolylineLayers, miEditLayerPoints

They are now named: mlMoveLayers, mlResizeLayers, mlRotateLayers, mlCreateImageLayers, mlCreateShapeLayers, mlCreateLineLayers, mlCreatePolylineLayers, mlCreateTextLayers, mlClickCreateLineLayers, mlClickCreatePolylineLayers, mlDrawCreatePolylineLayers, mlEditLayerPoints


Nigel
Xequte Software
www.imageen.com
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
Jump To: