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 @param name name of this dialog (string) |
25 @param name name of this dialog (string) |
26 @param modal modal dialog state (boolean) |
26 @param modal modal dialog state (boolean) |
27 """ |
27 """ |
28 super(ZoomDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 if name: |
29 if name: |
30 self.setObjectName(name) |
30 self.setObjectName(name) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 self.setModal(modal) |
32 self.setModal(modal) |
33 |
33 |