10 # This code is a port of the C++ code found in SciTE 1.74 |
10 # This code is a port of the C++ code found in SciTE 1.74 |
11 # Original code: Copyright 1998-2006 by Neil Hodgson <neilh@scintilla.org> |
11 # Original code: Copyright 1998-2006 by Neil Hodgson <neilh@scintilla.org> |
12 |
12 |
13 import time |
13 import time |
14 |
14 |
|
15 from PyQt6.Qsci import QsciScintilla |
15 from PyQt6.QtGui import QFontInfo |
16 from PyQt6.QtGui import QFontInfo |
16 from PyQt6.Qsci import QsciScintilla |
17 |
17 |
18 from eric7 import Preferences |
|
19 from eric7.EricGui.EricOverrideCursor import EricOverrideCursor |
18 from eric7.EricWidgets import EricMessageBox |
20 from eric7.EricWidgets import EricMessageBox |
19 from eric7.EricGui.EricOverrideCursor import EricOverrideCursor |
|
20 |
21 |
21 from .ExporterBase import ExporterBase |
22 from .ExporterBase import ExporterBase |
22 |
|
23 from eric7 import Preferences |
|
24 |
23 |
25 |
24 |
26 class ExporterRTF(ExporterBase): |
25 class ExporterRTF(ExporterBase): |
27 """ |
26 """ |
28 Class implementing an exporter for RTF. |
27 Class implementing an exporter for RTF. |