From 08c9ad0014b8a82aae0da35e815f971e2d8215dd Mon Sep 17 00:00:00 2001 From: SGCMarkus Date: Mon, 4 Mar 2024 16:09:03 +0100 Subject: [PATCH] astrodatagui: NewStarDialog: implement dummy button clicked functions --- astrodatagui/ui/NewStarDialog.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/astrodatagui/ui/NewStarDialog.py b/astrodatagui/ui/NewStarDialog.py index d831a42..078f0d0 100644 --- a/astrodatagui/ui/NewStarDialog.py +++ b/astrodatagui/ui/NewStarDialog.py @@ -7,4 +7,17 @@ class NewStarDialog(QDialog): super().__init__() classFileDir = os.path.dirname(os.path.abspath(__file__)) absUiFilePath = os.path.join(classFileDir, "NewStarDialog.ui") - uic.loadUi(absUiFilePath, self) \ No newline at end of file + uic.loadUi(absUiFilePath, self) + + self.btFetchData.clicked.connect(self.btFetchData_clicked) + self.btOk.clicked.connect(self.btOk_clicked) + self.btCancel.clicked.connect(self.btCancel_clicked) + + def btFetchData_clicked(self): + return + + def btOk_clicked(self): + return + + def btCancel_clicked(self): + return \ No newline at end of file