9 |
9 |
10 from PyQt4.QtGui import QDialog |
10 from PyQt4.QtGui import QDialog |
11 |
11 |
12 from .Ui_E5NetworkHeaderDetailsDialog import Ui_E5NetworkHeaderDetailsDialog |
12 from .Ui_E5NetworkHeaderDetailsDialog import Ui_E5NetworkHeaderDetailsDialog |
13 |
13 |
|
14 |
14 class E5NetworkHeaderDetailsDialog(QDialog, Ui_E5NetworkHeaderDetailsDialog): |
15 class E5NetworkHeaderDetailsDialog(QDialog, Ui_E5NetworkHeaderDetailsDialog): |
15 """ |
16 """ |
16 Class implementing a dialog to show the data of a response or reply header. |
17 Class implementing a dialog to show the data of a response or reply header. |
17 """ |
18 """ |
18 def __init__(self, parent = None): |
19 def __init__(self, parent=None): |
19 """ |
20 """ |
20 Constructor |
21 Constructor |
21 |
22 |
22 @param parent reference to the parent object (QWidget) |
23 @param parent reference to the parent object (QWidget) |
23 """ |
24 """ |