astrodatagui: add count all flares dummy button

This commit is contained in:
2024-05-13 15:08:09 +02:00
parent dbdda26399
commit 00f37d80e8
2 changed files with 13 additions and 1 deletions
+6 -1
View File
@@ -53,6 +53,8 @@ class AstrodataGUI(QtWidgets.QMainWindow):
self.cbPlotShowQuality.stateChanged.connect(self.plotOptionsShowQuality)
self.btCountAllFlares.clicked.connect(self.btCountAllFlaresClicked)
self.setupCustomSimbadQueries()
self.show()
self.loadDB()
@@ -339,4 +341,7 @@ class AstrodataGUI(QtWidgets.QMainWindow):
periodogramEnabled = self.cbPlotPeriodogramEnable.isChecked()
method = self.comboPlotPeriodogramMethod.currentText()
view = self.comboPlotPeriodogramView.currentText()
self.flaredetectorPreview.setPeriodogramState(periodogramEnabled, method, view)
self.flaredetectorPreview.setPeriodogramState(periodogramEnabled, method, view)
def btCountAllFlaresClicked(self):
pass
+7
View File
@@ -120,6 +120,13 @@
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="btCountAllFlares">
<property name="text">
<string>Count All Flares</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>