forked from korcankaraokcu/PINCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogFileWidget.py
40 lines (34 loc) · 1.78 KB
/
LogFileWidget.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'LogFileWidget.ui'
#
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(582, 558)
self.gridLayout = QtWidgets.QGridLayout(Form)
self.gridLayout.setObjectName("gridLayout")
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
self.label_FilePath = QtWidgets.QLabel(Form)
self.label_FilePath.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse|QtCore.Qt.TextSelectableByMouse)
self.label_FilePath.setObjectName("label_FilePath")
self.horizontalLayout.addWidget(self.label_FilePath)
self.label_LoggingStatus = QtWidgets.QLabel(Form)
self.label_LoggingStatus.setObjectName("label_LoggingStatus")
self.horizontalLayout.addWidget(self.label_LoggingStatus)
self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
self.textBrowser_LogContent = QtWidgets.QTextBrowser(Form)
self.textBrowser_LogContent.setLineWrapMode(QtWidgets.QTextEdit.NoWrap)
self.textBrowser_LogContent.setObjectName("textBrowser_LogContent")
self.gridLayout.addWidget(self.textBrowser_LogContent, 1, 0, 1, 1)
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.label_FilePath.setText(_translate("Form", "TextLabel"))
self.label_LoggingStatus.setText(_translate("Form", "TextLabel"))