5 |
5 |
6 """ |
6 """ |
7 Module implementing the printer functionality. |
7 Module implementing the printer functionality. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import QTime, QDate, Qt, QCoreApplication, QMarginsF |
10 from PyQt6.Qsci import QsciPrinter |
|
11 from PyQt6.QtCore import QCoreApplication, QDate, QMarginsF, Qt, QTime |
11 from PyQt6.QtGui import QColor, QPageLayout |
12 from PyQt6.QtGui import QColor, QPageLayout |
12 from PyQt6.QtPrintSupport import QPrinter |
13 from PyQt6.QtPrintSupport import QPrinter |
13 from PyQt6.Qsci import QsciPrinter |
|
14 |
14 |
15 from eric7 import Preferences |
15 from eric7 import Preferences |
16 |
16 |
17 |
17 |
18 class Printer(QsciPrinter): |
18 class Printer(QsciPrinter): |