>>>>> "Marco" == Marco Mariani <m.mariani_at_imola.nettuno.it> writes:
Marco> Hallo!
Howdy.
Marco> WRT Fvwm:
Marco> - Is there a way to specify that my FvwmButtons window *never* has the
Marco> focus, not even when I click on it?
Can't yet, although it's on the TO-DO list.
If you want you can put a snippet of code in your local FvwmButtons to
achieve this. Something like the following:
----------------------------------------------------------------------
{
XWMHints hints;
Atom at;
hints.flags = InputHint;
hints.input = False;
XSetWMHints(XtDisplay(topLevel), XtWindow(topLevel), &hints);
at = XInternAtom(XtDisplay(topLevel),"WM_TAKE_FOCUS",False);
XDeleteProperty(XtDisplay(topLevel),XtWindow(topLevel),at);
}
----------------------------------------------------------------------
Although this would have to be modified slightly to actually work in
FvwmButtons. I use this in 'xlbiff' so it never steals my focus when
it pops up. Just make sure you aren't using 'Lenience'.
Marco> - How can I tell a window to StayOnBottom?
Can't yet, although it's on the TO-DO list too.
Marco> - May I ask to Fvwm to fill an IconBox in right-to-left order?
This SHOULD have been on the TO-DO list, but I forgot to put it
there. It's there now though.
Marco> WRT FvwmButtons:
Marco> - Is it possible to use both Swallow and Action in a button?
Marco> I'd like to swallow oclock, and have an "xclock -digital" called when
Marco> I click on the oclock button.
I believe once an app is swallowed, all button events get directed to
it, so you can't do this right now. Probably should make this
possible in the future.
Marco> - Is there a way to use a regexp in a "hangon" name? My VIM opens with
Marco> the filename in the titlebar, and I would use "VIM*", as in the Style
Marco> command.
Nope, not currently. Use the Class or Resource name instead.
Chuck
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Fri Aug 16 1996 - 13:50:40 BST