diff options
author | Suchinton Chakravarty <suchinton.2001@gmail.com> | 2024-10-15 23:57:36 +0530 |
---|---|---|
committer | Suchinton Chakravarty <suchinton.2001@gmail.com> | 2024-10-22 16:09:43 +0530 |
commit | 6fdddee7d45206dc64eacd08700f79566ad9b4a6 (patch) | |
tree | 7d688595f69cdb7d7484f37542059d7406da28c5 /assets | |
parent | 2e2dd79e41b27a1d50be3c118955cdbd76e65539 (diff) |
Fix Visual Bugs and Add options for Keypad input
- Fixed spin wheel input alignment for HVAC controls
- Minor tweaks to Gauge input, Added new tick marks and improved gradient
- Adding option(s) in config to handle Keypad input settings
- Reconnect QML signals to enable two way input for Speed, RPM and other QML elements
- Refactor and Add CLI option to start and stop playback.
- Make Tire Pressure Dock into floating window and align to screen center.
- Update resources to include keypad icons.
- Add new tile for Keypad inputs
Bug-AGL: SPEC-5161
Change-Id: I1ecefdfd114ecad081c138e74c1598907d91fd23
Signed-off-by: Suchinton Chakravarty <suchinton.2001@gmail.com>
Diffstat (limited to 'assets')
-rw-r--r-- | assets/Images/Key_1.png | bin | 0 -> 10028 bytes | |||
-rw-r--r-- | assets/Images/Key_2.png | bin | 0 -> 13214 bytes | |||
-rw-r--r-- | assets/Images/Key_3.png | bin | 0 -> 13291 bytes | |||
-rw-r--r-- | assets/Images/Key_4.png | bin | 0 -> 12071 bytes | |||
-rw-r--r-- | assets/Images/flutter_demo.png | bin | 0 -> 2402 bytes | |||
-rw-r--r-- | assets/Images/grid.svg | 13 | ||||
-rw-r--r-- | assets/Images/qt_demo.png | bin | 0 -> 7410 bytes | |||
-rw-r--r-- | assets/res.qrc | 7 |
8 files changed, 20 insertions, 0 deletions
diff --git a/assets/Images/Key_1.png b/assets/Images/Key_1.png Binary files differnew file mode 100644 index 0000000..25cd0d0 --- /dev/null +++ b/assets/Images/Key_1.png diff --git a/assets/Images/Key_2.png b/assets/Images/Key_2.png Binary files differnew file mode 100644 index 0000000..e69e6bd --- /dev/null +++ b/assets/Images/Key_2.png diff --git a/assets/Images/Key_3.png b/assets/Images/Key_3.png Binary files differnew file mode 100644 index 0000000..e72082d --- /dev/null +++ b/assets/Images/Key_3.png diff --git a/assets/Images/Key_4.png b/assets/Images/Key_4.png Binary files differnew file mode 100644 index 0000000..f09f283 --- /dev/null +++ b/assets/Images/Key_4.png diff --git a/assets/Images/flutter_demo.png b/assets/Images/flutter_demo.png Binary files differnew file mode 100644 index 0000000..fc9f425 --- /dev/null +++ b/assets/Images/flutter_demo.png diff --git a/assets/Images/grid.svg b/assets/Images/grid.svg new file mode 100644 index 0000000..f3554d1 --- /dev/null +++ b/assets/Images/grid.svg @@ -0,0 +1,13 @@ +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools --> +<svg fill="#ffffff" width="800px" height="800px" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff"> +
<g id="SVGRepo_bgCarrier" stroke-width="0"/> +
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/> +
<g id="SVGRepo_iconCarrier"> +
<title>ionicons-v5-i</title> +
<path d="M204,240H68a36,36,0,0,1-36-36V68A36,36,0,0,1,68,32H204a36,36,0,0,1,36,36V204A36,36,0,0,1,204,240Z"/> +
<path d="M444,240H308a36,36,0,0,1-36-36V68a36,36,0,0,1,36-36H444a36,36,0,0,1,36,36V204A36,36,0,0,1,444,240Z"/> +
<path d="M204,480H68a36,36,0,0,1-36-36V308a36,36,0,0,1,36-36H204a36,36,0,0,1,36,36V444A36,36,0,0,1,204,480Z"/> +
<path d="M444,480H308a36,36,0,0,1-36-36V308a36,36,0,0,1,36-36H444a36,36,0,0,1,36,36V444A36,36,0,0,1,444,480Z"/> +
</g> +
</svg>
\ No newline at end of file diff --git a/assets/Images/qt_demo.png b/assets/Images/qt_demo.png Binary files differnew file mode 100644 index 0000000..29bf526 --- /dev/null +++ b/assets/Images/qt_demo.png diff --git a/assets/res.qrc b/assets/res.qrc index d3f0c91..894da30 100644 --- a/assets/res.qrc +++ b/assets/res.qrc @@ -40,6 +40,13 @@ <file>carbon_icons/windy--strong-disabled.svg</file> </qresource> <qresource prefix="Images"> + <file>Images/grid.svg</file> + <file>Images/qt_demo.png</file> + <file>Images/flutter_demo.png</file> + <file>Images/Key_4.png</file> + <file>Images/Key_3.png</file> + <file>Images/Key_2.png</file> + <file>Images/Key_1.png</file> <file>Images/tire-pressure.svg</file> <file>Images/HMI_HVAC_Fan_Icon.svg</file> <file>Images/AGL_Icons_LaneDeparture_white.svg</file> |