On Tue, Sep 02, 2003 at 04:25:43PM +0200, Uwe Pross wrote:
> Hi there,
> 
> On 02 Sep 2003 at 09:45:31 +0200, Uwe Pross wrote:
> 
> > I stuck again :-\ The following code is intended to remember
> > which  window  had  focus  for  page. So when I come back to
> > certain page the window which had focus on that page at last
> > should get focus:
> > 
> > DestroyFunc CurrentPageFocusFunc
> > AddToFunc CurrentPageFocusFunc I Next ("CurrentPage" "State 2") Focus
> > + I None ("CurrentPage" "Focused") Prev ("CurrentPage" "!Iconified" 
> > "!Fvwm*B*") Focus
> > 
> > DestroyFunc MarkWindowAsActiveFunc
> > AddToFunc MarkWindowAsActiveFunc I Current ("!Iconified") All 
> > ("CurrentPage" "!Focused") State 2 False
> > + I Current ("!Iconified") State 2 True
> > 
> > DestroyModuleConfig FvwmEvent*
> > *FvwmEvent: Cmd Function
> > *FvwmEvent: new_page CurrentPageFocusFunc 
> > *FvwmEvent: new_desk CurrentPageFocusFunc
> > *FvwmEvent: destroy_window CurrentPageFocusFunc
> > *FvwmEvent: focus_change MarkWindowAsActiveFunc
> > 
> > The "State 2" condition seems to be completely ignored. 
> 
> Removing the quotes from the State condition helped on my
> box. This might be a minor bug.

You are overusing quotes.  There is no "State 2" condition.  The
"2" is the argument of the "State" condition.  It's not necessary
to quote any of the conditions unless a token contains whitespace
or characters that have to be protected from expansion.  The
"right" way to specify conditions is to separate them with commas
and not use quotes.

> DestroyFunc CurrentPageFocusFunc
> AddToFunc CurrentPageFocusFunc I Next (CurrentPage, State 2) Focus
                                                   ^^^

> + I None (CurrentPage Focused) Prev (CurrentPage, !Iconified, !Sticky) Focus
                                                 ^^^         ^^^
...

Ciao

Dominik ^_^  ^_^
--
Visit the official FVWM web page at <URL: http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]

Reply via email to