7 Module implementing a dialog showing a pixmap. |
7 Module implementing a dialog showing a pixmap. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt5.QtCore import Qt, QSize, QEvent |
12 from PyQt5.QtCore import Qt, QSize, QEvent, qVersion |
13 from PyQt5.QtGui import QPalette, QImage, QPixmap, QPainter, QFont, QColor |
13 from PyQt5.QtGui import QPalette, QImage, QPixmap, QPainter, QFont, QColor |
14 from PyQt5.QtWidgets import QLabel, QSizePolicy, QScrollArea, QAction, QMenu, \ |
14 from PyQt5.QtWidgets import QLabel, QSizePolicy, QScrollArea, QAction, QMenu, \ |
15 QToolBar |
15 QToolBar |
16 from PyQt5.QtPrintSupport import QPrinter, QPrintDialog |
16 from PyQt5.QtPrintSupport import QPrinter, QPrintDialog |
17 |
17 |