29 @param button mouse button of the handler |
29 @param button mouse button of the handler |
30 @type Qt.MouseButton |
30 @type Qt.MouseButton |
31 @param parent reference to the parent widget |
31 @param parent reference to the parent widget |
32 @type QWidget |
32 @type QWidget |
33 """ |
33 """ |
34 super(MouseClickDialog, self).__init__(parent) |
34 super().__init__(parent) |
35 self.setupUi(self) |
35 self.setupUi(self) |
36 self.setModal(True) |
36 self.setModal(True) |
37 |
37 |
38 self.clickGroup.installEventFilter(self) |
38 self.clickGroup.installEventFilter(self) |
39 self.clearButton.installEventFilter(self) |
39 self.clearButton.installEventFilter(self) |