summaryrefslogtreecommitdiff
path: root/silx/gui/plot/ProfileMainWindow.py
blob: ce56cfd8ed12dde380562b2859e358577acb294c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# coding: utf-8
# /*##########################################################################
#
# Copyright (c) 2017-2020 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# ###########################################################################*/
"""This module contains a QMainWindow class used to display profile plots.
"""

__authors__ = ["P. Knobel"]
__license__ = "MIT"
__date__ = "21/02/2017"

import silx.utils.deprecation
from silx.gui import qt
from .tools.profile.manager import ProfileWindow

silx.utils.deprecation.deprecated_warning("Module",
                                          name="silx.gui.plot.ProfileMainWindow",
                                          reason="moved",
                                          replacement="silx.gui.plot.tools.profile.manager.ProfileWindow",
                                          since_version="0.13.0",
                                          only_once=True,
                                          skip_backtrace_count=1)

class ProfileMainWindow(ProfileWindow):
    """QMainWindow providing 2 plot widgets specialized in
    1D and 2D plotting, with different toolbars.

    Only one of the plots is visible at any given time.

    :param qt.QWidget parent: The parent of this widget or None (default).
    :param Union[str,Class] backend: The backend to use, in:
                    'matplotlib' (default), 'mpl', 'opengl', 'gl', 'none'
                    or a :class:`BackendBase.BackendBase` class
    """

    sigProfileDimensionsChanged = qt.Signal(int)
    """This signal is emitted when :meth:`setProfileDimensions` is called.
    It carries the number of dimensions for the profile data (1 or 2).
    It can be used to be notified that the profile plot widget has changed.

    Note: This signal should be removed.
    """

    sigProfileMethodChanged = qt.Signal(str)
    """Emitted when the method to compute the profile changed (for now can be
    sum or mean)

    Note: This signal should be removed.
    """

    def __init__(self, parent=None, backend=None):
        ProfileWindow.__init__(self, parent=parent, backend=backend)
        # by default, profile is assumed to be a 1D curve
        self._profileType = None

    def setProfileType(self, profileType):
        """Set which profile plot widget (1D or 2D) is to be used

        Note: This method should be removed.

        :param str profileType: Type of profile data,
            "1D" for a curve or "2D" for an image
        """
        self._profileType = profileType
        if self._profileType == "1D":
            self._showPlot1D()
        elif self._profileType == "2D":
            self._showPlot2D()
        else:
            raise ValueError("Profile type must be '1D' or '2D'")
        self.sigProfileDimensionsChanged.emit(profileType)

    def getPlot(self):
        """Return the profile plot widget which is currently in use.
        This can be the 2D profile plot or the 1D profile plot.

        Note: This method should be removed.
        """
        return self.getCurrentPlotWidget()

    def setProfileMethod(self, method):
        """
        Note: This method should be removed.

        :param str method: method to manage the 'width' in the profile
            (computing mean or sum).
        """
        assert method in ('sum', 'mean')
        self._method = method
        self.sigProfileMethodChanged.emit(self._method)