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