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

View File

@ -118,7 +118,9 @@ class MainWindow(QtWidgets.QMainWindow):
self.conn_menu = ConnMenu() self.conn_menu = ConnMenu()
self.connect_btn.setMenu(self.conn_menu) 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.thermostat_settings.setMenu(self.thermostat_ctrl_menu)
self.loading_spinner.hide() self.loading_spinner.hide()