KDE/kdebase/workspace/kwin/effects

Kenneth Wimer wimer at kde.org
Wed Nov 14 16:47:13 GMT 2007



On Wednesday 14 November 2007 17:30:12 Luboš Luňák wrote:
> SVN commit 736725 by lunakl:
>
> Ok, the splash needs to cover the entire screen, no hacks in the effect
> trying to hide other windows. Fullscreen splash is a good idea anyway,
> it'll hide all the setting up of kdesktop+kicker ... er .. plasma.
>
> Speaking of which, are there any plans concerning the splash,
> or are we sticking with the Akademy photo for 4.0?

As we will be using a new wallpaper very soon I would expect that the splash 
screen needs to change as well. Can you point me to the pics and/or config 
files we need to tweak to test a new version?

Thanks,
Ken 


> CCMAIL: kde-core-devel at kde.org
> CCMAIl: kde-artists at kde.org
>
>
>
>  M  +2 -15     login.cpp
>
>
> --- trunk/KDE/kdebase/workspace/kwin/effects/login.cpp #736724:736725
> @@ -54,21 +54,8 @@
>
>  void LoginEffect::paintWindow( EffectWindow* w, int mask, QRegion region,
> WindowPaintData& data ) {
> -    if( login_window != NULL )
> -        {
> -        if( progress == 1 )
> -            {
> -            if( w != login_window )
> -                data.brightness = 0; // not visible
> -            }
> -        else
> -            {
> -            if( w == login_window )
> -                data.opacity *= ( 1 - progress );
> -            else
> -                data.brightness *= progress;
> -            }
> -        }
> +    if( w == login_window && progress != 1 )
> +        data.opacity *= ( 1 - progress );
>      effects->paintWindow( w, mask, region, data );
>      }




More information about the kde-core-devel mailing list