You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
4.1 KiB
Python
68 lines
4.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'e:\01-Projects\19-Fly\01-AppFlow-gitea\GUIDialog\GUIMeshDialog\LocalGroupInfoWidget.ui'
|
|
#
|
|
# Created by: PyQt5 UI code generator 5.15.10
|
|
#
|
|
# 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_LocalGroupInfoWidget(object):
|
|
def setupUi(self, LocalGroupInfoWidget):
|
|
LocalGroupInfoWidget.setObjectName("LocalGroupInfoWidget")
|
|
LocalGroupInfoWidget.resize(480, 640)
|
|
self.gridLayout_2 = QtWidgets.QGridLayout(LocalGroupInfoWidget)
|
|
self.gridLayout_2.setObjectName("gridLayout_2")
|
|
spacerItem = QtWidgets.QSpacerItem(20, 469, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
self.gridLayout_2.addItem(spacerItem, 1, 0, 1, 1)
|
|
self.groupBox_Boundary = QtWidgets.QGroupBox(LocalGroupInfoWidget)
|
|
self.groupBox_Boundary.setObjectName("groupBox_Boundary")
|
|
self.gridLayout = QtWidgets.QGridLayout(self.groupBox_Boundary)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
self.label_NoLayers = QtWidgets.QLabel(self.groupBox_Boundary)
|
|
self.label_NoLayers.setObjectName("label_NoLayers")
|
|
self.gridLayout.addWidget(self.label_NoLayers, 0, 0, 1, 1)
|
|
spacerItem1 = QtWidgets.QSpacerItem(171, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.gridLayout.addItem(spacerItem1, 0, 1, 1, 1)
|
|
self.lineEdit_NoLayers = QtWidgets.QLineEdit(self.groupBox_Boundary)
|
|
self.lineEdit_NoLayers.setMinimumSize(QtCore.QSize(100, 0))
|
|
self.lineEdit_NoLayers.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
self.lineEdit_NoLayers.setObjectName("lineEdit_NoLayers")
|
|
self.gridLayout.addWidget(self.lineEdit_NoLayers, 0, 2, 1, 1)
|
|
self.label_Expansion = QtWidgets.QLabel(self.groupBox_Boundary)
|
|
self.label_Expansion.setObjectName("label_Expansion")
|
|
self.gridLayout.addWidget(self.label_Expansion, 1, 0, 1, 1)
|
|
spacerItem2 = QtWidgets.QSpacerItem(171, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.gridLayout.addItem(spacerItem2, 1, 1, 1, 1)
|
|
self.lineEdit_Expansion = QtWidgets.QLineEdit(self.groupBox_Boundary)
|
|
self.lineEdit_Expansion.setMinimumSize(QtCore.QSize(100, 0))
|
|
self.lineEdit_Expansion.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
self.lineEdit_Expansion.setObjectName("lineEdit_Expansion")
|
|
self.gridLayout.addWidget(self.lineEdit_Expansion, 1, 2, 1, 1)
|
|
self.label_FirThickness = QtWidgets.QLabel(self.groupBox_Boundary)
|
|
self.label_FirThickness.setObjectName("label_FirThickness")
|
|
self.gridLayout.addWidget(self.label_FirThickness, 2, 0, 1, 1)
|
|
spacerItem3 = QtWidgets.QSpacerItem(171, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.gridLayout.addItem(spacerItem3, 2, 1, 1, 1)
|
|
self.lineEdit_FirThickness = QtWidgets.QLineEdit(self.groupBox_Boundary)
|
|
self.lineEdit_FirThickness.setMinimumSize(QtCore.QSize(100, 0))
|
|
self.lineEdit_FirThickness.setMaximumSize(QtCore.QSize(100, 16777215))
|
|
self.lineEdit_FirThickness.setObjectName("lineEdit_FirThickness")
|
|
self.gridLayout.addWidget(self.lineEdit_FirThickness, 2, 2, 1, 1)
|
|
self.gridLayout_2.addWidget(self.groupBox_Boundary, 0, 0, 1, 1)
|
|
|
|
self.retranslateUi(LocalGroupInfoWidget)
|
|
QtCore.QMetaObject.connectSlotsByName(LocalGroupInfoWidget)
|
|
|
|
def retranslateUi(self, LocalGroupInfoWidget):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
LocalGroupInfoWidget.setWindowTitle(_translate("LocalGroupInfoWidget", "Form"))
|
|
self.groupBox_Boundary.setTitle(_translate("LocalGroupInfoWidget", "Boundary"))
|
|
self.label_NoLayers.setText(_translate("LocalGroupInfoWidget", "NO.of Layers :"))
|
|
self.label_Expansion.setText(_translate("LocalGroupInfoWidget", "Expansion Ratio :"))
|
|
self.label_FirThickness.setText(_translate("LocalGroupInfoWidget", "First Layer of Thickness :"))
|