musicmuster/app/ui/dlg_cart_ui.py
Keith Edmunds 0b91cf7da4 WIP: carts
2022-10-15 17:42:37 +01:00

55 lines
2.6 KiB
Python

# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'app/ui/dlg_Cart.ui'
#
# Created by: PyQt5 UI code generator 5.15.6
#
# 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_DialogCartEdit(object):
def setupUi(self, DialogCartEdit):
DialogCartEdit.setObjectName("DialogCartEdit")
DialogCartEdit.resize(400, 171)
self.buttonBox = QtWidgets.QDialogButtonBox(DialogCartEdit)
self.buttonBox.setGeometry(QtCore.QRect(200, 140, 171, 32))
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.label = QtWidgets.QLabel(DialogCartEdit)
self.label.setGeometry(QtCore.QRect(10, 60, 76, 19))
self.label.setObjectName("label")
self.lineEditName = QtWidgets.QLineEdit(DialogCartEdit)
self.lineEditName.setGeometry(QtCore.QRect(90, 60, 291, 27))
self.lineEditName.setInputMask("")
self.lineEditName.setObjectName("lineEditName")
self.lblPath = QtWidgets.QLabel(DialogCartEdit)
self.lblPath.setGeometry(QtCore.QRect(10, 10, 371, 41))
self.lblPath.setTextFormat(QtCore.Qt.PlainText)
self.lblPath.setWordWrap(True)
self.lblPath.setObjectName("lblPath")
self.btnFile = QtWidgets.QPushButton(DialogCartEdit)
self.btnFile.setGeometry(QtCore.QRect(10, 100, 100, 27))
self.btnFile.setObjectName("btnFile")
self.chkEnabled = QtWidgets.QCheckBox(DialogCartEdit)
self.chkEnabled.setGeometry(QtCore.QRect(280, 100, 104, 25))
self.chkEnabled.setObjectName("chkEnabled")
self.label.setBuddy(self.lineEditName)
self.retranslateUi(DialogCartEdit)
self.buttonBox.accepted.connect(DialogCartEdit.accept) # type: ignore
self.buttonBox.rejected.connect(DialogCartEdit.reject) # type: ignore
QtCore.QMetaObject.connectSlotsByName(DialogCartEdit)
def retranslateUi(self, DialogCartEdit):
_translate = QtCore.QCoreApplication.translate
DialogCartEdit.setWindowTitle(_translate("DialogCartEdit", "Carts"))
self.label.setText(_translate("DialogCartEdit", "&Name:"))
self.lblPath.setText(_translate("DialogCartEdit", "xxx"))
self.btnFile.setText(_translate("DialogCartEdit", "&File"))
self.chkEnabled.setText(_translate("DialogCartEdit", "&Enabled"))