17 from PyQt6.QtWidgets import ( |
17 from PyQt6.QtWidgets import ( |
18 QWidget, QHBoxLayout, QSplitter, QTabBar, QApplication, QToolButton, |
18 QWidget, QHBoxLayout, QSplitter, QTabBar, QApplication, QToolButton, |
19 QMenu, QLabel |
19 QMenu, QLabel |
20 ) |
20 ) |
21 |
21 |
22 from E5Gui.EricApplication import ericApp |
22 from EricWidgets.EricApplication import ericApp |
23 |
23 |
24 from ViewManager.ViewManager import ViewManager |
24 from ViewManager.ViewManager import ViewManager |
25 |
25 |
26 import QScintilla.Editor |
26 import QScintilla.Editor |
27 from QScintilla.Editor import Editor |
27 from QScintilla.Editor import Editor |
28 from QScintilla.EditorAssembly import EditorAssembly |
28 from QScintilla.EditorAssembly import EditorAssembly |
29 |
29 |
30 import UI.PixmapCache |
30 import UI.PixmapCache |
31 |
31 |
32 from E5Gui.EricTabWidget import EricTabWidget, EricWheelTabBar |
32 from EricWidgets.EricTabWidget import EricTabWidget, EricWheelTabBar |
33 from E5Gui.EricLed import EricLed |
33 from EricWidgets.EricLed import EricLed |
34 |
34 |
35 import Preferences |
35 import Preferences |
36 from Globals import isMacPlatform |
36 from Globals import isMacPlatform |
37 |
37 |
38 from eric7config import getConfig |
38 from eric7config import getConfig |