~ubuntu-branches/ubuntu/quantal/qtmobility/quantal

« back to all changes in this revision

Viewing changes to tests/auto/qfeedbackplugin/testplugin/qfeedbacktestplugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-16 16:18:07 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101116161807-k2dzt2nyse975r3l
Tags: 1.1.0-0ubuntu1
* New upstream release
* Syncronise with Debian, no remaining changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 Qt Mobility Components.
 
8
**
 
9
** $QT_BEGIN_LICENSE:LGPL$
 
10
** Commercial Usage
 
11
** Licensees holding valid Qt Commercial licenses may use this file in 
 
12
** accordance with the Qt Commercial License Agreement provided with
 
13
** the Software or, alternatively, in accordance with the terms
 
14
** contained in a written agreement between you and Nokia.
 
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
** GNU General Public License Usage
 
29
** Alternatively, this file may be used under the terms of the GNU
 
30
** General Public License version 3.0 as published by the Free Software
 
31
** Foundation and appearing in the file LICENSE.GPL included in the
 
32
** packaging of this file.  Please review the following information to
 
33
** ensure the GNU General Public License version 3.0 requirements will be
 
34
** met: http://www.gnu.org/copyleft/gpl.html.
 
35
**
 
36
** If you are unsure which license is appropriate for your use, please
 
37
** contact the sales department at qt-sales@nokia.com.
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#include <qfeedbackactuator.h>
 
43
#include "qfeedbacktestplugin.h"
 
44
#include <QtCore/QtPlugin>
 
45
#include <QtCore/QDebug>
 
46
#include <QtCore/QStringList>
 
47
#include <QtCore/QCoreApplication>
 
48
#include <QtCore/QFile>
 
49
#include <QtCore/QVariant>
 
50
#include <QDebug>
 
51
 
 
52
Q_EXPORT_PLUGIN2(feedback_testplugin, QFeedbackTestPlugin)
 
53
 
 
54
        QFeedbackTestPlugin::QFeedbackTestPlugin() : QObject(qApp), mHapticState(QFeedbackEffect::Stopped), mFileState(QFeedbackEffect::Stopped)
 
55
{
 
56
    actuators_ << createFeedbackActuator(this, 0) << createFeedbackActuator(this, 1);
 
57
    mHapticTimer.setSingleShot(true);
 
58
    connect(&mHapticTimer, SIGNAL(timeout()), this, SLOT(timerExpired()));
 
59
}
 
60
 
 
61
QFeedbackTestPlugin::~QFeedbackTestPlugin()
 
62
{
 
63
}
 
64
 
 
65
QFeedbackInterface::PluginPriority QFeedbackTestPlugin::pluginPriority()
 
66
{
 
67
    return PluginHighPriority; // to make sure we get used
 
68
}
 
69
 
 
70
QList<QFeedbackActuator*> QFeedbackTestPlugin::actuators()
 
71
{
 
72
    return actuators_;
 
73
}
 
74
 
 
75
void QFeedbackTestPlugin::setActuatorProperty(const QFeedbackActuator &actuator, ActuatorProperty prop, const QVariant &value)
 
76
{
 
77
    Q_UNUSED(actuator)
 
78
    Q_UNUSED(prop)
 
79
    Q_UNUSED(value)
 
80
}
 
81
 
 
82
QVariant QFeedbackTestPlugin::actuatorProperty(const QFeedbackActuator &actuator, ActuatorProperty prop)
 
83
{
 
84
    Q_UNUSED(actuator)
 
85
 
 
86
    switch (prop) {
 
87
        case Name:
 
88
        if (actuator.id() == 0)
 
89
            return QString(QLatin1String("test plugin"));
 
90
        else
 
91
            return QString(QLatin1String("5555"));
 
92
 
 
93
        case State:
 
94
            return static_cast<int>(QFeedbackActuator::Unknown);
 
95
 
 
96
        case Enabled:
 
97
            return false;
 
98
        default:
 
99
            break;
 
100
    }
 
101
 
 
102
    return QVariant();
 
103
}
 
