diff options
author | 2024-05-22 15:02:15 -0400 | |
---|---|---|
committer | 2024-05-27 13:03:41 +0000 | |
commit | 6b21032fc91b679353a53073f5570a25a4fd0991 (patch) | |
tree | 818dc7c5fd97db7750ab1001014f36db7a8dfa4a /main.py | |
parent | f2c7811d3c6331f264f3505147d590c315e16d02 (diff) |
Add ability to disable HVAC and steering wheel pages
Add configuration file options to disable the HVAC and steering
wheel pages. Also includes a bit of refactoring around the
KUKSA.val databroker client mostly focused on cleaning up naming
for now. If significant development continues on this application
the KuksaClient class should be used as the place where more
refactoring occurs.
Bug-AGL: SPEC-5142
Change-Id: I986c7cac4e6543e2a1ad40ebf436fd40e2ae2300
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -78,8 +78,8 @@ class MainWindow(Base, Form): self.dashboardButton = self.findChild(QPushButton, 'dashboardButton') UI_Handeler.Hide_Navbar(self, bool_arg=True) - self.stackedWidget.currentChanged.connect(lambda: UI_Handeler.subscribe_VSS_Signals( - self) if UI_Handeler.set_instance(self) else None) + #self.stackedWidget.currentChanged.connect(lambda: UI_Handeler.subscribe_VSS_Signals( + # self) if UI_Handeler.set_instance(self) else None) self.notificationContent = self.findChild( QWidget, 'notificationContent') @@ -109,10 +109,19 @@ class MainWindow(Base, Form): svg_widget.setStyleSheet("background-color: transparent;") self.steeringCtrlButton.setIcon(QIcon(svg_widget.grab())) + if not config.hvac_enabled(): + self.hvacButton.hide() + if not config.steering_wheel_enabled(): + self.steeringCtrlButton.hide() + NavigationButtons = QtWidgets.QButtonGroup(self) NavigationButtons.setExclusive(True) for i, button in enumerate(Navigation_buttons): + if button == self.hvacButton and not config.hvac_enabled(): + continue + if button == self.steeringCtrlButton and not config.steering_wheel_enabled(): + continue button.setCheckable(True) NavigationButtons.addButton(button) button.clicked.connect(partial(UI_Handeler.animateSwitch, self, i)) @@ -164,12 +173,12 @@ class MainWindow(Base, Form): if self.current_page is not None: if self.current_page != 0 and self.current_page != 4: - self.stackedWidget.widget(self.current_page).feed_kuksa.stop() + self.stackedWidget.widget(self.current_page).kuksa_client.stop() self.current_page = page_index if self.current_page != 0 and self.current_page != 4: - self.stackedWidget.widget(self.current_page).feed_kuksa.start() + self.stackedWidget.widget(self.current_page).kuksa_client.start() if __name__ == '__main__': @@ -179,4 +188,4 @@ if __name__ == '__main__': ':/Images/Images/Automotive_Grade_Linux_logo.svg')) window = MainWindow() window.show() - sys.exit(app.exec_())
\ No newline at end of file + sys.exit(app.exec_()) |