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

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 ImageEn steals standard shortcuts

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
ioster Posted - Jul 07 2021 : 03:57:45
Hi,

I have an vcl form with a lot of components. The most of them are editor components from Embarcadero and DevExpress. And I use ImageEnMView and ImageEnView for showing pictures on a tab.

If this tab is in the foreground, the windows standard shortcuts for copy & paste (CTRL+C / CTRL+V) are disabled in the editor objects. If it is in the background, all is fine.

Is there any property for solving this problem?

Best regards
Ingo
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Jul 07 2021 : 18:00:56

Hi Ingo

All of the keyboard shortcuts are disabled as follows:

- Disable TImageEnView.KeyboardShortcuts
- Remove loKeyboardShortcuts from TImageEnView.LayerOptions
- Remove ieboEnableFileShortcuts from TImageEnFolderMView.FolderInteract
- Disable TIERichEdit.KeyboardShortcuts
- Disable TImageEnViewToolbar/TIERichEditToolbar.KeyboardShortcuts
- Remove Shortcuts from any ImageEn Actions

https://www.imageen.com/help/TImageEnView.KeyboardShortcuts.html
https://www.imageen.com/help/TImageEnView.LayerOptions.html
https://www.imageen.com/help/TImageEnFolderMView.FolderInteract.html
https://www.imageen.com/help/TIERichEdit.KeyboardShortcuts.html
https://www.imageen.com/help/TCustomImageEnToolbar.KeyboardShortcuts.html
https://www.imageen.com/help/TImageEnView_Actions.html

Other than that, keyboard shortcuts may be eaten if:
- TImageEnView.PDFViewer is enabled and a form is being edited
- The text of a TIETextLayer is being edited

If these options do not resolve it, can you create a simple demo (without third party components) that shows the issue so I can test it here?

Nigel
Xequte Software
www.imageen.com
ioster Posted - Jul 07 2021 : 08:08:04
I have to set Enabled property of the ImageEnView object to false if I like to use COPY & PASTE in my edit components. The deactivation of properties called LayerOptions and KeyboardShortCuts makes no difference. But I can't disable the viewer object.
xequte Posted - Jul 07 2021 : 06:40:16
Hi Ingo

You can disable keyboard shortcuts as follows:

ImageEnView1.LayerOptions := ImageEnView1.LayerOptions - [ loKeyboardShortcuts ];

More info:

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


Nigel
Xequte Software
www.imageen.com