1 | """ |
---|
2 | Allows users to change the range of the current graph |
---|
3 | """ |
---|
4 | from PyQt5 import QtCore |
---|
5 | from PyQt5 import QtGui |
---|
6 | from PyQt5 import QtWidgets |
---|
7 | |
---|
8 | import sas.qtgui.Utilities.GuiUtils as GuiUtils |
---|
9 | |
---|
10 | # Local UI |
---|
11 | from sas.qtgui.UI import main_resources_rc |
---|
12 | from sas.qtgui.Plotting.UI.SetGraphRangeUI import Ui_setGraphRangeUI |
---|
13 | |
---|
14 | class SetGraphRange(QtWidgets.QDialog, Ui_setGraphRangeUI): |
---|
15 | def __init__(self, parent=None, x_range=(0.0, 0.0), y_range=(0.0, 0.0)): |
---|
16 | super(SetGraphRange, self).__init__() |
---|
17 | |
---|
18 | self.setupUi(self) |
---|
19 | assert(isinstance(x_range, tuple)) |
---|
20 | assert(isinstance(y_range, tuple)) |
---|
21 | |
---|
22 | self.txtXmin.setValidator(GuiUtils.DoubleValidator()) |
---|
23 | self.txtXmax.setValidator(GuiUtils.DoubleValidator()) |
---|
24 | self.txtYmin.setValidator(GuiUtils.DoubleValidator()) |
---|
25 | self.txtYmax.setValidator(GuiUtils.DoubleValidator()) |
---|
26 | |
---|
27 | self.txtXmin.setText(str(x_range[0])) |
---|
28 | self.txtXmax.setText(str(x_range[1])) |
---|
29 | self.txtYmin.setText(str(y_range[0])) |
---|
30 | self.txtYmax.setText(str(y_range[1])) |
---|
31 | |
---|
32 | def xrange(self): |
---|
33 | """ |
---|
34 | Return a tuple with line edit content of (xmin, xmax) |
---|
35 | """ |
---|
36 | return (float(self.txtXmin.text()), |
---|
37 | float(self.txtXmax.text())) |
---|
38 | |
---|
39 | def yrange(self): |
---|
40 | """ |
---|
41 | Return a tuple with line edit content of (ymin, ymax) |
---|
42 | """ |
---|
43 | return (float(self.txtYmin.text()), |
---|
44 | float(self.txtYmax.text())) |
---|