[E-devel] Keybindings

2003-03-07 Thread Richard Martin
Can anyone tell me how to set-up keybindings in E that use the "Windoze" keys, the ALT-GR key or that funny little key with the picture of a context-menu on it? == This email and any files transmitted with it are confide

Re: [E-devel] Keybindings

2003-03-07 Thread Valdis . Kletnieks
On Fri, 07 Mar 2003 14:39:27 GMT, Richard Martin <[EMAIL PROTECTED]> said: > Can anyone tell me how to set-up keybindings in E that use the "Windoze" > keys, the ALT-GR key or that funny little key with the picture of a > context-menu on it? First, just run the 'xev' utility, and see what keyco

Re: Re: [E-devel] Keybindings

2003-03-07 Thread Corey Donohoe
You could use e16keyedit(e16) or ebindings(e17) Both of which ask you to press the key you want to use (and interprets based on what is pressed) so you don't have to use xev. Unless of course you'd like to, and that'd be ok too. =) * [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > On Fri, 07 Mar

Re: [E-devel] Keybindings

2003-03-07 Thread Richard Martin
Okay, I have made some progress... I have got xev to report symbols: "Super_L" for left Windoze, "Menu" for the silly-button. I am not sure how to get these to work in E's keybindings.cfg. The format of the modifiers seems different to the format for the __KEY. For example, if I wanted the s

Re: [E-devel] Keybindings

2003-03-07 Thread Martin Geisler
"Richard Martin" <[EMAIL PROTECTED]> writes: > Okay, I have made some progress... I have got xev to report symbols: > > "Super_L" for left Windoze, "Menu" for the silly-button. > > I am not sure how to get these to work in E's keybindings.cfg. The > format of the modifiers seems different to the f

[E-devel] Evas - configure error

2003-03-07 Thread Ryan
I realize this may be really low priority, but I though I'd report an error the latest evas checked out from CVS. Seems the configure script has a syntax error: checking whether directfb backend is to be built... ./configure: line 9062: syntax error near unexpected token `PKG_CHECK_MODULES(DIR

RE: [E-devel] Keybindings

2003-03-07 Thread Bryan Childs
You could check whether you need to have Super_L registered as a proper "X" modifier key before E will see it as such. Create a .Xmodmap in your home directory, and put a line reading "add mod4 = Super_L" in it. Then either restart your x session, or run "xmodmap ~/.Xmodmap" in a terminal, and t

Re: [E-devel] Evas - configure error

2003-03-07 Thread The Rasterman
On Fri, 7 Mar 2003 14:16:32 -0800 Ryan <[EMAIL PROTECTED]> babbled: > I realize this may be really low priority, but I though I'd report an error > the latest evas checked out from CVS. Seems the configure script has a syntax > error: > > > checking whether directfb backend is to be built... .