104
 
 
105
bool QFeedbackTestPlugin::isActuatorCapabilitySupported(const QFeedbackActuator &, QFeedbackActuator::Capability cap)
 
106
{
 
107
    switch (cap) {
 
108
        case QFeedbackActuator::Envelope:
 
109
        case QFeedbackActuator::Period:
 
110
            return true;
 
111
        default:
 
112
            break;
 
113
    }
 
114
 
 
115
    return false;
 
116
}
 
117
 
 
118
 
 
119
void QFeedbackTestPlugin::updateEffectProperty(const QFeedbackHapticsEffect *effect, EffectProperty ep)
 
120
{
 
121
    if (ep == QFeedbackHapticsInterface::Duration)
 
122
        mHapticTimer.setInterval(effect->duration());
 
123
}
 
124
 
 
125
void QFeedbackTestPlugin::setEffectState(const QFeedbackHapticsEffect *effect, QFeedbackEffect::State state)
 
126
{
 
127
    Q_UNUSED(effect)
 
128
    if (mHapticState != state) {
 
129
        mHapticState = state;
 
130
        if (mHapticState == QFeedbackEffect::Running) {
 
131
            mHapticTimer.start();
 
132
        } else if (mHapticState == QFeedbackEffect::Stopped) {
 
133
            mHapticTimer.stop();
 
134
        } else if (mHapticState == QFeedbackEffect::Paused) {
 
135
            // In theory should set the duration to the remainder...
 
136
            mHapticTimer.stop();
 
137
        }
 
138
    }
 
139
}
 
140
 
 
141
QFeedbackEffect::State QFeedbackTestPlugin::effectState(const QFeedbackHapticsEffect *effect)
 
142
{
 
143
    Q_UNUSED(effect)
 
144
    return mHapticState;
 
145
}
 
146
 
 
147
void QFeedbackTestPlugin::timerExpired()
 
148
{
 
149
    mHapticState = QFeedbackEffect::Stopped;
 
150
}
 
151
 
 
152
 
 
153
 
 
154
void QFeedbackTestPlugin::setLoaded(QFeedbackFileEffect *effect, bool load)
 
155
{
 
156
    Q_UNUSED(effect)
 
157
    if (effect->source() == QUrl("load")) {
 
158
        // Succeed the load
 
159
        if (load) {
 
160
            mFileState = QFeedbackEffect::Loading;
 
161
            reportLoadFinished(effect, true); // not strictly true
 
162
        } else
 
163
            mFileState = QFeedbackEffect::Stopped;
 
164
    } else {
 
165
        // Fail the load
 
166
        if (load)
 
167
            reportLoadFinished(effect, false);
 
168
    }
 
169
}
 
170
 
 
171
void QFeedbackTestPlugin::setEffectState(QFeedbackFileEffect *effect, QFeedbackEffect::State state)
 
172
{
 
173
    Q_UNUSED(effect)
 
174
    mFileState = state;
 
175
}
 
176
 
 
177
QFeedbackEffect::State QFeedbackTestPlugin::effectState(const QFeedbackFileEffect *effect)
 
178
{
 
179
    Q_UNUSED(effect)
 
180
    return mFileState;
 
181
}
 
182
 
 
183
int QFeedbackTestPlugin::effectDuration(const QFeedbackFileEffect *effect)
 
184
{
 
185
    Q_UNUSED(effect)
 
186
    return 5678;
 
187
}
 
188
 
 
189
QStringList QFeedbackTestPlugin::supportedMimeTypes()
 
190
{
 
191
    return QStringList() << "x-test/this is a test";
 
192
}
 
193
 
 
194
bool QFeedbackTestPlugin::play(QFeedbackEffect::ThemeEffect themeEffect)
 
195
{
 
196
    if (themeEffect == QFeedbackEffect::ThemeBasic)
 
197
        return true;
 
198
    else
 
199
        return false;
 
200
}