7 Module implementing a dialog to select the zoom factor. |
7 Module implementing a dialog to select the zoom factor. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtGui import QDialog |
10 from PyQt4.QtGui import QDialog |
11 |
11 |
12 from Ui_IconZoomDialog import Ui_IconZoomDialog |
12 from .Ui_IconZoomDialog import Ui_IconZoomDialog |
13 |
13 |
14 class IconZoomDialog(QDialog, Ui_IconZoomDialog): |
14 class IconZoomDialog(QDialog, Ui_IconZoomDialog): |
15 """ |
15 """ |
16 Class implementing a dialog to select the zoom factor. |
16 Class implementing a dialog to select the zoom factor. |
17 """ |
17 """ |