Your IP : 216.73.216.48
| Current Path : /usr/X11R6/include/ |
|
|
| Current File : //usr/X11R6/include/k3blistviewitemanimator.h |
/*
*
* Copyright (C) 2004 Sebastian Trueg <trueg@k3b.org>
*
* This file is part of the K3b project.
* Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
*
* 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.
* See the file "COPYING" for the exact licensing terms.
*/
#ifndef _K3B_LISTVIEWITEM_ANIMATOR_H_
#define _K3B_LISTVIEWITEM_ANIMATOR_H_
#include <qobject.h>
#include <qpixmap.h>
#include "k3b_export.h"
class Q3ListViewItem;
class QTimer;
namespace K3b {
/**
* Fades an icon on a listview item in and out.
*/
class LIBK3B_EXPORT ListViewItemAnimator : public QObject
{
Q_OBJECT
public:
ListViewItemAnimator( QObject* parent = 0 );
/**
* Will use the items pixmap.
*/
ListViewItemAnimator( Q3ListViewItem* item, int col, QObject* parent = 0 );
~ListViewItemAnimator();
Q3ListViewItem* item() const;
public Q_SLOTS:
void start();
void stop();
void setItem( Q3ListViewItem*, int col );
/**
* Default is the pixmap from the item.
*/
void setPixmap( const QPixmap& );
void setColumn( int col );
/**
* Default is the base color of the listview.
*/
void setFadeColor( const QColor& );
private Q_SLOTS:
void slotAnimate();
private:
void init();
int m_animationStep;
bool m_animationBack;
QPixmap m_pixmap;
QColor m_fadeColor;
Q3ListViewItem* m_item;
int m_column;
QTimer* m_timer;
};
}
#endif