~ubuntu-branches/ubuntu/utopic/qtsystems-opensource-src/utopic-proposed

« back to all changes in this revision

Viewing changes to examples/publishsubscribe/battery-charge/battery-publisher/batterypublisher.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-06-14 10:32:13 UTC
  • Revision ID: package-import@ubuntu.com-20130614103213-yao8gdav28kntvvj
Tags: upstream-5.0~git20130614
ImportĀ upstreamĀ versionĀ 5.0~git20130614

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the examples of the Qt Mobility Components.
 
7
**
 
8
** $QT_BEGIN_LICENSE:BSD$
 
9
** You may use this file under the terms of the BSD license as follows:
 
10
**
 
11
** "Redistribution and use in source and binary forms, with or without
 
12
** modification, are permitted provided that the following conditions are
 
13
** met:
 
14
**   * Redistributions of source code must retain the above copyright
 
15
**     notice, this list of conditions and the following disclaimer.
 
16
**   * Redistributions in binary form must reproduce the above copyright
 
17
**     notice, this list of conditions and the following disclaimer in
 
18
**     the documentation and/or other materials provided with the
 
19
**     distribution.
 
20
**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
 
21
**     of its contributors may be used to endorse or promote products derived
 
22
**     from this software without specific prior written permission.
 
23
**
 
24
**
 
25
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
26
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
27
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
28
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
29
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
30
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
31
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
32
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
33
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
34
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
35
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
36
**
 
37
** $QT_END_LICENSE$
 
38
**
 
39
****************************************************************************/
 
40
 
 
41
#include "batterypublisher.h"
 
42
#include "ui_batterypublisher.h"
 
43
 
 
44
#include <qvaluespacepublisher.h>
 
45
 
 
46
#include <QTimer>
 
47
 
 
48
BatteryPublisher::BatteryPublisher(QWidget *parent)
 
49
    : QDialog(parent)
 
50
    , ui(new Ui::BatteryPublisher)
 
51
    , chargeTimer(0)
 
52
{
 
53
    ui->setupUi(this);
 
54
 
 
55
    publisher = new QValueSpacePublisher(QStringLiteral("/power/battery"));
 
56
 
 
57
    connect(ui->batteryCharge, SIGNAL(valueChanged(int)),
 
58
            this, SLOT(chargeChanged(int)));
 
59
    connect(ui->charging, SIGNAL(toggled(bool)),
 
60
            this, SLOT(chargingToggled(bool)));
 
61
 
 
62
    chargeChanged(ui->batteryCharge->value());
 
63
}
 
64
 
 
65
BatteryPublisher::~BatteryPublisher()
 
66
{
 
67
    delete ui;
 
68
    delete publisher;
 
69
}
 
70
 
 
71
void BatteryPublisher::changeEvent(QEvent *e)
 
72
{
 
73
    QDialog::changeEvent(e);
 
74
    switch (e->type()) {
 
75
    case QEvent::LanguageChange:
 
76
        ui->retranslateUi(this);
 
77
        break;
 
78
    default:
 
79
        break;
 
80
    }
 
81
}
 
82
 
 
83
void BatteryPublisher::timerEvent(QTimerEvent *)
 
84
{
 
85
    int newCharge = ui->batteryCharge->value() + 1;
 
86
    ui->batteryCharge->setValue(newCharge);
 
87
 
 
88
    if (newCharge >= 100)
 
89
        ui->charging->setChecked(false);
 
90
}
 
91
 
 
92
void BatteryPublisher::chargeChanged(int newCharge)
 
93
{
 
94
    publisher->setValue(QStringLiteral("charge"), newCharge);
 
95
}
 
96
 
 
97
void BatteryPublisher::chargingToggled(bool charging)
 
98
{
 
99
    ui->batteryCharge->setEnabled(!charging);
 
100
    publisher->setValue(QStringLiteral("charging"), charging);
 
101
 
 
102
    if (charging)
 
103
        chargeTimer = startTimer(2000);
 
104
    else
 
105
        killTimer(chargeTimer);
 
106
}