19 |
19 |
20 @param width width to be set (integer) |
20 @param width width to be set (integer) |
21 @param height height to be set (integer) |
21 @param height height to be set (integer) |
22 @param parent reference to the parent widget (QWidget) |
22 @param parent reference to the parent widget (QWidget) |
23 """ |
23 """ |
24 QDialog.__init__(self, parent) |
24 super().__init__(parent) |
25 self.setupUi(self) |
25 self.setupUi(self) |
26 |
26 |
27 self.widthSpin.setValue(width) |
27 self.widthSpin.setValue(width) |
28 self.heightSpin.setValue(height) |
28 self.heightSpin.setValue(height) |
29 |
29 |