18 |
18 |
19 from Utilities.AutoSaver import AutoSaver |
19 from Utilities.AutoSaver import AutoSaver |
20 import Utilities |
20 import Utilities |
21 import Preferences |
21 import Preferences |
22 |
22 |
|
23 |
23 class AdBlockManager(QObject): |
24 class AdBlockManager(QObject): |
24 """ |
25 """ |
25 Class implementing the AdBlock manager. |
26 Class implementing the AdBlock manager. |
26 |
27 |
27 @signal rulesChanged() emitted after some rule has changed |
28 @signal rulesChanged() emitted after some rule has changed |
28 """ |
29 """ |
29 rulesChanged = pyqtSignal() |
30 rulesChanged = pyqtSignal() |
30 |
31 |
31 def __init__(self, parent = None): |
32 def __init__(self, parent=None): |
32 """ |
33 """ |
33 Constructor |
34 Constructor |
34 |
35 |
35 @param parent reference to the parent object (QObject) |
36 @param parent reference to the parent object (QObject) |
36 """ |
37 """ |