8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 import os |
11 import os |
12 |
12 |
13 from PyQt5.QtCore import QDir, QTimer, QFileInfo, pyqtSignal, QEvent, QSize, \ |
13 from PyQt5.QtCore import ( |
14 QTranslator, QObject, Qt, QCoreApplication |
14 QDir, QTimer, QFileInfo, pyqtSignal, QEvent, QSize, QTranslator, QObject, |
|
15 Qt, QCoreApplication |
|
16 ) |
15 from PyQt5.QtGui import QKeySequence |
17 from PyQt5.QtGui import QKeySequence |
16 from PyQt5.QtWidgets import QSizePolicy, QSpacerItem, QWidget, QHBoxLayout, \ |
18 from PyQt5.QtWidgets import ( |
17 QWhatsThis, QMdiArea, qApp, QApplication, QComboBox, QVBoxLayout, \ |
19 QSizePolicy, QSpacerItem, QWidget, QHBoxLayout, QWhatsThis, QMdiArea, |
18 QAction, QLabel |
20 qApp, QApplication, QComboBox, QVBoxLayout, QAction, QLabel |
|
21 ) |
19 from PyQt5 import uic |
22 from PyQt5 import uic |
20 |
23 |
21 |
24 |
22 from E5Gui import E5MessageBox, E5FileDialog |
25 from E5Gui import E5MessageBox, E5FileDialog |
23 from E5Gui.E5MainWindow import E5MainWindow |
26 from E5Gui.E5MainWindow import E5MainWindow |