2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2006 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include "trackmouse.h"
|
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
#include <kwinconfig.h>
|
2007-05-13 17:47:20 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <kglobal.h>
|
|
|
|
#include <kstandarddirs.h>
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <GL/gl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2007-05-28 11:16:18 +00:00
|
|
|
KWIN_EFFECT( trackmouse, TrackMouseEffect )
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
const int STARS = 5;
|
|
|
|
const int DIST = 50;
|
|
|
|
|
|
|
|
TrackMouseEffect::TrackMouseEffect()
|
|
|
|
: active( false )
|
|
|
|
, angle( 0 )
|
|
|
|
, texture( NULL )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TrackMouseEffect::~TrackMouseEffect()
|
|
|
|
{
|
|
|
|
delete texture;
|
|
|
|
}
|
|
|
|
|
2007-07-07 14:01:32 +00:00
|
|
|
void TrackMouseEffect::prePaintScreen( ScreenPrePaintData& data, int time )
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
|
|
|
if( active )
|
|
|
|
angle = ( angle + time / 10 ) % 360;
|
2007-07-07 14:01:32 +00:00
|
|
|
effects->prePaintScreen( data, time );
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackMouseEffect::paintScreen( int mask, QRegion region, ScreenPaintData& data )
|
|
|
|
{
|
|
|
|
effects->paintScreen( mask, region, data ); // paint normal screen
|
|
|
|
if( !active )
|
|
|
|
return;
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2007-04-29 17:35:43 +00:00
|
|
|
if( texture )
|
|
|
|
{
|
|
|
|
glPushAttrib( GL_CURRENT_BIT | GL_ENABLE_BIT );
|
|
|
|
texture->bind();
|
|
|
|
glEnable( GL_BLEND );
|
|
|
|
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
|
|
|
|
for( int i = 0;
|
|
|
|
i < STARS;
|
|
|
|
++i )
|
|
|
|
{
|
|
|
|
QRect r = starRect( i );
|
2008-02-25 11:32:21 +00:00
|
|
|
texture->render( region, r );
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
texture->unbind();
|
|
|
|
glPopAttrib();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackMouseEffect::postPaintScreen()
|
|
|
|
{
|
|
|
|
if( active )
|
|
|
|
{
|
|
|
|
for( int i = 0;
|
|
|
|
i < STARS;
|
|
|
|
++i )
|
|
|
|
effects->addRepaint( starRect( i ));
|
|
|
|
}
|
|
|
|
effects->postPaintScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackMouseEffect::mouseChanged( const QPoint&, const QPoint&, Qt::MouseButtons,
|
2008-01-02 15:34:12 +00:00
|
|
|
Qt::MouseButtons, Qt::KeyboardModifiers modifiers, Qt::KeyboardModifiers )
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
2008-01-03 18:39:33 +00:00
|
|
|
if( modifiers == ( Qt::CTRL | Qt::META ))
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
|
|
|
if( !active )
|
|
|
|
{
|
|
|
|
if( texture == NULL )
|
|
|
|
loadTexture();
|
|
|
|
if( texture == NULL )
|
|
|
|
return;
|
|
|
|
active = true;
|
|
|
|
angle = 0;
|
|
|
|
}
|
|
|
|
for( int i = 0;
|
|
|
|
i < STARS;
|
|
|
|
++i )
|
|
|
|
effects->addRepaint( starRect( i ));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( active )
|
|
|
|
{
|
|
|
|
for( int i = 0;
|
|
|
|
i < STARS;
|
|
|
|
++i )
|
|
|
|
effects->addRepaint( starRect( i ));
|
|
|
|
active = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect TrackMouseEffect::starRect( int num ) const
|
|
|
|
{
|
|
|
|
int a = angle + 360 / STARS * num;
|
|
|
|
int x = cursorPos().x() + int( DIST * cos( a * ( 2 * M_PI / 360 )));
|
|
|
|
int y = cursorPos().y() + int( DIST * sin( a * ( 2 * M_PI / 360 )));
|
|
|
|
return QRect( QPoint( x - textureSize.width() / 2,
|
|
|
|
y - textureSize.height() / 2 ), textureSize );
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackMouseEffect::loadTexture()
|
|
|
|
{
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2007-04-29 17:35:43 +00:00
|
|
|
QString file = KGlobal::dirs()->findResource( "appdata", "trackmouse.png" );
|
|
|
|
if( file.isEmpty())
|
|
|
|
return;
|
|
|
|
QImage im( file );
|
|
|
|
texture = new GLTexture( im );
|
|
|
|
textureSize = im.size();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|