diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-01-16 11:31:39 +0000 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-01-16 13:52:19 +0000 |
commit | 833f63409bb5a07b31b19f7e45507c19094081a0 (patch) | |
tree | f1364a1025d9a81addaa8c09e08ea59d0360b0b6 /recipes-automotive/climatecontrolplugin/files/climatecontrol.h | |
parent | 3e16d8c33ca3fb889782d213d8678ebe248f4778 (diff) |
Get rid of Automotive Message Broker as it has been replaced.
Now using AGL Application Framework Binding system
Change-Id: Iac8844645cb85838922bb2fe4e4f355d4444bc09
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'recipes-automotive/climatecontrolplugin/files/climatecontrol.h')
-rw-r--r-- | recipes-automotive/climatecontrolplugin/files/climatecontrol.h | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/recipes-automotive/climatecontrolplugin/files/climatecontrol.h b/recipes-automotive/climatecontrolplugin/files/climatecontrol.h deleted file mode 100644 index 819bb5942..000000000 --- a/recipes-automotive/climatecontrolplugin/files/climatecontrol.h +++ /dev/null @@ -1,84 +0,0 @@ -/* Copyright (C) 2015, Jaguar Land Rover. All Rights Reserved. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -#ifndef CLIMATECONTROL_H -#define CLIMATECONTROL_H - -#include <QQuickItem> - -class ClimateControl : public QQuickItem -{ - Q_OBJECT - Q_DISABLE_COPY(ClimateControl) - Q_PROPERTY(int zone READ getZone WRITE setZone) - Q_PROPERTY(int fanSpeedLevel READ getFanSpeedLevel WRITE setFanSpeedLevel) - Q_PROPERTY(int targetTemperature READ getTargetTemperature WRITE setTargetTemperature) - Q_PROPERTY(bool airConditioning READ getAirConditioning WRITE setAirConditioning) - Q_PROPERTY(bool heater READ getHeater WRITE setHeater) - Q_PROPERTY(int seatHeater READ getSeatHeater WRITE setSeatHeater) - Q_PROPERTY(int seatCooler READ getSeatCooler WRITE setSeatCooler) - Q_PROPERTY(bool airCirculation READ getAirCirculation WRITE setAirCirculation) - Q_PROPERTY(int steeringWheelHeater READ getSteeringWheelHeater WRITE setSteeringWheelHeater) - -public: - ClimateControl(QQuickItem *parent = 0); - ~ClimateControl(); - - // Accessor functions. - qint32 getZone(); - void setZone(qint32 newZone); - quint16 getFanSpeedLevel(); - void setFanSpeedLevel(quint16 newFanSpeedLevel); - qint32 getTargetTemperature(); - void setTargetTemperature(qint32 newTargetTemperature); - bool getAirConditioning(); - void setAirConditioning(bool newAirConditioning); - bool getHeater(); - void setHeater(bool newHeater); - quint8 getSeatHeater(); - void setSeatHeater(quint8 newSeatHeater); - quint8 getSeatCooler(); - void setSeatCooler(quint8 newSeatCooler); - bool getAirCirculation(); - void setAirCirculation(bool newAirCirculation); - quint8 getSteeringWheelHeater(); - void setSteeringWheelHeater(quint8 newSteeringWheelHeater); - -signals: - // Standard notifiers for property updates. - void zoneChanged(); - void fanSpeedLevelChanged(); - void targetTemperatureChanged(); - void airConditioningChanged(); - void heaterChanged(); - void seatHeaterChanged(); - void seatCoolerChanged(); - void airCirculationChanged(); - void steeringWheelHeaterChanged(); - -private: - // Representations of the AMB properties. - qint32 zone; - quint16 fanSpeedLevel; - qint32 targetTemperature; - bool airConditioning; - bool heater; - quint8 seatHeater; - quint8 seatCooler; - bool airCirculation; - quint8 steeringWheelHeater; - - // - // D-Bus functionality member variables. - // - // TODO: Make some of this a generic class for use by other plugins. - // - QVariant dbusRead(const char *property); - void dbusWrite(const char *property, QVariant value); - void getSettings(); -}; - -#endif // CLIMATECONTROL_H |