mirror of https://gitlab.com/pamhyr/pamhyr2
refactoring: Apply PamhyrWindow on Debug window.
parent
ca10f19fe5
commit
624e9b6f71
|
|
@ -20,8 +20,7 @@ import logging
|
||||||
|
|
||||||
from tools import trace, timer
|
from tools import trace, timer
|
||||||
|
|
||||||
from View.ASubWindow import ASubMainWindow
|
from View.Tools.PamhyrWindow import PamhyrWindow
|
||||||
from View.ListedSubWindow import ListedSubWindow
|
|
||||||
|
|
||||||
from PyQt5.QtGui import (
|
from PyQt5.QtGui import (
|
||||||
QKeySequence,
|
QKeySequence,
|
||||||
|
|
@ -45,20 +44,19 @@ logger = logging.getLogger()
|
||||||
|
|
||||||
_translate = QCoreApplication.translate
|
_translate = QCoreApplication.translate
|
||||||
|
|
||||||
class ReplWindow(ASubMainWindow, ListedSubWindow):
|
class ReplWindow(PamhyrWindow):
|
||||||
def __init__(self, title="Debug REPL",
|
_pamhyr_ui = "DebugRepl"
|
||||||
study=None, config=None,
|
_pamhyr_name = "Debug REPL"
|
||||||
|
|
||||||
|
def __init__(self, study=None, config=None,
|
||||||
solver=None, parent=None):
|
solver=None, parent=None):
|
||||||
self._title = title
|
|
||||||
|
|
||||||
self._study = study
|
|
||||||
self._config = config
|
|
||||||
self._parent = parent
|
|
||||||
|
|
||||||
super(ReplWindow, self).__init__(
|
super(ReplWindow, self).__init__(
|
||||||
name=self._title, ui="DebugRepl", parent=parent
|
title = self._pamhyr_name,
|
||||||
|
study = study,
|
||||||
|
config = config,
|
||||||
|
options = [],
|
||||||
|
parent = parent
|
||||||
)
|
)
|
||||||
self.ui.setWindowTitle(self._title)
|
|
||||||
|
|
||||||
self.__debug_exec_result__ = None
|
self.__debug_exec_result__ = None
|
||||||
self._history = []
|
self._history = []
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ from View.SolverParameters.Window import SolverParametersWindow
|
||||||
from View.RunSolver.Window import SelectSolverWindow, SolverLogWindow
|
from View.RunSolver.Window import SelectSolverWindow, SolverLogWindow
|
||||||
from View.CheckList.Window import CheckListWindow
|
from View.CheckList.Window import CheckListWindow
|
||||||
from View.Results.Window import ResultsWindow
|
from View.Results.Window import ResultsWindow
|
||||||
# from View.Debug.Window import ReplWindow
|
from View.Debug.Window import ReplWindow
|
||||||
|
|
||||||
from Model.Study import Study
|
from Model.Study import Study
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue