Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
workflow
ewoksapps
est
Commits
d3403620
Commit
d3403620
authored
Jul 27, 2021
by
payno
Browse files
[ewoks] remove inheritence from Registered of the OWWidget
parent
5fe8bac1
Pipeline
#51478
passed with stages
in 17 minutes and 28 seconds
Changes
16
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
orangecontrib/est/widgets/larch/autobk.py
View file @
d3403620
...
...
@@ -52,7 +52,6 @@ from est.gui.larch.autobk import _AutobkParameters
from
orangecontrib.est.progress
import
QProgress
from
orangecontrib.est.utils
import
Converter
from
orangecontrib.est.widgets.container
import
_ParameterWindowContainer
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -141,7 +140,7 @@ class AutobkWindow(qt.QMainWindow):
)
class
AutobkOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
):
class
AutobkOW
(
_ProcessForOrangeMixIn
,
OWWidget
):
"""
Widget used for signal extraction
"""
...
...
orangecontrib/est/widgets/larch/mback.py
View file @
d3403620
...
...
@@ -47,7 +47,6 @@ from orangecontrib.est.progress import QProgress
from
est.gui.XasObjectViewer
import
_plot_norm
,
_plot_raw
,
_plot_fpp
,
_plot_f2
from
orangecontrib.est.utils
import
Converter
from
orangecontrib.est.widgets.container
import
_ParameterWindowContainer
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -114,7 +113,7 @@ class MbackWindow(qt.QMainWindow):
return
len
(
self
.
xasObjViewer
.
_spectrumViews
[
0
].
_plotWidget
.
getAllCurves
())
class
MbackOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
):
class
MbackOW
(
_ProcessForOrangeMixIn
,
OWWidget
):
"""
Widget used for signal extraction
"""
...
...
orangecontrib/est/widgets/larch/mback_norm.py
View file @
d3403620
...
...
@@ -47,7 +47,6 @@ from est.gui.larch.mback import _MBackParameters
from
orangecontrib.est.progress
import
QProgress
from
orangecontrib.est.utils
import
Converter
from
orangecontrib.est.widgets.container
import
_ParameterWindowContainer
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -117,7 +116,6 @@ class Mback_normWindow(qt.QMainWindow):
class
Mback_normOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/larch/pre_edge.py
View file @
d3403620
...
...
@@ -54,7 +54,6 @@ from est.gui.larch.pre_edge import _MPreEdgeParameters
from
orangecontrib.est.progress
import
QProgress
from
orangecontrib.est.utils
import
Converter
from
orangecontrib.est.widgets.container
import
_ParameterWindowContainer
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -131,7 +130,6 @@ class _PreEdgeWindow(qt.QMainWindow):
class
PreEdgeOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/larch/xftf.py
View file @
d3403620
...
...
@@ -53,7 +53,6 @@ from est.gui.larch.xftf import _MXFTFParameters
from
orangecontrib.est.progress
import
QProgress
from
orangecontrib.est.utils
import
Converter
from
orangecontrib.est.widgets.container
import
_ParameterWindowContainer
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -153,7 +152,6 @@ class XFTFWindow(qt.QMainWindow):
class
XFTFOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/pymca/exafs.py
View file @
d3403620
...
...
@@ -40,7 +40,6 @@ from est.core.types import XASObject
from
PyMca5.PyMcaGui.physics.xas.XASPostEdgeParameters
import
XASPostEdgeParameters
from
silx.gui
import
qt
from
silx.gui.plot
import
LegendSelector
from
ewokscore.registration
import
Registered
import
est.core.process.pymca.exafs
from
orangecontrib.est.process
import
_ProcessForOrangeMixIn
,
ProcessRunnable
from
est.gui.XasObjectViewer
import
XasObjectViewer
,
ViewType
...
...
@@ -120,7 +119,6 @@ class ExafsWindow(qt.QMainWindow):
class
ExafsOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/pymca/ft.py
View file @
d3403620
...
...
@@ -48,7 +48,6 @@ from est.core.types import XASObject
from
est.gui.XasObjectViewer
import
XasObjectViewer
,
ViewType
from
est.gui.XasObjectViewer
import
_normalized_exafs
,
_ft_window_plot
from
est.gui.XasObjectViewer
import
_ft_intensity_plot
,
_ft_imaginary_plot
from
ewokscore.registration
import
Registered
from
orangecontrib.est.progress
import
QProgress
from
orangecontrib.est.utils
import
Converter
...
...
@@ -139,7 +138,6 @@ class FTWindow(qt.QMainWindow):
class
FTOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/pymca/k_weight.py
View file @
d3403620
...
...
@@ -36,7 +36,6 @@ from Orange.widgets.widget import OWWidget
from
Orange.widgets.widget
import
Input
,
Output
import
Orange.data
from
silx.gui
import
qt
from
ewokscore.registration
import
Registered
import
est.core.process.pymca.k_weight
from
orangecontrib.est.process
import
_ProcessForOrangeMixIn
,
ProcessRunnable
from
est.core.types
import
XASObject
...
...
@@ -69,7 +68,6 @@ class KWeightWindow(qt.QMainWindow):
class
KWeightOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/pymca/normalization.py
View file @
d3403620
...
...
@@ -56,7 +56,6 @@ from est.gui.e0calculator import E0CalculatorDialog
from
est.core.types
import
XASObject
from
est.gui.XasObjectViewer
import
XasObjectViewer
,
ViewType
import
est.core.process.pymca.normalization
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -187,7 +186,6 @@ class NormalizationWindow(qt.QMainWindow):
class
NormalizationOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/utils/converter.py
View file @
d3403620
...
...
@@ -33,10 +33,9 @@ from est.core.types import XASObject
from
orangecontrib.est.utils
import
Converter
import
Orange.data
from
Orange.widgets.widget
import
OWWidget
from
ewokscore.registration
import
Registered
class
ConverterOW
(
OWWidget
,
Registered
):
class
ConverterOW
(
OWWidget
):
"""
Offer a conversion from XASObject to Orange.data.Table, commonly used
from Orange widget
...
...
orangecontrib/est/widgets/utils/e0calculator.py
View file @
d3403620
...
...
@@ -40,14 +40,12 @@ import est.core.process.ignoreprocess
import
est.core.process.setconfig
from
est.core.types
import
XASObject
from
est.gui.e0calculator
import
E0Calculator
,
E0ComputationMethod
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
class
E0calculatorOW
(
OWWidget
,
Registered
,
):
"""
Widget used to make compute E0 from the dataset.
...
...
orangecontrib/est/widgets/utils/energyroi.py
View file @
d3403620
...
...
@@ -39,14 +39,12 @@ from silx.gui import qt
import
est.core.process.energyroi
from
est.core.types
import
XASObject
from
est.gui.energyroi
import
EnergyRoiWidget
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
class
EnergyRoiOW
(
OWWidget
,
Registered
,
):
"""
Widget used to make the selection of a region of Interest to treat in a
...
...
orangecontrib/est/widgets/utils/noise.py
View file @
d3403620
...
...
@@ -43,7 +43,6 @@ from silx.gui import qt
import
est.core.process.noise
from
est.core.types
import
XASObject
from
est.gui.noise
import
SavitskyGolayNoise
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -51,7 +50,6 @@ _logger = logging.getLogger(__file__)
class
NoiseOW
(
_ProcessForOrangeMixIn
,
OWWidget
,
Registered
,
):
"""
Widget used to make the selection of a region of Interest to treat in a
...
...
orangecontrib/est/widgets/utils/roi.py
View file @
d3403620
...
...
@@ -36,7 +36,6 @@ from Orange.widgets.widget import Input, Output
import
Orange.data
from
orangecontrib.est.utils
import
Converter
from
silx.gui
import
qt
from
ewokscore.registration
import
Registered
import
est.core.process.roi
from
est.core.types
import
XASObject
from
est.gui.roiselector
import
ROISelector
...
...
@@ -46,7 +45,6 @@ _logger = logging.getLogger(__file__)
class
RoiSelectionOW
(
OWWidget
,
Registered
,
):
"""
Widget used to make the selection of a region of Interest to treat in a
...
...
orangecontrib/est/widgets/utils/xas_input.py
View file @
d3403620
...
...
@@ -40,7 +40,6 @@ import est.core.process.ignoreprocess
import
est.core.process.io
from
est.gui.xas_object_definition
import
XASObjectWindow
from
est.core.types
import
XASObject
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
...
...
@@ -50,7 +49,6 @@ _DEBUG = False
class
XASInputOW
(
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
orangecontrib/est/widgets/utils/xas_output.py
View file @
d3403620
...
...
@@ -37,14 +37,12 @@ from est.core.types import XASObject
import
est.core.process.io
import
logging
import
h5py
from
ewokscore.registration
import
Registered
_logger
=
logging
.
getLogger
(
__file__
)
class
XASOutputOW
(
OWWidget
,
Registered
,
):
"""
Widget used for signal extraction
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment