19 """ |
19 """ |
20 Constructor |
20 Constructor |
21 |
21 |
22 @param zoom zoom factor to show in the spinbox (float) |
22 @param zoom zoom factor to show in the spinbox (float) |
23 @param parent parent widget of this dialog (QWidget) |
23 @param parent parent widget of this dialog (QWidget) |
24 @param name name of this dialog (string or QString) |
24 @param name name of this dialog (string) |
25 """ |
25 """ |
26 QDialog.__init__(self, parent) |
26 QDialog.__init__(self, parent) |
27 if name: |
27 if name: |
28 self.setObjectName(name) |
28 self.setObjectName(name) |
29 else: |
29 else: |