hytos / HYTOS / HYTOS / UI / SystemInformation_UI.py @ a307208a
이력 | 보기 | 이력해설 | 다운로드 (3.75 KB)
1 |
# -*- coding: utf-8 -*-
|
---|---|
2 |
|
3 |
# Form implementation generated from reading ui file '.\UI\SystemInformation.ui'
|
4 |
#
|
5 |
# Created by: PyQt5 UI code generator 5.13.0
|
6 |
#
|
7 |
# WARNING! All changes made in this file will be lost!
|
8 |
|
9 |
|
10 |
from PyQt5 import QtCore, QtGui, QtWidgets |
11 |
|
12 |
|
13 |
class Ui_SystemInfoDialog(object): |
14 |
def setupUi(self, SystemInfoDialog): |
15 |
SystemInfoDialog.setObjectName("SystemInfoDialog")
|
16 |
SystemInfoDialog.resize(444, 280) |
17 |
self.gridLayout = QtWidgets.QGridLayout(SystemInfoDialog)
|
18 |
self.gridLayout.setObjectName("gridLayout") |
19 |
self.groupBox = QtWidgets.QGroupBox(SystemInfoDialog)
|
20 |
self.groupBox.setObjectName("groupBox") |
21 |
self.gridLayout_3 = QtWidgets.QGridLayout(self.groupBox) |
22 |
self.gridLayout_3.setObjectName("gridLayout_3") |
23 |
self.gridLayout_2 = QtWidgets.QGridLayout()
|
24 |
self.gridLayout_2.setObjectName("gridLayout_2") |
25 |
self.lineEditComputerName = QtWidgets.QLineEdit(self.groupBox) |
26 |
self.lineEditComputerName.setReadOnly(True) |
27 |
self.lineEditComputerName.setObjectName("lineEditComputerName") |
28 |
self.gridLayout_2.addWidget(self.lineEditComputerName, 1, 1, 1, 1) |
29 |
self.lineEditIP = QtWidgets.QLineEdit(self.groupBox) |
30 |
self.lineEditIP.setReadOnly(True) |
31 |
self.lineEditIP.setObjectName("lineEditIP") |
32 |
self.gridLayout_2.addWidget(self.lineEditIP, 2, 1, 1, 1) |
33 |
self.label_3 = QtWidgets.QLabel(self.groupBox) |
34 |
self.label_3.setObjectName("label_3") |
35 |
self.gridLayout_2.addWidget(self.label_3, 1, 0, 1, 1) |
36 |
self.label = QtWidgets.QLabel(self.groupBox) |
37 |
self.label.setObjectName("label") |
38 |
self.gridLayout_2.addWidget(self.label, 0, 0, 1, 1) |
39 |
self.label_2 = QtWidgets.QLabel(self.groupBox) |
40 |
self.label_2.setObjectName("label_2") |
41 |
self.gridLayout_2.addWidget(self.label_2, 2, 0, 1, 1) |
42 |
self.lineEditUserName = QtWidgets.QLineEdit(self.groupBox) |
43 |
self.lineEditUserName.setObjectName("lineEditUserName") |
44 |
self.gridLayout_2.addWidget(self.lineEditUserName, 0, 1, 1, 1) |
45 |
self.label_4 = QtWidgets.QLabel(self.groupBox) |
46 |
self.label_4.setObjectName("label_4") |
47 |
self.gridLayout_2.addWidget(self.label_4, 3, 0, 1, 1) |
48 |
self.textEditComputerInformation = QtWidgets.QTextEdit(self.groupBox) |
49 |
self.textEditComputerInformation.setReadOnly(True) |
50 |
self.textEditComputerInformation.setObjectName("textEditComputerInformation") |
51 |
self.gridLayout_2.addWidget(self.textEditComputerInformation, 3, 1, 1, 1) |
52 |
self.gridLayout_3.addLayout(self.gridLayout_2, 0, 0, 1, 1) |
53 |
self.gridLayout.addWidget(self.groupBox, 0, 0, 1, 1) |
54 |
self.buttonBox = QtWidgets.QDialogButtonBox(SystemInfoDialog)
|
55 |
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
|
56 |
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
|
57 |
self.buttonBox.setObjectName("buttonBox") |
58 |
self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 1) |
59 |
|
60 |
self.retranslateUi(SystemInfoDialog)
|
61 |
self.buttonBox.accepted.connect(SystemInfoDialog.accept)
|
62 |
self.buttonBox.rejected.connect(SystemInfoDialog.reject)
|
63 |
QtCore.QMetaObject.connectSlotsByName(SystemInfoDialog) |
64 |
|
65 |
def retranslateUi(self, SystemInfoDialog): |
66 |
_translate = QtCore.QCoreApplication.translate |
67 |
SystemInfoDialog.setWindowTitle(_translate("SystemInfoDialog", "System Information")) |
68 |
self.groupBox.setTitle(_translate("SystemInfoDialog", "System Information")) |
69 |
self.label_3.setText(_translate("SystemInfoDialog", "Computer Name : ")) |
70 |
self.label.setText(_translate("SystemInfoDialog", "User Name : ")) |
71 |
self.label_2.setText(_translate("SystemInfoDialog", "IP : ")) |
72 |
self.label_4.setText(_translate("SystemInfoDialog", "Computer Information : ")) |