Hi
In the current beta you can prevent cutting and pasting to layer 0 using loProtectBackground.
There will also be finer control with TImageEnView.OnKeyboardShortcut.
procedure TMain.ImageEnView1KeyboardShortcut(Sender: TObject; Shortcut: TShortCut; var Allow: Boolean);
begin
// Prevent pasting to the background layer
if ( ImageEnView1.LayersCurrent = 0 ) and ( Shortcut = scCtrl or VK_V ) then
Allow := False;
end;
You can email me for the beta.
Nigel
Xequte Software
www.imageen.com