-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUi_ApiDialog.py
40 lines (33 loc) · 1.66 KB
/
Ui_ApiDialog.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
40
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ApiDialog.ui'
#
# Created by: PyQt5 UI code generator 5.15.0
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_ApiDialog(object):
def setupUi(self, ApiDialog):
ApiDialog.setObjectName("ApiDialog")
ApiDialog.resize(415, 299)
self.verticalLayout = QtWidgets.QVBoxLayout(ApiDialog)
self.verticalLayout.setObjectName("verticalLayout")
self.apiTree = QtWidgets.QTreeWidget(ApiDialog)
self.apiTree.setObjectName("apiTree")
self.apiTree.headerItem().setText(0, "1")
self.apiTree.header().setVisible(False)
self.verticalLayout.addWidget(self.apiTree)
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem)
self.closeButton = QtWidgets.QPushButton(ApiDialog)
self.closeButton.setObjectName("closeButton")
self.horizontalLayout.addWidget(self.closeButton)
self.verticalLayout.addLayout(self.horizontalLayout)
self.retranslateUi(ApiDialog)
QtCore.QMetaObject.connectSlotsByName(ApiDialog)
def retranslateUi(self, ApiDialog):
_translate = QtCore.QCoreApplication.translate
ApiDialog.setWindowTitle(_translate("ApiDialog", "Dialog"))
self.closeButton.setText(_translate("ApiDialog", "Close"))