summaryrefslogtreecommitdiffstats
path: root/examples/dbus/remotecontrolledcar/controller/controller.cpp
blob: ab0ec20d2268d498315d78c67130eb27d8569bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtWidgets>

#include "controller.h"
#include "car_interface.h"

Controller::Controller(QWidget *parent)
    : QWidget(parent)
{
    ui.setupUi(this);
    car = new org::example::Examples::CarInterface("org.example.CarExample", "/Car",
                           QDBusConnection::sessionBus(), this);
    startTimer(1000);
}

void Controller::timerEvent(QTimerEvent *event)
{
    Q_UNUSED(event);
    if (car->isValid())
        ui.label->setText("connected");
    else
        ui.label->setText("disconnected");
}

void Controller::on_accelerate_clicked()
{
    car->accelerate();
}

void Controller::on_decelerate_clicked()
{
    car->decelerate();
}

void Controller::on_left_clicked()
{
    car->turnLeft();
}

void Controller::on_right_clicked()
{
    car->turnRight();
}