From: <dom...@us...> - 2019-11-29 16:13:50
|
Revision: 953 http://sourceforge.net/p/fvwm-crystal/code/953 Author: dominique_libre Date: 2019-11-29 16:13:48 +0000 (Fri, 29 Nov 2019) Log Message: ----------- typo, usage and example fixes Modified Paths: -------------- ChangeLog fvwm/components/functions/BlingBling fvwm/components/functions/Tooltip Modified: ChangeLog =================================================================== --- ChangeLog 2019-11-23 14:29:14 UTC (rev 952) +++ ChangeLog 2019-11-29 16:13:48 UTC (rev 953) @@ -1,5 +1,9 @@ ChangeLog for FVWM-Crystal +vendredi 29 novembre 2019 + fvwm/components/functions/BlingBling: fix typo + fvwm/components/functions/Tooltip: update usage and example to current Crystal state + samedi 23 novembre 2019 fvwm/components/functions/CheckForFiles fvwm/components/functions/Preferences-Menu: new functions to start/stop the Modified: fvwm/components/functions/BlingBling =================================================================== --- fvwm/components/functions/BlingBling 2019-11-23 14:29:14 UTC (rev 952) +++ fvwm/components/functions/BlingBling 2019-11-29 16:13:48 UTC (rev 953) @@ -16,7 +16,7 @@ # Keap this file version below 1.0.0 because of that. # Set last focused window translucent, and focused window opaque -DestroyFunc FvwmTranslucensyChange +DestroyFunc FvwmTranslucencyChange AddToFunc FvwmTranslucencyChange + I ThisWindow (!FvwmButtons*, !ApplicationPanel, !FvwmPager*, !FvwmIconMan*, !Iconic) Exec $[FVWM_SYSTEMDIR]/scripts/SetTranslucency $[LastFocus] $[w.id] + I ThisWindow (!FvwmButtons*, !ApplicationPanel, !FvwmPager*, !FvwmIconMan*, !Iconic) SetEnv LastFocus $[w.id] Modified: fvwm/components/functions/Tooltip =================================================================== --- fvwm/components/functions/Tooltip 2019-11-23 14:29:14 UTC (rev 952) +++ fvwm/components/functions/Tooltip 2019-11-29 16:13:48 UTC (rev 953) @@ -1,7 +1,7 @@ # Support for Tooltip # Written by: Dominique Michel <dom...@so...> # -# Usage : FvwmButtons-Tooltip <name> <title> <"string to display"> <geometry> <layer> <delay> +# Usage : Fvwm-Tooltip <name> <title> <"string to display"> <geometry> <layer> <delay> # # where <name> is the name of the button such as FvwmButtons-Tooltip-<Name> # <title> is the titile to draw on the button. It support gettext. @@ -12,7 +12,7 @@ # An argument with a space must be quoted. # # Example : -# + I PointerWindow (FvwmButtons-Music) FvwmButtons-Tooltip Volume "Main volume" "$[CurrentVolume]" "+4-40" 20 1000 +# + I PointerWindow (FvwmButtons-Music) Fvwm-Tooltip Volume "Main volume" "$[infostore.CurrentVolume]" "+4-40" 20 1000 # will show a tooltip when the pointer is entering on FvwmButtons-Music. DestroyFunc Fvwm-Tooltip This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |