16 |
16 |
17 from .Ui_CookiesExceptionsDialog import Ui_CookiesExceptionsDialog |
17 from .Ui_CookiesExceptionsDialog import Ui_CookiesExceptionsDialog |
18 |
18 |
19 import UI.PixmapCache |
19 import UI.PixmapCache |
20 |
20 |
|
21 |
21 class CookiesExceptionsDialog(QDialog, Ui_CookiesExceptionsDialog): |
22 class CookiesExceptionsDialog(QDialog, Ui_CookiesExceptionsDialog): |
22 """ |
23 """ |
23 Class implementing a dialog for the configuration of cookie exceptions. |
24 Class implementing a dialog for the configuration of cookie exceptions. |
24 """ |
25 """ |
25 def __init__(self, cookieJar, parent = None): |
26 def __init__(self, cookieJar, parent=None): |
26 """ |
27 """ |
27 Constructor |
28 Constructor |
28 |
29 |
29 @param cookieJar reference to the cookie jar (CookieJar) |
30 @param cookieJar reference to the cookie jar (CookieJar) |
30 @param parent reference to the parent widget (QWidget) |
31 @param parent reference to the parent widget (QWidget) |