Modified test script. Added networkhandlerprivate and
[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.isEmpty()) {
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.isEmpty())
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     qDebug() << __PRETTY_FUNCTION__;
55
56     QSize buttonSize = image.size(); // Get the button size from the normal state icon picture
57     QIcon icon(image);
58
59     setIcon(icon);
60     setIconSize(buttonSize);
61     setFixedSize(buttonSize);
62 }
63
64 void ImageButton::mousePressEvent(QMouseEvent *event)
65 {
66     qDebug() << __PRETTY_FUNCTION__;
67
68     if(m_buttonMode != QIcon::Disabled) {
69         QPushButton::mousePressEvent(event);
70         setMode(QIcon::Selected);
71     } else {
72         setDown(true);
73         emit pressed();
74     }
75 }
76
77 void ImageButton::mouseReleaseEvent(QMouseEvent *event)
78 {
79     qDebug() << __PRETTY_FUNCTION__;
80
81     if(m_buttonMode != QIcon::Disabled) {
82         QPushButton::mouseReleaseEvent(event);
83         setMode(QIcon::Normal);
84     } else {
85         setDown(false);
86         emit released();
87     }
88 }
89
90 void ImageButton::paintEvent(QPaintEvent *event)
91 {
92     qDebug() << __PRETTY_FUNCTION__;
93
94     Q_UNUSED(event);
95
96     QPainter painter(this);
97     icon().paint(&painter, this->rect(), NULL, m_buttonMode);
98 }
99
100 void ImageButton::setMode(QIcon::Mode mode)
101 {
102     qDebug() << __PRETTY_FUNCTION__;
103
104     m_buttonMode = mode;
105     update();
106 }
107
108 QIcon::Mode ImageButton::mode()
109 {
110     qDebug() << __PRETTY_FUNCTION__;
111
112     return m_buttonMode;
113 }