2009-09-17 22:40:06 +00:00
|
|
|
#ifndef oxygenshadowcache_h
|
|
|
|
#define oxygenshadowcache_h
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
// oxygenshadowcache.h
|
|
|
|
// handles caching of TileSet objects to draw shadows
|
|
|
|
// -------------------
|
|
|
|
//
|
|
|
|
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-05-02 18:50:01 +00:00
|
|
|
#include "oxygendecohelper.h"
|
|
|
|
#include "oxygenshadowconfiguration.h"
|
|
|
|
|
2009-09-20 07:42:03 +00:00
|
|
|
#include <QtCore/QCache>
|
|
|
|
#include <QtGui/QRadialGradient>
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2009-10-13 01:45:01 +00:00
|
|
|
|
2009-09-17 22:40:06 +00:00
|
|
|
namespace Oxygen
|
|
|
|
{
|
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
class Client;
|
|
|
|
class ShadowCache
|
|
|
|
{
|
|
|
|
public:
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! constructor
|
2010-05-02 18:50:01 +00:00
|
|
|
ShadowCache( DecoHelper& helper );
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! destructor
|
|
|
|
virtual ~ShadowCache( void )
|
|
|
|
{}
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! cache size
|
|
|
|
void setEnabled( bool enabled )
|
2010-04-14 22:21:08 +00:00
|
|
|
{
|
2010-05-02 18:34:08 +00:00
|
|
|
enabled_ = enabled;
|
|
|
|
if( enabled )
|
|
|
|
{
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
shadowCache_.setMaxCost( 1<<6 );
|
|
|
|
animatedShadowCache_.setMaxCost( maxIndex_<<6 );
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
} else {
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
shadowCache_.setMaxCost( 1 );
|
|
|
|
animatedShadowCache_.setMaxCost( 1 );
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
}
|
2010-04-14 22:21:08 +00:00
|
|
|
}
|
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! max animation index
|
|
|
|
int maxIndex( void ) const
|
|
|
|
{ return maxIndex_; }
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! max animation index
|
|
|
|
void setMaxIndex( int value )
|
2010-04-14 22:21:08 +00:00
|
|
|
{
|
2010-05-02 18:34:08 +00:00
|
|
|
maxIndex_ = value;
|
|
|
|
if( enabled_ )
|
|
|
|
{
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
shadowCache_.setMaxCost( 1<<6 );
|
|
|
|
animatedShadowCache_.setMaxCost( maxIndex_<<6 );
|
|
|
|
|
|
|
|
}
|
2010-04-14 22:21:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! invalidate caches
|
|
|
|
void invalidateCaches( void )
|
|
|
|
{
|
|
|
|
shadowCache_.clear();
|
|
|
|
animatedShadowCache_.clear();
|
|
|
|
}
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! returns true if provided shadow configuration changes with respect to stored
|
|
|
|
/*!
|
|
|
|
use ShadowConfiguration::colorRole() to decide whether it should be stored
|
|
|
|
as active or inactive
|
|
|
|
*/
|
|
|
|
bool shadowConfigurationChanged( const ShadowConfiguration& ) const;
|
|
|
|
|
|
|
|
//! set shadowConfiguration
|
|
|
|
/*!
|
|
|
|
use ShadowConfiguration::colorRole() to decide whether it should be stored
|
|
|
|
as active or inactive
|
|
|
|
*/
|
|
|
|
void setShadowConfiguration( const ShadowConfiguration& );
|
|
|
|
|
|
|
|
//! shadow size
|
|
|
|
qreal shadowSize( void ) const
|
|
|
|
{
|
|
|
|
qreal activeSize( activeShadowConfiguration_.isEnabled() ? activeShadowConfiguration_.shadowSize():0 );
|
|
|
|
qreal inactiveSize( inactiveShadowConfiguration_.isEnabled() ? inactiveShadowConfiguration_.shadowSize():0 );
|
|
|
|
qreal size( qMax( activeSize, inactiveSize ) );
|
2009-10-19 19:43:59 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
// even if shadows are disabled,
|
|
|
|
// you need a minimum size to allow corner rendering
|
|
|
|
return qMax( size, qreal(5.0) );
|
|
|
|
}
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! get shadow matching client
|
|
|
|
TileSet* tileSet( const Client* );
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! get shadow matching client and opacity
|
|
|
|
TileSet* tileSet( const Client*, qreal );
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! Key class to be used into QCache
|
|
|
|
/*! class is entirely inline for optimization */
|
|
|
|
class Key
|
|
|
|
{
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
public:
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! explicit constructor
|
|
|
|
explicit Key( void ):
|
|
|
|
index(0),
|
|
|
|
active(false),
|
|
|
|
useOxygenShadows(false),
|
|
|
|
isShade(false),
|
|
|
|
hasTitleOutline(false),
|
|
|
|
hasBorder( true )
|
|
|
|
{}
|
|
|
|
|
|
|
|
//! constructor from client
|
|
|
|
Key( const Client* );
|
|
|
|
|
|
|
|
//! constructor from int
|
|
|
|
Key( int hash ):
|
|
|
|
index( hash>>5 ),
|
|
|
|
active( (hash>>4)&1 ),
|
|
|
|
useOxygenShadows( (hash>>3)&1 ),
|
|
|
|
isShade( (hash>>2)&1 ),
|
|
|
|
hasTitleOutline( (hash>>1)&1 ),
|
|
|
|
hasBorder( hash&1 )
|
|
|
|
{}
|
|
|
|
|
|
|
|
//! hash function
|
|
|
|
int hash( void ) const
|
|
|
|
{
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
// note this can be optimized because not all of the flag configurations are actually relevant
|
|
|
|
// allocate 3 empty bits for flags
|
|
|
|
return
|
|
|
|
( index << 5 ) |
|
|
|
|
( active << 4 ) |
|
|
|
|
(useOxygenShadows << 3 ) |
|
|
|
|
(isShade<<2) |
|
|
|
|
(hasTitleOutline<<1) |
|
|
|
|
(hasBorder<<0);
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
}
|
2009-09-19 05:51:31 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
int index;
|
|
|
|
bool active;
|
|
|
|
bool useOxygenShadows;
|
|
|
|
bool isShade;
|
|
|
|
bool hasTitleOutline;
|
|
|
|
bool hasBorder;
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
};
|
2009-10-13 01:45:01 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! complex pixmap (when needed)
|
|
|
|
QPixmap shadowPixmap( const Client*, bool active ) const;
|
2009-10-13 01:45:01 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! simple pixmap
|
|
|
|
QPixmap simpleShadowPixmap( const QColor& color, const Key& key ) const
|
|
|
|
{ return simpleShadowPixmap( color, key, key.active ); }
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! simple pixmap
|
|
|
|
QPixmap simpleShadowPixmap( const QColor&, const Key&, bool active ) const;
|
2009-09-20 00:50:33 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
protected:
|
2009-10-13 01:45:01 +00:00
|
|
|
|
2010-05-02 18:50:01 +00:00
|
|
|
DecoHelper& helper( void ) const
|
2010-05-02 18:34:08 +00:00
|
|
|
{ return helper_; }
|
2010-04-14 22:21:08 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
private:
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! draw gradient into rect
|
|
|
|
/*! a separate method is used in order to properly account for corners */
|
|
|
|
void renderGradient( QPainter&, const QRectF&, const QRadialGradient&, bool hasBorder = true ) const;
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! helper
|
2010-05-02 18:50:01 +00:00
|
|
|
DecoHelper& helper_;
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! caching enable state
|
|
|
|
bool enabled_;
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! max index
|
|
|
|
/*! it is used to set caches max cost, and calculate animation opacity */
|
|
|
|
int maxIndex_;
|
2009-09-17 22:40:06 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! shadow configuration
|
|
|
|
ShadowConfiguration activeShadowConfiguration_;
|
2009-09-18 01:32:27 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
//! shadow configuration
|
|
|
|
ShadowConfiguration inactiveShadowConfiguration_;
|
|
|
|
|
|
|
|
//! cache
|
|
|
|
typedef QCache<int, TileSet> TileSetCache;
|
|
|
|
|
|
|
|
//! shadow cache
|
|
|
|
TileSetCache shadowCache_;
|
|
|
|
|
|
|
|
//! animated shadow cache
|
|
|
|
TileSetCache animatedShadowCache_;
|
|
|
|
|
|
|
|
};
|
2009-09-17 22:40:06 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|