]> git.sur5r.net Git - minitube/blob - src/refinesearchbutton.cpp
Merge tag 'upstream/2.1.3'
[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
23 static const int refineButtonSize = 48;
24
25 RefineSearchButton::RefineSearchButton(QWidget *parent) :
26     QPushButton(parent) {
27
28     hovered = false;
29
30     setMinimumSize(refineButtonSize, refineButtonSize);
31     setMaximumSize(refineButtonSize, refineButtonSize);
32     setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
33     setStyleSheet(
34                 "background: red url(:/images/refine-search.png) no-repeat center;"
35                 "border: 0;"
36                 );
37 }
38
39 void RefineSearchButton::paintBackground() const {
40
41 }
42
43 void RefineSearchButton::paintEvent(QPaintEvent *event) {
44     // QPushButton::paintEvent(event);
45     QPainter painter(this);
46     painter.setRenderHints(QPainter::Antialiasing, true);
47     painter.setBrush(QColor(0,0,0, hovered ? 192 : 170));
48     QPen pen(Qt::white);
49     pen.setWidth(2);
50     painter.setPen(pen);
51     painter.drawEllipse(QPoint(width(), height()), width()-2, height()-2);
52
53     QPixmap icon = QPixmap(":/images/refine-search.png");
54     painter.drawPixmap(width() - icon.width() - 6, height() - icon.height() - 6,
55                        icon.width(), icon.height(),
56                        icon);
57 }
58
59 void RefineSearchButton::enterEvent(QEvent *) {
60     hovered = true;
61     update();
62 }
63
64 void RefineSearchButton::leaveEvent(QEvent *) {
65     hovered = false;
66     update();
67 }