First commit
[hidecallerid] / src / testwidget.h
diff --git a/src/testwidget.h b/src/testwidget.h
new file mode 100644 (file)
index 0000000..0fadaff
--- /dev/null
@@ -0,0 +1,119 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the examples of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file.  Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights.  These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef IDWIDGET_H
+#define IDWIDGET_H
+
+#include <QtGui/qpushbutton.h>
+#include <QtGui/qinputdialog.h>
+#include <QtGui/qpainter.h>
+#include "tpsession.h"
+
+class IdWidget : public QPushButton
+{
+    Q_OBJECT
+
+public:
+
+    bool showId;
+    tpSession* tp;
+
+    IdWidget()
+        : QPushButton()
+    {
+        setAttribute(Qt::WA_TranslucentBackground);
+        QPixmap* pixmap = new QPixmap("/usr/share/vivi/shown.png");
+        showId = TRUE;
+        setText("Id Shown");
+        QIcon icon(*pixmap);
+        QSize iconSize(pixmap->width(), pixmap->height());
+        setIconSize(iconSize);
+        setIcon(icon);
+        QObject::connect(this, SIGNAL(clicked()), this, SLOT(changeState()));
+    }
+
+    IdWidget(tpSession tp)
+    {
+        this->tp = tp;
+    }
+
+    QSize sizeHint() const
+    {
+        return 1.2 * QPushButton::sizeHint();
+    }
+
+public slots:
+
+    void changeState()
+    {
+        QPixmap* pixmap;
+        if(showId) {
+            pixmap = new QPixmap("/usr/share/vivi/hidden.png");
+            showId = FALSE;
+            setText("Id Hidden");
+            tp->setPrivacy(true);
+        }
+        else {
+            pixmap = new QPixmap("/usr/share/vivi/shown.png");
+            showId = TRUE;
+            setText("Id Shown");
+            tp->setPrivacy(false);
+        }
+        QIcon icon(*pixmap);
+        QSize iconSize(pixmap->width(), pixmap->height());
+        setIconSize(iconSize);
+        setIcon(icon);
+    }
+
+protected:
+    void paintEvent(QPaintEvent *event)
+    {
+        QPainter p(this);
+        p.setBrush(QColor(0, 0, 0, 128));
+        p.setPen(Qt::NoPen);
+        p.drawRoundedRect(rect(), 25, 25);
+        p.end();
+
+        QPushButton::paintEvent(event);
+    }
+};
+
+#endif