From: <dom...@us...> - 2010-12-31 16:35:41
|
Revision: 42 http://fvwm-crystal.svn.sourceforge.net/fvwm-crystal/?rev=42&view=rev Author: dominique_libre Date: 2010-12-31 16:35:35 +0000 (Fri, 31 Dec 2010) Log Message: ----------- Added font support from font prefernces into FvwmIdent. Cleanup into the focus policies. Modified Paths: -------------- ChangeLog fvwm/components/functions/FvwmIdent fvwm/components/functions/Window-Remember-ClickToFocus fvwm/components/functions/Window-Remember-SloppyFocus fvwm/components/styles/FocusPolicy-Amiga Modified: ChangeLog =================================================================== --- ChangeLog 2010-12-23 20:43:54 UTC (rev 41) +++ ChangeLog 2010-12-31 16:35:35 UTC (rev 42) @@ -1,5 +1,9 @@ ChangeLog for FVWM-Crystal +Vendredi 31 décembre 2011 Dominique Michel + * Added font support from font preference in FvwmIdent + * Some cleanup in the Focus policies + Mercredi 23 décembre 2010 Dominique Michel * New Amiga focus policy : click to focus without raise, icons are move to focus :), its not AmigaOS behaviour but I like it that Modified: fvwm/components/functions/FvwmIdent =================================================================== --- fvwm/components/functions/FvwmIdent 2010-12-23 20:43:54 UTC (rev 41) +++ fvwm/components/functions/FvwmIdent 2010-12-31 16:35:35 UTC (rev 42) @@ -1,6 +1,5 @@ # Settings for FvwmIdent -*FvwmIdent: Font "xft:Verdana:pixelsize=12:Bold" -Test (EnvIsSet FVWM_FLAG_UTF_8) *FvwmIdent: Font "xft:Verdana:pixelsize=12:Bold:encoding=iso10646-1" +*FvwmIdent: Font "xft:$[panel_font]:pixelsize=$[panel_font_size]:Bold:encoding=iso10646-1" *FvwmIdent: Colorset $[cs_panel_active] # ViM modeline {{{1 Modified: fvwm/components/functions/Window-Remember-ClickToFocus =================================================================== --- fvwm/components/functions/Window-Remember-ClickToFocus 2010-12-23 20:43:54 UTC (rev 41) +++ fvwm/components/functions/Window-Remember-ClickToFocus 2010-12-31 16:35:35 UTC (rev 42) @@ -3,7 +3,7 @@ # --------------------------------------- # Called when focus change, set state 2 for the focused window, -# unset it for the other. +# unset it for the other ones. ############################################################### DestroyFunc Window-RememberFocused AddToFunc Window-RememberFocused @@ -16,14 +16,11 @@ ################################################################### DestroyFunc Window-FocusRemembered AddToFunc Window-FocusRemembered -#+ I Any (FvwmMiniConsoleNeedsUniqueName, Visible) Break -#+ I Any (QuakeConsoleNeedsUniqueName, Visible) Break ++ I Any (FvwmMiniConsoleNeedsUniqueName, Visible) Break ++ I Any (QuakeConsoleNeedsUniqueName, Visible) Break + I None (CurrentPage, AcceptsFocus) Break -#+ I Current (!Focused, Visible, Sticky) Break + I Current (Focused, Sticky, !CirculateHit) Break + I Next (CurrentPage, State 2) Focus -#+ I None (CurrentPage, Focused, !Iconified, Visible) Prev (CurrentPage, !Iconified, Visible) Focus -#+ I None (CurrentPage, Focused) Prev (CurrentPage, !Iconified) Focus + I None (CurrentPage, Focused, !Iconified) Prev (CurrentPage, !Iconified) Focus Modified: fvwm/components/functions/Window-Remember-SloppyFocus =================================================================== --- fvwm/components/functions/Window-Remember-SloppyFocus 2010-12-23 20:43:54 UTC (rev 41) +++ fvwm/components/functions/Window-Remember-SloppyFocus 2010-12-31 16:35:35 UTC (rev 42) @@ -10,8 +10,8 @@ DestroyFunc Window-FocusRemembered AddToFunc Window-FocusRemembered -#+ I All (FvwmMiniConsoleNeedsUniqueName, Visible) Break -#+ I All (QuakeConsoleNeedsUniqueName, Visible) Break ++ I All (FvwmMiniConsoleNeedsUniqueName, Visible) Break ++ I All (QuakeConsoleNeedsUniqueName, Visible) Break + I None (CurrentPage, AcceptsFocus) Break + I Current (Focused, Visible, Sticky) Break + I Next (CurrentPage, HasPointer) Focus Modified: fvwm/components/styles/FocusPolicy-Amiga =================================================================== --- fvwm/components/styles/FocusPolicy-Amiga 2010-12-23 20:43:54 UTC (rev 41) +++ fvwm/components/styles/FocusPolicy-Amiga 2010-12-31 16:35:35 UTC (rev 42) @@ -5,10 +5,9 @@ # window's titlebar or border # - new windows are automatically being focused -Style * FPClickToFocus, !FPEnterToFocus, !FPLeaveToUnfocus, ClickToFocus +Style * !FPEnterToFocus, !FPLeaveToUnfocus, FPClickToFocus, FPClickDecorToFocus Style * !FPClickRaisesFocused, FPClickDecorRaisesFocused -Style * FPAllowRaiseClickFunction -#, FPAllowFocusClickFunction +Style * FPAllowRaiseClickFunction, FPAllowFocusClickFunction Style * FPFocusByProgram, FPFocusByFunction, !FPFocusByFunctionWarpPointer Style * FPGrabFocus, FPGrabFocusTransient Style * FPReleaseFocus, FPReleaseFocusTransient @@ -27,8 +26,8 @@ *FvwmEvent-IconFocus: iconify Focus-Iconic *FvwmEvent-IconFocus: deiconify Focus-Normal -Module FvwmEvent FvwmEvent-IconFocus #Module FvwmEvent FvwmEvent-IconFocus +#Module FvwmEvent FvwmEvent-IconFocus # Functions for remembering last focused window on a desktop page Include components/functions/Window-Remember-ClickToFocus This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |