2024-01-09 23:55:39 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Form implementation generated from reading ui file 'time_range.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_Dialog(object):
|
|
|
|
def setupUi(self, Dialog):
|
|
|
|
Dialog.setObjectName("Dialog")
|
|
|
|
Dialog.resize(280, 200)
|
|
|
|
Dialog.setMinimumSize(QtCore.QSize(280, 200))
|
|
|
|
Dialog.setMaximumSize(QtCore.QSize(280, 200))
|
|
|
|
self.verticalLayout = QtWidgets.QVBoxLayout(Dialog)
|
|
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
|
|
self.label = QtWidgets.QLabel(Dialog)
|
|
|
|
self.label.setLayoutDirection(QtCore.Qt.LeftToRight)
|
|
|
|
self.label.setAlignment(QtCore.Qt.AlignCenter)
|
|
|
|
self.label.setObjectName("label")
|
|
|
|
self.verticalLayout.addWidget(self.label)
|
|
|
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
|
|
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
|
|
|
self.label_2 = QtWidgets.QLabel(Dialog)
|
|
|
|
self.label_2.setObjectName("label_2")
|
|
|
|
self.horizontalLayout_2.addWidget(self.label_2)
|
|
|
|
self.toolButton_start_time = QtWidgets.QToolButton(Dialog)
|
|
|
|
self.toolButton_start_time.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
|
|
|
|
self.toolButton_start_time.setArrowType(QtCore.Qt.DownArrow)
|
|
|
|
self.toolButton_start_time.setObjectName("toolButton_start_time")
|
|
|
|
self.horizontalLayout_2.addWidget(self.toolButton_start_time)
|
|
|
|
self.verticalLayout.addLayout(self.horizontalLayout_2)
|
|
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
|
|
self.label_3 = QtWidgets.QLabel(Dialog)
|
|
|
|
self.label_3.setObjectName("label_3")
|
|
|
|
self.horizontalLayout.addWidget(self.label_3)
|
|
|
|
self.toolButton_end_time = QtWidgets.QToolButton(Dialog)
|
|
|
|
self.toolButton_end_time.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
|
|
|
|
self.toolButton_end_time.setArrowType(QtCore.Qt.DownArrow)
|
|
|
|
self.toolButton_end_time.setObjectName("toolButton_end_time")
|
|
|
|
self.horizontalLayout.addWidget(self.toolButton_end_time)
|
|
|
|
self.verticalLayout.addLayout(self.horizontalLayout)
|
2024-01-10 20:03:04 +08:00
|
|
|
spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
|
|
self.verticalLayout.addItem(spacerItem)
|
2024-01-09 23:55:39 +08:00
|
|
|
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
|
|
|
|
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
|
|
|
|
self.btn_ok = QtWidgets.QPushButton(Dialog)
|
|
|
|
self.btn_ok.setObjectName("btn_ok")
|
|
|
|
self.horizontalLayout_3.addWidget(self.btn_ok)
|
|
|
|
self.btn_cancel = QtWidgets.QPushButton(Dialog)
|
|
|
|
self.btn_cancel.setObjectName("btn_cancel")
|
|
|
|
self.horizontalLayout_3.addWidget(self.btn_cancel)
|
|
|
|
self.verticalLayout.addLayout(self.horizontalLayout_3)
|
|
|
|
|
|
|
|
self.retranslateUi(Dialog)
|
|
|
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
|
|
|
|
|
def retranslateUi(self, Dialog):
|
|
|
|
_translate = QtCore.QCoreApplication.translate
|
|
|
|
Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
|
|
|
|
self.label.setText(_translate("Dialog", "自定义时间"))
|
|
|
|
self.label_2.setText(_translate("Dialog", "开始日期"))
|
|
|
|
self.toolButton_start_time.setText(_translate("Dialog", "请选择时间"))
|
|
|
|
self.label_3.setText(_translate("Dialog", "结束日期"))
|
|
|
|
self.toolButton_end_time.setText(_translate("Dialog", "请选择时间"))
|
|
|
|
self.btn_ok.setText(_translate("Dialog", "确定"))
|
|
|
|
self.btn_cancel.setText(_translate("Dialog", "取消"))
|