Fix info boxes for load/saving from flash

This commit is contained in:
atse 2024-08-27 17:00:16 +08:00
parent a8d7986c82
commit e3ac7debc4
2 changed files with 10 additions and 12 deletions

View File

@ -6,7 +6,7 @@ from pytec.gui.view.net_settings_input_diag import NetSettingsInputDiag
class ThermostatCtrlMenu(QtWidgets.QMenu):
def __init__(self, thermostat, style):
def __init__(self, thermostat, info_box, style):
super().__init__()
self._thermostat = thermostat
self._style = style
@ -69,11 +69,9 @@ class ThermostatCtrlMenu(QtWidgets.QMenu):
def load(_):
self._thermostat.load_cfg()
loaded = QtWidgets.QMessageBox(self)
loaded.setWindowTitle("Config loaded")
loaded.setText("All channel configs have been loaded from flash.")
loaded.setIcon(QtWidgets.QMessageBox.Icon.Information)
loaded.show()
self.info_box.display_info_box(
"Config loaded", "All channel configs have been loaded from flash."
)
self.actionLoad_all_configs = QtGui.QAction("Load Config", self)
self.actionLoad_all_configs.triggered.connect(load)
@ -83,11 +81,9 @@ class ThermostatCtrlMenu(QtWidgets.QMenu):
def save(_):
self._thermostat.save_cfg()
saved = QtWidgets.QMessageBox(self)
saved.setWindowTitle("Config saved")
saved.setText("All channel configs have been saved to flash.")
saved.setIcon(QtWidgets.QMessageBox.Icon.Information)
saved.show()
self.info_box.display_info_box(
"Config saved", "All channel configs have been saved to flash."
)
self.actionSave_all_configs = QtGui.QAction("Save Config", self)
self.actionSave_all_configs.triggered.connect(save)

View File

@ -118,7 +118,9 @@ class MainWindow(QtWidgets.QMainWindow):
self.conn_menu = ConnMenu()
self.connect_btn.setMenu(self.conn_menu)
self.thermostat_ctrl_menu = ThermostatCtrlMenu(self.thermostat, self.style())
self.thermostat_ctrl_menu = ThermostatCtrlMenu(
self.thermostat, self.info_box, self.style()
)
self.thermostat_settings.setMenu(self.thermostat_ctrl_menu)
self.loading_spinner.hide()