forked from IPKM/nmreval
BUGFIX: VFT;
change to src layout
This commit is contained in:
41
src/gui_qt/_py/selection_widget.py
Normal file
41
src/gui_qt/_py/selection_widget.py
Normal file
@ -0,0 +1,41 @@
|
||||
# -*- 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"))
|
Reference in New Issue
Block a user