summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJonas Rabbe <jonas.rabbe@nokia.com>2011-08-26 10:59:19 +1000
committerQt by Nokia <qt-info@nokia.com>2011-08-26 06:10:10 +0200
commit7535629ecb4a4af6c003ea0b3ba7e5eca6f1d847 (patch)
treee41a72783d653a62b06849dad66d184a41cc2589 /examples
parentf60838dcfd30c27ac0c8925f605a5f3c9eb7fc6c (diff)
Introduction of fake radio backend to enable testing the radio APIs
Includes some behavior for all standard methods. Also fixes a typo in qradiotunercontrol.h and a couple of minor bugs in the radio example that came to light using this new backend. Change-Id: I65b8b8715a46f0fd702f9630ea81f7d5df527055 Reviewed-on: http://codereview.qt.nokia.com/3619 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Dmytro Poplavskiy <dmytro.poplavskiy@nokia.com> Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/radio/radio.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/radio/radio.cpp b/examples/radio/radio.cpp
index 0d4c33e93..34a034235 100644
--- a/examples/radio/radio.cpp
+++ b/examples/radio/radio.cpp
@@ -45,8 +45,6 @@
Radio::Radio()
{
radio = new QRadioTuner;
- connect(radio,SIGNAL(frequencyChanged(int)),this,SLOT(freqChanged(int)));
- connect(radio,SIGNAL(signalStrengthChanged(int)),this,SLOT(signalChanged(int)));
connect(radio, SIGNAL(error(QRadioTuner::Error)), this, SLOT(error(QRadioTuner::Error)));
if(radio->isBandSupported(QRadioTuner::FM))
@@ -62,6 +60,7 @@ Radio::Radio()
freq = new QLabel;
freq->setText(QString("%1 kHz").arg(radio->frequency()/1000));
topBar->addWidget(freq);
+ connect(radio,SIGNAL(frequencyChanged(int)),this,SLOT(freqChanged(int)));
signal = new QLabel;
if (radio->isAvailable())
@@ -69,6 +68,8 @@ Radio::Radio()
else
signal->setText(tr("No radio found"));
topBar->addWidget(signal);
+ connect(radio,SIGNAL(signalStrengthChanged(int)),this,SLOT(signalChanged(int)));
+
volumeSlider = new QSlider(Qt::Vertical,this);
volumeSlider->setRange(0,100);
volumeSlider->setValue(50);