/src/libtomahawk/playlist/treeitemdelegate.h
http://github.com/tomahawk-player/tomahawk · C Header · 57 lines · 27 code · 13 blank · 17 comment · 0 complexity · be329105db8258a094207784e716a009 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- *
- * Tomahawk 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 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef TREEITEMDELEGATE_H
- #define TREEITEMDELEGATE_H
- #include <QStyledItemDelegate>
- #include "DllMacro.h"
- #include "Typedefs.h"
- namespace Tomahawk {
- class PixmapDelegateFader;
- }
- class TreeView;
- class TreeProxyModel;
- class DLLEXPORT TreeItemDelegate : public QStyledItemDelegate
- {
- Q_OBJECT
- public:
- TreeItemDelegate( TreeView* parent = 0, TreeProxyModel* proxy = 0 );
- protected:
- void paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const;
- signals:
- void updateIndex( const QModelIndex& idx );
- private slots:
- void doUpdateIndex( const QPersistentModelIndex& index );
- private:
- TreeView* m_view;
- TreeProxyModel* m_model;
- mutable QHash< QPersistentModelIndex, QSharedPointer< Tomahawk::PixmapDelegateFader > > m_pixmaps;
- };
- #endif // TREEITEMDELEGATE_H