rapidtide 3.0a7__py3-none-any.whl → 3.0a9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rapidtide/OrthoImageItem.py +24 -5
- rapidtide/RapidtideDataset.py +43 -4
- rapidtide/data/examples/src/testfmri +4 -15
- rapidtide/happy_supportfuncs.py +21 -0
- rapidtide/helper_classes.py +10 -1
- rapidtide/io.py +1 -1
- rapidtide/simfuncfit.py +1 -1
- rapidtide/tidepoolTemplate.py +84 -167
- rapidtide/tidepoolTemplate.ui +64 -44
- rapidtide/tidepoolTemplate_alt.py +90 -172
- rapidtide/tidepoolTemplate_alt.ui +63 -44
- rapidtide/tidepoolTemplate_alt2.ui +1965 -0
- rapidtide/tidepoolTemplate_alt_qt6.py +17 -3
- rapidtide/tidepoolTemplate_big.py +992 -0
- rapidtide/tidepoolTemplate_big.ui +2395 -0
- rapidtide/tidepoolTemplate_big_qt6.py +990 -0
- rapidtide/tidepoolTemplate_qt6.py +19 -9
- rapidtide/workflows/rapidtide.py +8 -5
- rapidtide/workflows/tidepool.py +548 -466
- {rapidtide-3.0a7.dist-info → rapidtide-3.0a9.dist-info}/METADATA +1 -1
- {rapidtide-3.0a7.dist-info → rapidtide-3.0a9.dist-info}/RECORD +25 -21
- {rapidtide-3.0a7.dist-info → rapidtide-3.0a9.dist-info}/WHEEL +1 -1
- {rapidtide-3.0a7.dist-info → rapidtide-3.0a9.dist-info}/LICENSE +0 -0
- {rapidtide-3.0a7.dist-info → rapidtide-3.0a9.dist-info}/entry_points.txt +0 -0
- {rapidtide-3.0a7.dist-info → rapidtide-3.0a9.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Form implementation generated from reading ui file 'tidepoolTemplate_alt.ui'
|
|
2
2
|
#
|
|
3
|
-
# Created by: PyQt6 UI code generator 6.
|
|
3
|
+
# Created by: PyQt6 UI code generator 6.8.1
|
|
4
4
|
#
|
|
5
5
|
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
|
|
6
6
|
# run again. Do not edit this file unless you know what you are doing.
|
|
@@ -64,6 +64,9 @@ class Ui_MainWindow(object):
|
|
|
64
64
|
self.setMask_Button = QtWidgets.QPushButton(parent=self.imageData_groupBox)
|
|
65
65
|
self.setMask_Button.setObjectName("setMask_Button")
|
|
66
66
|
self.verticalLayout_3.addWidget(self.setMask_Button)
|
|
67
|
+
self.nextFile_Button = QtWidgets.QPushButton(parent=self.imageData_groupBox)
|
|
68
|
+
self.nextFile_Button.setObjectName("nextFile_Button")
|
|
69
|
+
self.verticalLayout_3.addWidget(self.nextFile_Button)
|
|
67
70
|
self.dispmin_doubleSpinBox = QtWidgets.QDoubleSpinBox(parent=self.imageData_groupBox)
|
|
68
71
|
self.dispmin_doubleSpinBox.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight|QtCore.Qt.AlignmentFlag.AlignTrailing|QtCore.Qt.AlignmentFlag.AlignVCenter)
|
|
69
72
|
self.dispmin_doubleSpinBox.setDecimals(3)
|
|
@@ -267,6 +270,7 @@ class Ui_MainWindow(object):
|
|
|
267
270
|
self.overlay_radioButton_05 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
268
271
|
self.overlay_radioButton_05.setGeometry(QtCore.QRect(10, 351, 151, 20))
|
|
269
272
|
font = QtGui.QFont()
|
|
273
|
+
font.setFamily(".AppleSystemUIFont")
|
|
270
274
|
font.setPointSize(10)
|
|
271
275
|
self.overlay_radioButton_05.setFont(font)
|
|
272
276
|
self.overlay_radioButton_05.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -286,6 +290,7 @@ class Ui_MainWindow(object):
|
|
|
286
290
|
self.overlay_radioButton_01 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
287
291
|
self.overlay_radioButton_01.setGeometry(QtCore.QRect(10, 71, 151, 20))
|
|
288
292
|
font = QtGui.QFont()
|
|
293
|
+
font.setFamily(".AppleSystemUIFont")
|
|
289
294
|
font.setPointSize(10)
|
|
290
295
|
self.overlay_radioButton_01.setFont(font)
|
|
291
296
|
self.overlay_radioButton_01.setAutoFillBackground(False)
|
|
@@ -294,6 +299,7 @@ class Ui_MainWindow(object):
|
|
|
294
299
|
self.overlay_radioButton_02 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
295
300
|
self.overlay_radioButton_02.setGeometry(QtCore.QRect(10, 141, 151, 20))
|
|
296
301
|
font = QtGui.QFont()
|
|
302
|
+
font.setFamily(".AppleSystemUIFont")
|
|
297
303
|
font.setPointSize(10)
|
|
298
304
|
self.overlay_radioButton_02.setFont(font)
|
|
299
305
|
self.overlay_radioButton_02.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -301,6 +307,7 @@ class Ui_MainWindow(object):
|
|
|
301
307
|
self.overlay_radioButton_03 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
302
308
|
self.overlay_radioButton_03.setGeometry(QtCore.QRect(10, 211, 151, 20))
|
|
303
309
|
font = QtGui.QFont()
|
|
310
|
+
font.setFamily(".AppleSystemUIFont")
|
|
304
311
|
font.setPointSize(10)
|
|
305
312
|
self.overlay_radioButton_03.setFont(font)
|
|
306
313
|
self.overlay_radioButton_03.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -308,6 +315,7 @@ class Ui_MainWindow(object):
|
|
|
308
315
|
self.overlay_radioButton_04 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
309
316
|
self.overlay_radioButton_04.setGeometry(QtCore.QRect(10, 281, 151, 20))
|
|
310
317
|
font = QtGui.QFont()
|
|
318
|
+
font.setFamily(".AppleSystemUIFont")
|
|
311
319
|
font.setPointSize(10)
|
|
312
320
|
self.overlay_radioButton_04.setFont(font)
|
|
313
321
|
self.overlay_radioButton_04.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -323,6 +331,7 @@ class Ui_MainWindow(object):
|
|
|
323
331
|
self.overlay_radioButton_06 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
324
332
|
self.overlay_radioButton_06.setGeometry(QtCore.QRect(10, 421, 151, 20))
|
|
325
333
|
font = QtGui.QFont()
|
|
334
|
+
font.setFamily(".AppleSystemUIFont")
|
|
326
335
|
font.setPointSize(10)
|
|
327
336
|
self.overlay_radioButton_06.setFont(font)
|
|
328
337
|
self.overlay_radioButton_06.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -330,6 +339,7 @@ class Ui_MainWindow(object):
|
|
|
330
339
|
self.overlay_radioButton_07 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
331
340
|
self.overlay_radioButton_07.setGeometry(QtCore.QRect(10, 491, 151, 20))
|
|
332
341
|
font = QtGui.QFont()
|
|
342
|
+
font.setFamily(".AppleSystemUIFont")
|
|
333
343
|
font.setPointSize(10)
|
|
334
344
|
self.overlay_radioButton_07.setFont(font)
|
|
335
345
|
self.overlay_radioButton_07.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -337,6 +347,7 @@ class Ui_MainWindow(object):
|
|
|
337
347
|
self.overlay_radioButton_08 = QtWidgets.QRadioButton(parent=self.overlays_groupBox)
|
|
338
348
|
self.overlay_radioButton_08.setGeometry(QtCore.QRect(10, 561, 151, 20))
|
|
339
349
|
font = QtGui.QFont()
|
|
350
|
+
font.setFamily(".AppleSystemUIFont")
|
|
340
351
|
font.setPointSize(10)
|
|
341
352
|
self.overlay_radioButton_08.setFont(font)
|
|
342
353
|
self.overlay_radioButton_08.setStyleSheet("color: rgb(255, 255, 255);")
|
|
@@ -672,7 +683,8 @@ class Ui_MainWindow(object):
|
|
|
672
683
|
self.logOutput = QtWidgets.QTextEdit(parent=self.logOutput_groupBox)
|
|
673
684
|
self.logOutput.setGeometry(QtCore.QRect(10, 25, 361, 186))
|
|
674
685
|
font = QtGui.QFont()
|
|
675
|
-
font.setFamily("Courier")
|
|
686
|
+
font.setFamily("Courier New")
|
|
687
|
+
font.setPointSize(11)
|
|
676
688
|
self.logOutput.setFont(font)
|
|
677
689
|
self.logOutput.setObjectName("logOutput")
|
|
678
690
|
self.simfunc_groupBox = QtWidgets.QGroupBox(parent=self.centralwidget)
|
|
@@ -707,7 +719,7 @@ class Ui_MainWindow(object):
|
|
|
707
719
|
self.simfunc_groupBox.raise_()
|
|
708
720
|
MainWindow.setCentralWidget(self.centralwidget)
|
|
709
721
|
self.menubar = QtWidgets.QMenuBar(parent=MainWindow)
|
|
710
|
-
self.menubar.setGeometry(QtCore.QRect(0, 0, 1373,
|
|
722
|
+
self.menubar.setGeometry(QtCore.QRect(0, 0, 1373, 24))
|
|
711
723
|
self.menubar.setObjectName("menubar")
|
|
712
724
|
MainWindow.setMenuBar(self.menubar)
|
|
713
725
|
self.statusbar = QtWidgets.QStatusBar(parent=MainWindow)
|
|
@@ -731,6 +743,8 @@ class Ui_MainWindow(object):
|
|
|
731
743
|
self.saveDisp_Button.setText(_translate("MainWindow", "Save"))
|
|
732
744
|
self.setMask_Button.setToolTip(_translate("MainWindow", "Right click to select the mask used to display the current map"))
|
|
733
745
|
self.setMask_Button.setText(_translate("MainWindow", "No mask"))
|
|
746
|
+
self.nextFile_Button.setToolTip(_translate("MainWindow", "Right click to select the mask used to display the current map"))
|
|
747
|
+
self.nextFile_Button.setText(_translate("MainWindow", "Next file"))
|
|
734
748
|
self.transparency_checkBox.setToolTip(_translate("MainWindow", "With transparency on, map values outside the range limits are not displayed."))
|
|
735
749
|
self.transparency_checkBox.setText(_translate("MainWindow", "Transparency"))
|
|
736
750
|
self.label_2.setText(_translate("MainWindow", "Colormap"))
|