forked from IPKM/nmreval
8d148b639b
change to src layout
42 lines
1.8 KiB
Python
42 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'resources/_ui/selection_widget.ui'
|
|
#
|
|
# Created by: PyQt5 UI code generator 5.12.3
|
|
#
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
|
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_SelectionWidget(object):
|
|
def setupUi(self, SelectionWidget):
|
|
SelectionWidget.setObjectName("SelectionWidget")
|
|
SelectionWidget.resize(367, 43)
|
|
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
|
|
sizePolicy.setHorizontalStretch(0)
|
|
sizePolicy.setVerticalStretch(0)
|
|
sizePolicy.setHeightForWidth(SelectionWidget.sizePolicy().hasHeightForWidth())
|
|
SelectionWidget.setSizePolicy(sizePolicy)
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout(SelectionWidget)
|
|
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
|
|
self.horizontalLayout.setSpacing(0)
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.label = QtWidgets.QLabel(SelectionWidget)
|
|
self.label.setObjectName("label")
|
|
self.horizontalLayout.addWidget(self.label)
|
|
self.comboBox = QtWidgets.QComboBox(SelectionWidget)
|
|
self.comboBox.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToMinimumContentsLength)
|
|
self.comboBox.setFrame(True)
|
|
self.comboBox.setObjectName("comboBox")
|
|
self.horizontalLayout.addWidget(self.comboBox)
|
|
|
|
self.retranslateUi(SelectionWidget)
|
|
QtCore.QMetaObject.connectSlotsByName(SelectionWidget)
|
|
|
|
def retranslateUi(self, SelectionWidget):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
SelectionWidget.setWindowTitle(_translate("SelectionWidget", "Form"))
|
|
self.label.setText(_translate("SelectionWidget", "TextLabel"))
|