[REBOL] Re: Disabling shortcut Keys for text field entry?
From: agem:crosswinds at: 9-Jul-2001 19:12
RE: [REBOL] Re: Disabling shortcut Keys for text field entry?
Hi Brett
[brett--codeconscious--com] wrote:
> Hi Volker,
>
> I didn't remove the handler just modified it's behaviour a little :)
>
> Regarding flags, yes using a flag sounds like it would be a really good way
> to go.
> But I've not investigated flags in vid-faces so I'm not sure what the issues
> (if any are).
>
layout[
ar: area
]
probe ar/flags
== [tabbed]
this could be is a good place for other flags?
> I think something like a dissable-hotkeys would be a good idea, but without
> doubt there will be some hotkeys
> that should work even in a field for example F1 to initiate a help screen
> say.
>
> I'm aware that the more functionality added for this the more potential of a
> hit performance wise though.
>
> Any ideas for a simple way to make shortcut keys specific?
>
> Maybe a global group of shortcut keys that affect everything and some
> specific groups that particular faces can belong to?
>
how much is known about the face of the hotkey?
could we say
if any[find hotkey-panel key not in-text-face][allow-hotkey]
?
then we make a panel with file & copy-paste menu
and one with the 'next-picture -stuff
> Just wondering...
>
> Brett.
>
-Volker