[d3ca363] | 1 | """ |
---|
| 2 | Allows users to change the range of the current graph |
---|
| 3 | """ |
---|
[4992ff2] | 4 | from PyQt5 import QtCore |
---|
| 5 | from PyQt5 import QtGui |
---|
| 6 | from PyQt5 import QtWidgets |
---|
[d3ca363] | 7 | |
---|
[d6b8a1d] | 8 | import sas.qtgui.Utilities.GuiUtils as GuiUtils |
---|
| 9 | |
---|
[d3ca363] | 10 | # Local UI |
---|
[cd2cc745] | 11 | from sas.qtgui.UI import main_resources_rc |
---|
[83eb5208] | 12 | from sas.qtgui.Plotting.UI.SetGraphRangeUI import Ui_setGraphRangeUI |
---|
[d3ca363] | 13 | |
---|
[4992ff2] | 14 | class SetGraphRange(QtWidgets.QDialog, Ui_setGraphRangeUI): |
---|
[d3ca363] | 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 | |
---|
[d6b8a1d] | 22 | self.txtXmin.setValidator(GuiUtils.DoubleValidator()) |
---|
| 23 | self.txtXmax.setValidator(GuiUtils.DoubleValidator()) |
---|
| 24 | self.txtYmin.setValidator(GuiUtils.DoubleValidator()) |
---|
| 25 | self.txtYmax.setValidator(GuiUtils.DoubleValidator()) |
---|
[d3ca363] | 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())) |
---|