6 """ |
6 """ |
7 Module implementing a dialog showing a pixmap. |
7 Module implementing a dialog showing a pixmap. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import QEvent, QMarginsF, QSize, Qt |
10 from PyQt6.QtCore import QEvent, QMarginsF, QSize, Qt |
11 from PyQt6.QtGui import ( |
11 from PyQt6.QtGui import QAction, QColor, QFont, QPageLayout, QPainter, QPalette, QPixmap |
12 QAction, |
|
13 QColor, |
|
14 QFont, |
|
15 QPageLayout, |
|
16 QPainter, |
|
17 QPalette, |
|
18 QPixmap, |
|
19 ) |
|
20 from PyQt6.QtPrintSupport import QPrintDialog, QPrinter, QPrintPreviewDialog |
12 from PyQt6.QtPrintSupport import QPrintDialog, QPrinter, QPrintPreviewDialog |
21 from PyQt6.QtWidgets import QLabel, QMenu, QScrollArea, QSizePolicy, QToolBar |
13 from PyQt6.QtWidgets import QLabel, QMenu, QScrollArea, QSizePolicy, QToolBar |
22 |
14 |
23 from eric7 import Preferences |
15 from eric7 import Preferences |
24 from eric7.EricGui import EricPixmapCache |
16 from eric7.EricGui import EricPixmapCache |