* Added icons to the controller. * Keep the car within the scene. * Removed the ui file because 4 buttons can be maintained in code easier. Change-Id: I10af821beb442939e1e7fbdd3ffbde67a272bb2f Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 29a4323974a1877faf389637be40688e3bc1790d)
35 lines
636 B
C++
35 lines
636 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef CONTROLLER_H
|
|
#define CONTROLLER_H
|
|
|
|
#include <QWidget>
|
|
#include <QPushButton>
|
|
#include <QLabel>
|
|
|
|
#include "car_interface.h"
|
|
|
|
class Controller : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Controller(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void timerEvent(QTimerEvent *event) override;
|
|
|
|
private:
|
|
org::example::Examples::CarInterface *car;
|
|
QPushButton *accelerate;
|
|
QPushButton *decelerate;
|
|
QPushButton *left;
|
|
QPushButton *right;
|
|
QLabel *statusSymbol;
|
|
QLabel *status;
|
|
};
|
|
|
|
#endif
|
|
|