(self)
| 142 | self.group_save_results.setLayout(grid) |
| 143 | |
| 144 | def _setup_quantitative_analysis(self): |
| 145 | self.group_quant_analysis = QGroupBox("Quantitative Analysis") |
| 146 | |
| 147 | self.pb_load_quant_calib = QPushButton("Load Quantitative Calibration ...") |
| 148 | self.pb_load_quant_calib.clicked.connect(self.pb_load_quant_calib_clicked) |
| 149 | |
| 150 | vbox = QVBoxLayout() |
| 151 | vbox.addWidget(self.pb_load_quant_calib) |
| 152 | self.group_quant_analysis.setLayout(vbox) |
| 153 | |
| 154 | def _set_tooltips(self): |
| 155 | set_tooltip( |