5 |
5 |
6 """ |
6 """ |
7 Module implementing a tool button for the download manager. |
7 Module implementing a tool button for the download manager. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt |
10 from PyQt6.QtCore import Qt, pyqtSlot |
11 |
|
12 from eric7.EricWidgets.EricToolButton import EricToolButton |
|
13 |
11 |
14 from eric7.EricGui import EricPixmapCache |
12 from eric7.EricGui import EricPixmapCache |
15 |
13 from eric7.EricWidgets.EricToolButton import EricToolButton |
16 from eric7.WebBrowser.WebBrowserWindow import WebBrowserWindow |
14 from eric7.WebBrowser.WebBrowserWindow import WebBrowserWindow |
17 |
15 |
18 |
16 |
19 class DownloadManagerButton(EricToolButton): |
17 class DownloadManagerButton(EricToolButton): |
20 """ |
18 """ |