source: sasview/src/sas/qtgui/Calculators/KiessigPanel.py

ESS_GUI
Last change on this file was 33c0561, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 5 years ago

Replace Apply button menu driven functionality with additional button.
Removed Cancel.
Removed the window system context help button from all affected widgets.
SASVIEW-1239

  • Property mode set to 100644
File size: 2.4 KB
Line 
1from PyQt5 import QtCore
2from PyQt5 import QtGui
3from PyQt5 import QtWidgets
4
5from sas.qtgui.UI import main_resources_rc
6from .UI.KiessigPanel import Ui_KiessigPanel
7import sas.qtgui.Utilities.GuiUtils as GuiUtils
8
9# sas-global
10from sas.sascalc.calculator.kiessig_calculator import KiessigThicknessCalculator
11
12
13class KiessigPanel(QtWidgets.QDialog, Ui_KiessigPanel):
14    def __init__(self, parent=None):
15        super(KiessigPanel, self).__init__()
16        self.setupUi(self)
17        # disable the context help icon
18        self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint)
19
20        self.setWindowTitle("Kiessig Thickness Calculator")
21
22        self.manager = parent
23        self.thickness = KiessigThicknessCalculator()
24
25        rx = QtCore.QRegExp("[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?")
26        self.deltaq_in.setValidator(QtGui.QRegExpValidator(rx, self.deltaq_in))
27
28        # signals
29        self.helpButton.clicked.connect(self.onHelp)
30        self.computeButton.setVisible(False)
31        self.closeButton.clicked.connect(self.onClose)
32        self.deltaq_in.textChanged.connect(self.onCompute)
33        self.deltaq_in.setText("0.05")
34
35        # Set focus away from Close
36        self.computeButton.setFocus()
37
38        # no reason to have this widget resizable
39        self.setFixedSize(self.minimumSizeHint())
40
41    def onHelp(self):
42        """
43        Bring up the Kiessig fringe calculator Documentation whenever
44        the HELP button is clicked.
45        Calls DocumentationWindow with the path of the location within the
46        documentation tree (after /doc/ ....".
47        """
48        location = "/user/qtgui/Calculators/kiessig_calculator_help.html"
49        self.manager.showHelp(location)
50
51    def onCompute(self):
52        """
53        Execute the computation of thickness
54        """
55        try:
56            self.thickness.set_deltaq(dq=float(self.deltaq_in.text()))
57            kiessing_result = self.thickness.compute_thickness()
58            if kiessing_result:
59                float_as_str = "{:.3f}".format(kiessing_result)
60                self.lengthscale_out.setText(float_as_str)
61            else:
62                # error or division by zero
63                self.lengthscale_out.setText("")
64
65        except (ArithmeticError, ValueError):
66            self.lengthscale_out.setText("")
67
68    def onClose(self):
69        """
70        close the window containing this panel
71        """
72        self.close()
Note: See TracBrowser for help on using the repository browser.