From 010dd90b506bc73b141948bbdaa458b4f773842f Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@gmail.com> Date: Fri, 12 Jan 2018 12:17:56 +0000 Subject: [PATCH] Spruce up the visual appeal of the editor. Refs #20251 --- .../mantidqt/widgets/codeeditor/editor.py | 3 --- .../widgets/codeeditor/interpreter.py | 25 +++++++++++++++++-- .../mantidqt/widgets/src/_widgetscore.sip | 4 +++ 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/qt/python/mantidqt/widgets/codeeditor/editor.py b/qt/python/mantidqt/widgets/codeeditor/editor.py index 5065fbe518b..35802bcec6c 100644 --- a/qt/python/mantidqt/widgets/codeeditor/editor.py +++ b/qt/python/mantidqt/widgets/codeeditor/editor.py @@ -17,12 +17,9 @@ from __future__ import (absolute_import, unicode_literals) # 3rd party imports -from qtpy.QtCore import QObject -from qtpy.QtWidgets import QStatusBar, QTabWidget, QVBoxLayout, QWidget # local imports from mantidqt.utils.qt import import_qtlib -from .execution import PythonCodeExecution # Import single-file editor from C++ wrapping CodeEditor = import_qtlib('_widgetscore', 'mantidqt.widgets', 'ScriptEditor') diff --git a/qt/python/mantidqt/widgets/codeeditor/interpreter.py b/qt/python/mantidqt/widgets/codeeditor/interpreter.py index ea847acedb5..3a1e65f99b8 100644 --- a/qt/python/mantidqt/widgets/codeeditor/interpreter.py +++ b/qt/python/mantidqt/widgets/codeeditor/interpreter.py @@ -18,6 +18,7 @@ from __future__ import (absolute_import, unicode_literals) # 3rd party imports from qtpy.QtCore import QObject +from qtpy.QtGui import QColor, QFont, QFontMetrics from qtpy.QtWidgets import QStatusBar, QVBoxLayout, QWidget # local imports @@ -25,9 +26,11 @@ from mantidqt.widgets.codeeditor.editor import CodeEditor from mantidqt.widgets.codeeditor.execution import PythonCodeExecution IDLE_STATUS_MSG = "Status: Idle" - RUNNING_STATUS_MSG = "Status: Running" +# Editor colors +CURRENTLINE_BKGD = QColor(247, 236, 248) + class PythonFileInterpreter(QWidget): @@ -38,7 +41,7 @@ class PythonFileInterpreter(QWidget): super(PythonFileInterpreter, self).__init__(parent) # layout - self.editor = CodeEditor("Python", self) + self.editor = CodeEditor("AlternateCSPythonLexer", self) self.status = QStatusBar(self) layout = QVBoxLayout() layout.addWidget(self.editor) @@ -46,6 +49,8 @@ class PythonFileInterpreter(QWidget): self.setLayout(layout) layout.setContentsMargins(0, 0, 0, 0) + self._setup_editor() + # presenter self._presenter = PythonFileInterpreterPresenter(self, PythonCodeExecution()) @@ -58,6 +63,22 @@ class PythonFileInterpreter(QWidget): def set_status_message(self, msg): self.status.showMessage(msg) + def _setup_editor(self): + editor = self.editor + # use fixed with font + font = QFont("Courier New") + font.setPointSize(10) + editor.setFont(font) + + # show current editing line but in a softer color + editor.setCaretLineBackgroundColor(CURRENTLINE_BKGD) + editor.setCaretLineVisible(True) + + # set a margin large enough for sensible file sizes < 1000 lines + # and the progress marker + font_metrics = QFontMetrics(font) + editor.setMarginWidth(1, font_metrics.averageCharWidth()*3 + 12) + class PythonFileInterpreterPresenter(QObject): """Presenter part of MVP to control actions on the editor""" diff --git a/qt/python/mantidqt/widgets/src/_widgetscore.sip b/qt/python/mantidqt/widgets/src/_widgetscore.sip index 3f426f9f8d2..75136926fb4 100644 --- a/qt/python/mantidqt/widgets/src/_widgetscore.sip +++ b/qt/python/mantidqt/widgets/src/_widgetscore.sip @@ -68,7 +68,11 @@ public: bool isReadOnly() const; QString text() const; + void setCaretLineBackgroundColor (const QColor & col); + void setCaretLineVisible(bool enable); void setFileName(const QString &filename); + void setFont(const QFont &f); + void setMarginWidth(int margin, int width); void setReadOnly(bool ro); void setText(const QString &text); -- GitLab