src/eric7/WebBrowser/SpeedDial/SpeedDial.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
8 """ 8 """
9 9
10 import os 10 import os
11 11
12 from PyQt6.QtCore import ( 12 from PyQt6.QtCore import (
13 QByteArray,
14 QCryptographicHash,
15 QObject,
16 QUrl,
13 pyqtSignal, 17 pyqtSignal,
14 pyqtSlot, 18 pyqtSlot,
15 QObject,
16 QCryptographicHash,
17 QByteArray,
18 QUrl,
19 qWarning, 19 qWarning,
20 ) 20 )
21 21
22 from eric7 import Utilities
22 from eric7.EricWidgets import EricMessageBox 23 from eric7.EricWidgets import EricMessageBox
24 from eric7.Utilities.AutoSaver import AutoSaver
23 25
24 from ..Tools.WebBrowserTools import pixmapFileToDataUrl 26 from ..Tools.WebBrowserTools import pixmapFileToDataUrl
25
26 from eric7.Utilities.AutoSaver import AutoSaver
27 from eric7 import Utilities
28 27
29 28
30 class SpeedDial(QObject): 29 class SpeedDial(QObject):
31 """ 30 """
32 Class implementing the speed dial. 31 Class implementing the speed dial.

eric ide

mercurial