eric7/E5Network/E5NetworkHeaderDetailsDialog.py

branch
eric7
changeset 8312
800c432b34c8
parent 8218
7c09585bd960
child 8318
962bce857696
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/E5Network/E5NetworkHeaderDetailsDialog.py	Sat May 15 18:45:04 2021 +0200
@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2009 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to show the data of a response or reply header.
+"""
+
+from PyQt5.QtCore import Qt
+from PyQt5.QtWidgets import QDialog
+
+from .Ui_E5NetworkHeaderDetailsDialog import Ui_E5NetworkHeaderDetailsDialog
+
+
+class E5NetworkHeaderDetailsDialog(QDialog, Ui_E5NetworkHeaderDetailsDialog):
+    """
+    Class implementing a dialog to show the data of a response or reply header.
+    """
+    def __init__(self, parent=None):
+        """
+        Constructor
+        
+        @param parent reference to the parent object (QWidget)
+        """
+        super().__init__(parent)
+        self.setupUi(self)
+        self.setWindowFlags(Qt.WindowType.Window)
+    
+    def setData(self, name, value):
+        """
+        Public method to set the data to display.
+        
+        @param name name of the header (string)
+        @param value value of the header (string)
+        """
+        self.nameEdit.setText(name)
+        self.valueEdit.setPlainText(value)

eric ide

mercurial