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 /Main_Window.ui | |
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 'Main_Window.ui')
-rw-r--r-- | Main_Window.ui | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/Main_Window.ui b/Main_Window.ui index 41500a8..8d57153 100644 --- a/Main_Window.ui +++ b/Main_Window.ui @@ -793,12 +793,13 @@ QStackedWidget{ </sizepolicy> </property> <property name="currentIndex"> - <number>3</number> + <number>4</number> </property> <widget class="Dashboard" name="Dashboard"/> <widget class="ICWidget" name="ICPage"/> <widget class="HVACWidget" name="HVACPage"/> <widget class="SteeringCtrlWidget" name="SteeringCtrlPage"/> + <widget class="KeypadWidget" name="KeypadPage"/> <widget class="settings" name="settingsPage"/> </widget> </item> @@ -1047,6 +1048,23 @@ QStackedWidget{ </property> </widget> </item> + <item> + <widget class="QPushButton" name="keypadButton"> + <property name="text"> + <string/> + </property> + <property name="icon"> + <iconset resource="assets/res.qrc"> + <normaloff>:/Images/Images/grid.svg</normaloff>:/Images/Images/grid.svg</iconset> + </property> + <property name="iconSize"> + <size> + <width>35</width> + <height>35</height> + </size> + </property> + </widget> + </item> </layout> </widget> </item> @@ -1149,6 +1167,12 @@ QStackedWidget{ <header>Widgets/Dashboard</header> <container>1</container> </customwidget> + <customwidget> + <class>KeypadWidget</class> + <extends>QWidget</extends> + <header>Widgets/Keypad</header> + <container>1</container> + </customwidget> </customwidgets> <resources> <include location="assets/res.qrc"/> |