/src/settingslistdelegate.h
C++ Header | 39 lines | 13 code | 8 blank | 18 comment | 0 complexity | a804c0cadfcb44c732e4b61feebaf05d MD5 | raw file
1/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> === 2 * 3 * Copyright 2011, Michael Zanetti <mzanetti@kde.org> 4 * Copyright 2011, Leo Franchi <lfranchi@kde.org> 5 * 6 * Tomahawk is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * 11 * Tomahawk is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>. 18 */ 19 20#ifndef SETTINGSLISTDELEGATE_H 21#define SETTINGSLISTDELEGATE_H 22 23#include <QStyledItemDelegate> 24 25class SettingsListDelegate : public QStyledItemDelegate 26{ 27 Q_OBJECT 28public: 29 explicit SettingsListDelegate(QObject *parent = 0); 30 31 virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; 32 33signals: 34 35public slots: 36 37}; 38 39#endif // SETTINGSLISTDELEGATE_H