21 Constructor |
21 Constructor |
22 |
22 |
23 @param zoom zoom factor to show in the spinbox |
23 @param zoom zoom factor to show in the spinbox |
24 @param parent parent widget of this dialog (QWidget) |
24 @param parent parent widget of this dialog (QWidget) |
25 """ |
25 """ |
26 QDialog.__init__(self, parent) |
26 super().__init__(parent) |
27 self.setupUi(self) |
27 self.setupUi(self) |
28 |
28 |
29 self.zoomSpinBox.setValue(zoom * 100) |
29 self.zoomSpinBox.setValue(zoom * 100) |
30 self.zoomSpinBox.selectAll() |
30 self.zoomSpinBox.selectAll() |
31 |
31 |