53 lines
2.4 KiB
Python
53 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'label_dock.ui'
|
|
#
|
|
# Created by: PyQt5 UI code generator 5.15.7
|
|
#
|
|
# 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_Form(object):
|
|
def setupUi(self, Form):
|
|
Form.setObjectName("Form")
|
|
Form.resize(250, 302)
|
|
self.verticalLayout = QtWidgets.QVBoxLayout(Form)
|
|
self.verticalLayout.setContentsMargins(2, 2, 2, 2)
|
|
self.verticalLayout.setSpacing(0)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.widget = QtWidgets.QWidget(Form)
|
|
self.widget.setObjectName("widget")
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout(self.widget)
|
|
self.horizontalLayout.setContentsMargins(-1, -1, -1, 0)
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.checkBox_visible = QtWidgets.QCheckBox(self.widget)
|
|
self.checkBox_visible.setObjectName("checkBox_visible")
|
|
self.horizontalLayout.addWidget(self.checkBox_visible)
|
|
self.comboBox_group_select = QtWidgets.QComboBox(self.widget)
|
|
self.comboBox_group_select.setObjectName("comboBox_group_select")
|
|
self.horizontalLayout.addWidget(self.comboBox_group_select)
|
|
self.button_prev_group = QtWidgets.QPushButton(self.widget)
|
|
self.button_prev_group.setObjectName("button_prev_group")
|
|
self.horizontalLayout.addWidget(self.button_prev_group)
|
|
self.button_next_group = QtWidgets.QPushButton(self.widget)
|
|
self.button_next_group.setObjectName("button_next_group")
|
|
self.horizontalLayout.addWidget(self.button_next_group)
|
|
self.verticalLayout.addWidget(self.widget)
|
|
self.listWidget = QtWidgets.QListWidget(Form)
|
|
self.listWidget.setObjectName("listWidget")
|
|
self.verticalLayout.addWidget(self.listWidget)
|
|
|
|
self.retranslateUi(Form)
|
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
|
|
|
def retranslateUi(self, Form):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
Form.setWindowTitle(_translate("Form", "Form"))
|
|
self.checkBox_visible.setText(_translate("Form", "Visible"))
|
|
self.button_prev_group.setText(_translate("Form", "Previous"))
|
|
self.button_next_group.setText(_translate("Form", "Next"))
|