14 |
14 |
15 |
15 |
16 class SslLabel(QLabel): |
16 class SslLabel(QLabel): |
17 """ |
17 """ |
18 Class implementing the label to show some SSL info. |
18 Class implementing the label to show some SSL info. |
|
19 |
|
20 @signal clicked(pos) emitted to indicate a click of the label (QPoint) |
19 """ |
21 """ |
20 clicked = pyqtSignal(QPoint) |
22 clicked = pyqtSignal(QPoint) |
21 |
23 |
22 okStyle = "QLabel { color : white; background-color : green; }" |
24 okStyle = "QLabel { color : white; background-color : green; }" |
23 nokStyle = "QLabel { color : white; background-color : red; }" |
25 nokStyle = "QLabel { color : white; background-color : red; }" |