Imroved custom menu request
[someplayer] / src / trackrenderer.cpp
1 /*
2  * SomePlayer - An alternate music player for Maemo 5
3  * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19
20 #include "trackrenderer.h"
21 #include <QFont>
22 #include <QFontMetrics>
23 #include <QSize>
24 #include <QColor>
25 #include <QStandardItem>
26 #include <QApplication>
27 #include <QDesktopWidget>
28
29 using namespace SomePlayer::Storage;
30 TrackRenderer::TrackRenderer(QObject *parent) :
31     AbstractItemRenderer(parent)
32 {
33         Config config;
34         _icons_theme = config.getValue("ui/iconstheme").toString();
35         _apen = QPen(QColor::fromRgb(255, 255, 255, 128));
36         _spen = QPen(QColor::fromRgb(100, 150, 220));
37         _sspen = QPen(QColor::fromRgb(100, 220, 150));
38
39 }
40
41 void TrackRenderer::updateIcons() {
42         Config config;
43         _icons_theme = config.getValue("ui/iconstheme").toString();
44 }
45
46 void TrackRenderer::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const {
47         if (index.column() == 0) {
48                 int x1, y1, x2, y2;
49                 option.rect.getCoords(&x1, &y1, &x2, &y2);
50                 QImage image(":/icons/"+_icons_theme+"/arrow_r.png");
51                 x1 += (x2 - x1 - image.width())/2;
52                 y1 += (y2 - y1 - image.width())/2;
53                 painter->drawImage(x1, y1, image);
54         } else {
55                 QString value = index.data().toString();
56                 QStringList meta = value.split("#_#");
57
58                 QFont f = painter->font();
59                 QFont fp = painter->font();
60
61                 int x1, y1, x2, y2;
62                 option.rect.getCoords(&x1, &y1, &x2, &y2);
63
64                 QPen pen = painter->pen();
65                 f.setBold(false);
66                 if (index.row() == _search_row) {
67                         f.setBold(true);
68                         painter->setPen(_sspen);
69                 } else if (index.row() == _active_row) {
70                         f.setBold(true);
71                         painter->setPen(_spen);
72                 } else {
73                         painter->setPen(pen);
74                 }
75                 painter->setFont(f);
76                 painter->drawText(x1+10, y1 + 1*(y2-y1)/2, meta[0]);
77                 fp.setBold(false);
78                 fp.setPointSize(f.pointSize()*3/4);
79                 painter->setFont(fp);
80                 painter->setPen(_apen);
81                 painter->drawText(x1+10, y1 + 3*(y2-y1)/5, (x2-x1)-100, 2*fp.pointSize(), Qt::AlignAbsolute, QString("%1 (%2)").arg(meta[2]).arg(meta[1]));
82                 painter->drawText(x2-60, y1 + 3*(y2-y1)/5, 55, 2*fp.pointSize(), Qt::AlignAbsolute, QString("%1").arg(meta[3]));
83                 painter->setFont(f);
84                 painter->setPen(pen);
85         }
86 }
87
88 QSize TrackRenderer::sizeHint(const QStyleOptionViewItem &/*option*/, const QModelIndex &/*index*/) const {
89         return QSize(QApplication::desktop()->geometry().width(), 80);
90 }