2018-03-01 5:32 GMT+10:30 Michelle Konzack <linux4miche...@tamay-dogan.net>:
> OK guys,
>
> I have this config:
>
> ----[ ~/.fvwm/Functions/AutoHide.conf ]---------------------------------
> DestroyFunc autohide
> AddToFunc autohide
> + I ThisWindow ("$0") Deschedule $[w.id]
> + I ThisWindow ("$0") ThisWindow (Shaded) WindowShade off
> + I TestRc (!Match) All ("$0", !Shaded) autohide_hide $1 $2
>
> DestroyFunc autohide_hide
> AddToFunc autohide_hide
> + I Schedule $0 $[w.id] WindowShade $1
> + I Schedule $0 $[w.id] Deschedule $[w.id]
>
> AddToFunc StartFunction
> + I Module FvwmAuto FvwmAutohide -menter enter_handler
>
> DestroyFunc enter_handler
> AddToFunc enter_handler
> + I autohide FvwmTaskbarPanel 500 S
> ------------------------------------------------------------------------
>
> and the result is a strange behaviour:
>
> 1) The "FvwmTaskbarPanel" is only shown, if I was on  "FvwmTaskbar"  and
>    move a little bit up.
>
>    From the manpage:
>         In -menter mode, FvwmAuto raises the window under the
>         pointer when the pointer enters a window.
>
>    In my case, it should act, if I enter "FvwmTaskbar" and then
>    unhide "FvwmTaskbarPanel". It seems, I have to modify something
>    because the above 4 functions are universal. I think, in the
>    case of "FvwmTaskbar" I have to write them explicit for it.
>
>    Now it looks like:
>
> ----[ ~/.fvwm/Functions/AutoHide.conf ]---------------------------------
> DestroyFunc FvwmTaskbarAutohide
> AddToFunc   FvwmTaskbarAutohide
> + I ThisWindow ("FvwmTaskbarPanel") Deschedule $[w.id]
> + I ThisWindow ("FvwmTaskbarPanel") ThisWindow (Shaded) WindowShade off
> + I TestRc (!Match) All ("FvwmTaskbarPanel", !Shaded)
> FvwmTaskbarAutohide_hide 500 S
>
> DestroyFunc FvwmTaskbarAutohide_hide
> AddToFunc   FvwmTaskbarAutohide_hide
> + I Schedule $0 $[w.id] WindowShade $1500
> + I Schedule $0 $[w.id] Deschedule $[w.id]
>
> AddToFunc StartFunction
> + I Module FvwmAuto FvwmAutohide -menter FvwmTaskbarAutohide
> ------------------------------------------------------------------------
>
> ...and it works the same way as before!

Do you mean it's no different from the one where you pass
FvwmTaskbarPanel as a parameter? Because it shouldn't be, unless
something in your command reading pipeline cause parameters to be
expanded when the functions are built rather than at execution. In
that case you could expand them, or try the - command prefix. To see
what actually gets passed around, it might be good to add an Echo at
the start of the function printing all parameters used in that
function.

>
> 2) Sometimes, the "FvwmTaskbarPanel" hide, even the pointer is on focus.
>

I think this might have to do with that on a normal mouse enter you
schedule two commands with the same id, and possibly only deschedule
one, so unless you go in and out twice of the window it would be
shaded anyway. You should remove the + I Schedule $0 $[w.id]
Deschedule $[w.id] from the *_hide functions. And since it will only
consist of a single command then, you could inline Schedule command to
use one function less, and get the logic in one place.

Not, that I'm not entirely sure of how fvwm handles the case where you
schedule multiple commands with the same command id, and then
deschedules that command id, to the above is a best guess at
explaining the behaviour you are seeing.

Regards
//Viktor

Reply via email to