Made a few small changes to ImageButton and ZoomButtonPanel classes.
[situare] / src / ui / imagebutton.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Pekka Nissinen - pekka.nissinen@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare 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 Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #include <QSize>
23 #include <QDebug>
24 #include <QPixmap>
25 #include <QPainter>
26
27 #include "imagebutton.h"
28
29 ImageButton::ImageButton(QWidget *parent, QString normalIconPictureFileName,
30                          QString selectedIconPictureFileName)
31     : QPushButton(parent),
32       m_buttonMode(QIcon::Normal)
33 {
34     qDebug() << __PRETTY_FUNCTION__;
35
36     // If there is a file name provided for icon image, use it as the icon for the button
37     if (normalIconPictureFileName != "") {
38         QPixmap iconPixmap(normalIconPictureFileName);
39         QSize buttonSize = iconPixmap.size(); // Get the button size from the normal state icon picture
40         QIcon icon(iconPixmap);
41
42         // If there is a picture for selected state, use it instead of a simple highlight change
43         if(selectedIconPictureFileName != "")
44             icon.addFile(selectedIconPictureFileName, buttonSize, QIcon::Selected);
45
46         setIcon(icon);
47         setIconSize(buttonSize);
48         setFixedSize(buttonSize);
49     }
50 }
51
52 void ImageButton::setButtonIcon(const QPixmap &image)
53 {
54     QSize buttonSize = image.size(); // Get the button size from the normal state icon picture
55     QIcon icon(image);
56
57     setIcon(icon);
58     setIconSize(buttonSize);
59     setFixedSize(buttonSize);
60 }
61
62 void ImageButton::mousePressEvent(QMouseEvent *event)
63 {
64     qDebug() << __PRETTY_FUNCTION__;
65
66     if(m_buttonMode != QIcon::Disabled) {
67         QPushButton::mousePressEvent(event);
68         setMode(QIcon::Selected);
69     }
70 }
71
72 void ImageButton::mouseReleaseEvent(QMouseEvent *event)
73 {
74     qDebug() << __PRETTY_FUNCTION__;
75
76     if(m_buttonMode != QIcon::Disabled) {
77         QPushButton::mouseReleaseEvent(event);
78         setMode(QIcon::Normal);
79     }
80 }
81
82 void ImageButton::paintEvent(QPaintEvent *event)
83 {
84     qDebug() << __PRETTY_FUNCTION__;
85
86     Q_UNUSED(event);
87
88     QPainter painter(this);
89     icon().paint(&painter, this->rect(), NULL, m_buttonMode);
90 }
91
92 void ImageButton::setMode(QIcon::Mode mode)
93 {
94     qDebug() << __PRETTY_FUNCTION__;
95
96     m_buttonMode = mode;
97     update();
98 }
99
100 QIcon::Mode ImageButton::mode()
101 {
102     qDebug() << __PRETTY_FUNCTION__;
103
104     return m_buttonMode;
105 }