8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 import os |
11 import os |
12 |
12 |
13 from PyQt5.QtCore import pyqtSignal, pyqtSlot, QFile, QFileInfo, QSize, \ |
13 from PyQt5.QtCore import ( |
14 QCoreApplication, QLocale |
14 pyqtSignal, pyqtSlot, QFile, QFileInfo, QSize, QCoreApplication, QLocale |
|
15 ) |
15 from PyQt5.QtGui import QKeySequence |
16 from PyQt5.QtGui import QKeySequence |
16 from PyQt5.QtWidgets import QWhatsThis, QLabel, QWidget, QVBoxLayout, \ |
17 from PyQt5.QtWidgets import ( |
17 QDialog, QAction, QFrame, QMenu |
18 QWhatsThis, QLabel, QWidget, QVBoxLayout, QDialog, QAction, QFrame, QMenu |
|
19 ) |
18 |
20 |
19 from E5Gui.E5Action import E5Action |
21 from E5Gui.E5Action import E5Action |
20 from E5Gui.E5MainWindow import E5MainWindow |
22 from E5Gui.E5MainWindow import E5MainWindow |
21 from E5Gui import E5FileDialog, E5MessageBox |
23 from E5Gui import E5FileDialog, E5MessageBox |
22 from E5Gui.E5ClickableLabel import E5ClickableLabel |
24 from E5Gui.E5ClickableLabel import E5ClickableLabel |