kwin/lib/kcommondecoration_p.cpp
Lucas Murray 899d578c49 Merge Libkdecoration2 Git branch.
WARNING: Breaks shadow effect. I don't think it causes anything to crash anymore but it is VERY ugly visually.

Contains:
 - New decoration API that allows decorations to change the way shadows look.
 - Shadows now wobble.
 - API example code in the Oxygen decoration.
 - Added buildQuads() effect plugin hook.
 - Work on the shadow effect to use the new decoration shadow API as well.
 - Added IDs to WindowQuads.
 - Added public accessors to texture coords in WindowVertex.

Would like all this to be reviewed.

CCMAIL: kwin@kde.org

svn path=/trunk/KDE/kdebase/workspace/; revision=872473
2008-10-17 10:30:43 +00:00

142 lines
4.2 KiB
C++

/*
This file is part of the KDE project.
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
#include "kcommondecoration_p.h"
#include "kcommondecoration.h"
#include "kdecorationbridge.h"
#include <assert.h>
#include "kcommondecoration_p.moc"
KCommonDecorationWrapper::KCommonDecorationWrapper( KCommonDecoration* deco, KDecorationBridge* bridge, KDecorationFactory* factory )
: KDecoration2( bridge, factory )
, decoration( deco )
{
}
KCommonDecorationWrapper::~KCommonDecorationWrapper()
{
// the wrapper actually owns KCommonDecoration, since the wrapper is what KWin core uses
delete decoration;
}
void KCommonDecorationWrapper::init()
{
return decoration->init();
}
KCommonDecorationWrapper::Position KCommonDecorationWrapper::mousePosition( const QPoint& p ) const
{
return decoration->mousePosition( p );
}
void KCommonDecorationWrapper::borders( int& left, int& right, int& top, int& bottom ) const
{
return decoration->borders( left, right, top, bottom );
}
void KCommonDecorationWrapper::resize( const QSize& s )
{
return decoration->resize( s );
}
QSize KCommonDecorationWrapper::minimumSize() const
{
return decoration->minimumSize();
}
void KCommonDecorationWrapper::activeChange()
{
return decoration->activeChange();
}
void KCommonDecorationWrapper::captionChange()
{
return decoration->captionChange();
}
void KCommonDecorationWrapper::iconChange()
{
return decoration->iconChange();
}
void KCommonDecorationWrapper::maximizeChange()
{
return decoration->maximizeChange();
}
void KCommonDecorationWrapper::desktopChange()
{
return decoration->desktopChange();
}
void KCommonDecorationWrapper::shadeChange()
{
return decoration->shadeChange();
}
bool KCommonDecorationWrapper::drawbound( const QRect& geom, bool clear )
{
return decoration->drawbound( geom, clear );
}
bool KCommonDecorationWrapper::windowDocked( Position side )
{
return decoration->windowDocked( side );
}
void KCommonDecorationWrapper::reset( unsigned long changed )
{
return decoration->reset( changed );
}
QList<QRect> KCommonDecorationWrapper::shadowQuads( ShadowType type ) const
{
if( KCommonDecoration2 *decoration2 = dynamic_cast<KCommonDecoration2*>( decoration ))
return decoration2->shadowQuads( type );
return QList<QRect>();
}
double KCommonDecorationWrapper::shadowOpacity( ShadowType type, double dataOpacity ) const
{
if( KCommonDecoration2 *decoration2 = dynamic_cast<KCommonDecoration2*>( decoration ))
return decoration2->shadowOpacity( type, dataOpacity );
return dataOpacity;
}
double KCommonDecorationWrapper::shadowBrightness( ShadowType type ) const
{
if( KCommonDecoration2 *decoration2 = dynamic_cast<KCommonDecoration2*>( decoration ))
return decoration2->shadowBrightness( type );
return 1.0;
}
double KCommonDecorationWrapper::shadowSaturation( ShadowType type ) const
{
if( KCommonDecoration2 *decoration2 = dynamic_cast<KCommonDecoration2*>( decoration ))
return decoration2->shadowSaturation( type );
return 1.0;
}