First commit
[hidecallerid] / src / testwidget.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the examples of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef IDWIDGET_H
43 #define IDWIDGET_H
44
45 #include <QtGui/qpushbutton.h>
46 #include <QtGui/qinputdialog.h>
47 #include <QtGui/qpainter.h>
48 #include "tpsession.h"
49
50 class IdWidget : public QPushButton
51 {
52     Q_OBJECT
53
54 public:
55
56     bool showId;
57     tpSession* tp;
58
59     IdWidget()
60         : QPushButton()
61     {
62         setAttribute(Qt::WA_TranslucentBackground);
63         QPixmap* pixmap = new QPixmap("/usr/share/vivi/shown.png");
64         showId = TRUE;
65         setText("Id Shown");
66         QIcon icon(*pixmap);
67         QSize iconSize(pixmap->width(), pixmap->height());
68         setIconSize(iconSize);
69         setIcon(icon);
70         QObject::connect(this, SIGNAL(clicked()), this, SLOT(changeState()));
71     }
72
73     IdWidget(tpSession tp)
74     {
75         this->tp = tp;
76     }
77
78     QSize sizeHint() const
79     {
80         return 1.2 * QPushButton::sizeHint();
81     }
82
83 public slots:
84
85     void changeState()
86     {
87         QPixmap* pixmap;
88         if(showId) {
89             pixmap = new QPixmap("/usr/share/vivi/hidden.png");
90             showId = FALSE;
91             setText("Id Hidden");
92             tp->setPrivacy(true);
93         }
94         else {
95             pixmap = new QPixmap("/usr/share/vivi/shown.png");
96             showId = TRUE;
97             setText("Id Shown");
98             tp->setPrivacy(false);
99         }
100         QIcon icon(*pixmap);
101         QSize iconSize(pixmap->width(), pixmap->height());
102         setIconSize(iconSize);
103         setIcon(icon);
104     }
105
106 protected:
107     void paintEvent(QPaintEvent *event)
108     {
109         QPainter p(this);
110         p.setBrush(QColor(0, 0, 0, 128));
111         p.setPen(Qt::NoPen);
112         p.drawRoundedRect(rect(), 25, 25);
113         p.end();
114
115         QPushButton::paintEvent(event);
116     }
117 };
118
119 #endif