I found (in Delphi 2010) that shortcuts always end up on first form (as owned by main form) that has that action, but not the currently focused form. My TMainFrm
owns several TViewFrm
. Each has a TActionManager
with the same TActons
.
I see some ways out, but wonder whats the best fix.. (and not a bad hack)
- The forms are navigated using a tabset which calls their Hide() and Show(). I'd did not expect hidden forms to receive keypresses. Am i doing something wrong?
- It seems that action shortcuts are always start at the main form, and using
TCustomForm.IsShortCut()
get distributed to owned forms. I see no logic there to respect hidden windows, should i override it and have it trigger the focused form first? - Disabling all TActions in TViewFrm.Hide() .. ?
- Moving the
TActionToolBar
toTMainFrm
but that is a pit of snakes and last resort.
I have found a workaround thats good enough for me; my main form now overrides
TCustomForm.IsShortcut()
and first checks visible windows from my list of editor tabs.A list which i conveniently already have, so this might not work for everyone.
Another solution would be to change
DispatchShortCut()
to check for components being visible and/or enabled, but that might impact more than i'd like. I wonder whether the original code architects had a reason not to -- by design. Best would be have it called twice: first to give priority to visible+enabled components, and second call as fallback to normal behavior.