]> git.sur5r.net Git - minitube/blob - src/refinesearchbutton.cpp
361fe3a930c8be1fb680e3aacfdd04e2d351a79b
[minitube] / src / refinesearchbutton.cpp
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 #include "refinesearchbutton.h"
22 #include "iconutils.h"
23
24 RefineSearchButton::RefineSearchButton(QWidget *parent) :
25     QPushButton(parent) {
26
27     hovered = false;
28
29     const int refineButtonSize = 48;
30     setMinimumSize(refineButtonSize, refineButtonSize);
31     setMaximumSize(refineButtonSize, refineButtonSize);
32     setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
33 }
34
35 void RefineSearchButton::paintBackground() const {
36
37 }
38
39 void RefineSearchButton::paintEvent(QPaintEvent *) {
40     QPainter painter(this);
41     painter.setRenderHints(QPainter::Antialiasing, true);
42     painter.setPen(Qt::NoPen);
43     painter.setBrush(QColor(0,0,0, hovered ? 192 : 170));
44     painter.drawEllipse(QPoint(width(), height()), width()-2, height()-2);
45
46     QPixmap pixmap = IconUtils::pixmap(":/images/refine-search.png");
47     int pw = pixmap.width() / pixmap.devicePixelRatio();
48     int ph = pixmap.height() / pixmap.devicePixelRatio();
49     painter.drawPixmap(width() - pw - 6, height() - ph - 6,
50                        pw, ph,
51                        pixmap);
52 }
53
54 void RefineSearchButton::enterEvent(QEvent *) {
55     hovered = true;
56     update();
57 }
58
59 void RefineSearchButton::leaveEvent(QEvent *) {
60     hovered = false;
61     update();
62 }