12 # SnapWidget and its associated modules are PyQt5 ports of Ksnapshot. |
12 # SnapWidget and its associated modules are PyQt5 ports of Ksnapshot. |
13 # |
13 # |
14 |
14 |
15 import os |
15 import os |
16 |
16 |
17 from PyQt5.QtCore import pyqtSlot, QFile, QFileInfo, QTimer, QPoint, \ |
17 from PyQt5.QtCore import ( |
18 QMimeData, Qt, QRegExp, QLocale, QStandardPaths |
18 pyqtSlot, QFile, QFileInfo, QTimer, QPoint, QMimeData, Qt, QRegExp, |
|
19 QLocale, QStandardPaths |
|
20 ) |
19 from PyQt5.QtGui import QImageWriter, QPixmap, QDrag, QKeySequence |
21 from PyQt5.QtGui import QImageWriter, QPixmap, QDrag, QKeySequence |
20 from PyQt5.QtWidgets import QWidget, QApplication, QShortcut |
22 from PyQt5.QtWidgets import QWidget, QApplication, QShortcut |
21 |
23 |
22 from E5Gui import E5FileDialog, E5MessageBox |
24 from E5Gui import E5FileDialog, E5MessageBox |
23 |
25 |