25 @param message message to be shown (string) |
27 @param message message to be shown (string) |
26 @param okLabel label for the OK button (string) |
28 @param okLabel label for the OK button (string) |
27 @param cancelLabel label for the Cancel button (string) |
29 @param cancelLabel label for the Cancel button (string) |
28 @param files list of filenames to be shown (list of strings) |
30 @param files list of filenames to be shown (list of strings) |
29 """ |
31 """ |
30 super().__init__(parent) |
32 super(DeleteFilesConfirmationDialog, self).__init__(parent) |
31 self.setupUi(self) |
33 self.setupUi(self) |
32 self.setModal(True) |
34 self.setModal(True) |
33 |
35 |
34 self.buttonBox.button(QDialogButtonBox.Yes).setAutoDefault(False) |
36 self.buttonBox.button(QDialogButtonBox.Yes).setAutoDefault(False) |
35 self.buttonBox.button(QDialogButtonBox.No).setDefault(True) |
37 self.buttonBox.button(QDialogButtonBox.No).setDefault(True) |