5 |
5 |
6 """ |
6 """ |
7 Module implementing a button alternating between reload and stop. |
7 Module implementing a button alternating between reload and stop. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, pyqtSignal, Qt |
10 from PyQt6.QtCore import Qt, pyqtSignal, pyqtSlot |
11 |
|
12 from eric7.EricWidgets.EricToolButton import EricToolButton |
|
13 |
11 |
14 from eric7.EricGui import EricPixmapCache |
12 from eric7.EricGui import EricPixmapCache |
|
13 from eric7.EricWidgets.EricToolButton import EricToolButton |
15 |
14 |
16 |
15 |
17 class ReloadStopButton(EricToolButton): |
16 class ReloadStopButton(EricToolButton): |
18 """ |
17 """ |
19 Class implementing a button alternating between reload and stop. |
18 Class implementing a button alternating between reload and stop. |