aboutsummaryrefslogtreecommitdiffstats
path: root/src/remotesettings/settings.qface
diff options
context:
space:
mode:
Diffstat (limited to 'src/remotesettings/settings.qface')
-rw-r--r--src/remotesettings/settings.qface131
1 files changed, 0 insertions, 131 deletions
diff --git a/src/remotesettings/settings.qface b/src/remotesettings/settings.qface
deleted file mode 100644
index ba4a68af..00000000
--- a/src/remotesettings/settings.qface
+++ /dev/null
@@ -1,131 +0,0 @@
-module Settings 1.0
-
-@config: {id: "UISettings"}
-interface UISettings {
- string language;
- list<string> languages;
-
- bool twentyFourHourTimeFormat;
-
- /**
- * 0 is muted and 1.0 is max
- */
- real volume;
- bool muted;
- /*
- * -1.0 left and +1.0 right and 0 is centered
- */
- real balance;
-
- int theme;
- string accentColor;
-
- bool rtlMode;
-
- bool door1Open;
- bool door2Open;
-}
-
-@config: {id: "InstrumentCluster"}
-interface InstrumentCluster {
- /*
- * In Km/H
- */
- real speed;
-
- /*
- * In Km/H
- */
- real speedLimit;
-
- /*
- * In Km/H
- */
- real speedCruise;
-
- /*
- * Between 0 (inclusive) and 100 (inclusive)
- */
- real ePower;
-
- /*
- * 0 -> Park
- * 1 -> Neutral
- * 2 -> Drive
- * 3 -> Reverse
- */
- int driveTrainState;
-
- bool lowBeamHeadlight;
- bool highBeamHeadlight;
- bool fogLight;
- bool stabilityControl;
- bool seatBeltNotFastened;
- bool leftTurn;
- bool rightTurn;
- bool ABSFailure;
- bool parkBrake;
- bool tyrePressureLow;
- bool brakeFailure;
- bool airbagFailure;
-
- /*
- * outside tempterature in celsius degrees
- */
- real outsideTemperatureCelsius;
-
- /*
- * Mileage in km
- */
- real mileageKm;
-
- /*
- * 0 - normal
- * 1 - eco
- * 2 - sport
- */
- int drivingMode;
- int drivingModeRangeKm;
- int drivingModeECORangeKm;
-
- /*
- * Navigation
- * progress 0.0 - 1.0
- * distance in km
- */
- real navigationProgressPercents;
- real navigationRouteDistanceKm;
-
- /*
- * Whether the instrument cluster should be in navigation mode
- * in this mode its gauges etc will be reshaped to give more room
- * for the maps navigation content being displayed behind it
- */
- bool navigationMode;
-
- /** Whether a secondary (cluster) screen is available */
- bool available;
-
- /** Whether both gaueges should be hidden or not */
- bool hideGauges;
- bool flatGauges;
-}
-
-@config: {id: "SystemUI"}
-interface SystemUI {
- /*
- * Incrementing this value will make sysui switch to display the next
- * available application instrument cluster window.
- *
- * This is a hack. What we really need here is just a plain signal that
- * could be emitted on demand. So that's not really storing a setting
- * but serving as plain RPC.
- */
- int applicationICWindowSwitchCount
-}
-
-@config: {id: "ConnectionMonitoring"}
-interface ConnectionMonitoring {
- int intervalMS;
- int counter;
-}