]> git.sur5r.net Git - minitube/blob - src/playlistitemdelegate.h
Upload 3.9.3-2 to unstable
[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     static const int thumbWidth;
42     static const int thumbHeight;
43
44 private:
45     void createPlayIcon();
46     void paintBody(QPainter *, const QStyleOptionViewItem &, const QModelIndex &) const;
47     void paintDownloadInfo(QPainter *painter,
48                            const QStyleOptionViewItem &option,
49                            const QModelIndex &index) const;
50     void paintActiveOverlay(QPainter *painter,
51                             const QStyleOptionViewItem &option,
52                             const QRect &line) const;
53     void drawTime(QPainter *painter, const QString &time, const QRect &line) const;
54
55     static const int padding;
56
57     QPixmap playIcon;
58     QFont smallerFont;
59     QFont smallerBoldFont;
60
61     bool downloadInfo;
62     QProgressBar *progressBar;
63
64     mutable QRect lastAuthorRect;
65     mutable QHash<int, QRect> authorRects;
66
67     PlaylistView *listView;
68 };
69
70 #endif