]> git.sur5r.net Git - minitube/blob - src/playlistitemdelegate.h
bd894dee21a97becf616387295c26a8ed9086585
[minitube] / src / playlistitemdelegate.h
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube 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 Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #ifndef PLAYLISTITEMDELEGATE_H
22 #define PLAYLISTITEMDELEGATE_H
23
24 #include <QtWidgets>
25
26 class PlaylistView;
27
28 class PlaylistItemDelegate : public QStyledItemDelegate {
29     Q_OBJECT
30
31 public:
32     PlaylistItemDelegate(QObject *parent, bool downloadInfo = false);
33     ~PlaylistItemDelegate();
34
35     QSize sizeHint(const QStyleOptionViewItem &, const QModelIndex &) const;
36     void
37     paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
38     QRect downloadButtonRect(const QRect &line) const;
39     QRect authorRect(const QModelIndex &index) const;
40
41 private:
42     void createPlayIcon();
43     void paintBody(QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const;
44     void paintDownloadInfo(QPainter *painter,
45                            const QStyleOptionViewItem &option,
46                            const QModelIndex &index) const;
47     void paintActiveOverlay(QPainter *painter,
48                             const QStyleOptionViewItem &option,
49                             const QRect &line) const;
50     void drawTime(QPainter *painter, const QString &time, const QRect &line) const;
51
52     static const int thumbWidth;
53     static const int thumbHeight;
54     static const int padding;
55
56     QPixmap playIcon;
57     QFont smallerFont;
58     QFont smallerBoldFont;
59
60     bool downloadInfo;
61     QProgressBar *progressBar;
62
63     mutable QRect lastAuthorRect;
64     mutable QHash<int, QRect> authorRects;
65
66     PlaylistView *listView;
67 };
68
69 #endif