Skip to content
Snippets Groups Projects
Commit d9e4f7df authored by Martyn Gigg's avatar Martyn Gigg
Browse files

Read settings for message display.

Refs #21251
parent 99d52974
No related branches found
No related tags found
No related merge requests found
...@@ -122,6 +122,7 @@ class MainWindow(QMainWindow): ...@@ -122,6 +122,7 @@ class MainWindow(QMainWindow):
self.messagedisplay = None self.messagedisplay = None
self.ipythonconsole = None self.ipythonconsole = None
self.editor = None self.editor = None
self.widgets = []
# Menus # Menus
self.file_menu = None self.file_menu = None
...@@ -145,18 +146,22 @@ class MainWindow(QMainWindow): ...@@ -145,18 +146,22 @@ class MainWindow(QMainWindow):
self.messagedisplay = LogMessageDisplay(self) self.messagedisplay = LogMessageDisplay(self)
# this takes over stdout/stderr # this takes over stdout/stderr
self.messagedisplay.register_plugin() self.messagedisplay.register_plugin()
self.widgets.append(self.messagedisplay)
self.set_splash("Loading IPython console") self.set_splash("Loading IPython console")
from workbench.plugins.jupyterconsole import JupyterConsole from workbench.plugins.jupyterconsole import JupyterConsole
self.ipythonconsole = JupyterConsole(self) self.ipythonconsole = JupyterConsole(self)
self.ipythonconsole.register_plugin() self.ipythonconsole.register_plugin()
self.widgets.append(self.ipythonconsole)
self.set_splash("Loading code editing widget") self.set_splash("Loading code editing widget")
from workbench.plugins.editor import MultiFileEditor from workbench.plugins.editor import MultiFileEditor
self.editor = MultiFileEditor(self) self.editor = MultiFileEditor(self)
self.editor.register_plugin(self.editors_menu) self.editor.register_plugin(self.editors_menu)
self.widgets.append(self.editor)
self.setup_layout() self.setup_layout()
self.read_user_settings()
def set_splash(self, msg=None): def set_splash(self, msg=None):
if not self.splash: if not self.splash:
...@@ -338,6 +343,10 @@ class MainWindow(QMainWindow): ...@@ -338,6 +343,10 @@ class MainWindow(QMainWindow):
qba = self.saveState() qba = self.saveState()
CONF.set(section, prefix + 'state', qbytearray_to_str(qba)) CONF.set(section, prefix + 'state', qbytearray_to_str(qba))
def read_user_settings(self):
for widget in self.widgets:
widget.read_user_settings(CONF.qsettings)
def initialize(): def initialize():
"""Perform an initialization of the application instance. Most notably """Perform an initialization of the application instance. Most notably
...@@ -367,7 +376,7 @@ def start_workbench(app): ...@@ -367,7 +376,7 @@ def start_workbench(app):
preloaded_packages = ('mantid', 'matplotlib') preloaded_packages = ('mantid', 'matplotlib')
for name in preloaded_packages: for name in preloaded_packages:
main_window.set_splash('Preloading ' + name) main_window.set_splash('Preloading ' + name)
importlib.import_module('mantid') importlib.import_module(name)
main_window.show() main_window.show()
if main_window.splash: if main_window.splash:
......
...@@ -37,6 +37,14 @@ class PluginWidget(QWidget): ...@@ -37,6 +37,14 @@ class PluginWidget(QWidget):
# ----------------- Plugin API -------------------- # ----------------- Plugin API --------------------
def get_plugin_title(self):
raise NotImplementedError()
def read_user_settings(self, qsettings):
"""Called by the main window to ask the plugin to
load user configuration"""
raise NotImplementedError()
def register_plugin(self, menu=None): def register_plugin(self, menu=None):
"""Called by the parent widget/window and should """Called by the parent widget/window and should
perform any setup required to use the plugin. perform any setup required to use the plugin.
...@@ -44,9 +52,6 @@ class PluginWidget(QWidget): ...@@ -44,9 +52,6 @@ class PluginWidget(QWidget):
""" """
raise NotImplementedError() raise NotImplementedError()
def get_plugin_title(self):
raise NotImplementedError()
# ----------------- Plugin behaviour ------------------ # ----------------- Plugin behaviour ------------------
def create_dockwidget(self): def create_dockwidget(self):
......
...@@ -61,13 +61,16 @@ class MultiFileEditor(PluginWidget): ...@@ -61,13 +61,16 @@ class MultiFileEditor(PluginWidget):
# ----------- Plugin API -------------------- # ----------- Plugin API --------------------
def get_plugin_title(self):
return "Editor"
def read_user_settings(self, _):
pass
def register_plugin(self, menu=None): def register_plugin(self, menu=None):
self.main.add_dockwidget(self) self.main.add_dockwidget(self)
add_actions(menu, self.editor_actions) add_actions(menu, self.editor_actions)
def get_plugin_title(self):
return "Editor"
# ----------- Plugin behaviour -------------- # ----------- Plugin behaviour --------------
def execute_current(self): def execute_current(self):
......
...@@ -40,8 +40,11 @@ class JupyterConsole(PluginWidget): ...@@ -40,8 +40,11 @@ class JupyterConsole(PluginWidget):
# ----------------- Plugin API -------------------- # ----------------- Plugin API --------------------
def register_plugin(self, menu=None):
self.main.add_dockwidget(self)
def get_plugin_title(self): def get_plugin_title(self):
return "IPython" return "IPython"
def read_user_settings(self, _):
pass
def register_plugin(self, menu=None):
self.main.add_dockwidget(self)
...@@ -45,9 +45,13 @@ class LogMessageDisplay(PluginWidget): ...@@ -45,9 +45,13 @@ class LogMessageDisplay(PluginWidget):
stdout_capture.sig_write_received.connect(self.display.appendNotice) stdout_capture.sig_write_received.connect(self.display.appendNotice)
stderr_capture.sig_write_received.connect(self.display.appendError) stderr_capture.sig_write_received.connect(self.display.appendError)
self.stdout, self.stderr = stdout_capture, stderr_capture self.stdout, self.stderr = stdout_capture, stderr_capture
def get_plugin_title(self): def get_plugin_title(self):
return "Messages" return "Messages"
def read_user_settings(self, qsettings):
self.display.readSettings(qsettings)
def register_plugin(self, menu=None): def register_plugin(self, menu=None):
self.display.attachLoggingChannel() self.display.attachLoggingChannel()
self._capture_stdout_and_stderr() self._capture_stdout_and_stderr()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment