35 lines
1.6 KiB
Python
35 lines
1.6 KiB
Python
# Form implementation generated from reading ui file 'app/ui/dlg_SelectPlaylist.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.5.0
|
|
#
|
|
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
|
|
# run again. Do not edit this file unless you know what you are doing.
|
|
|
|
|
|
from PyQt6 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_dlgSelectPlaylist(object):
|
|
def setupUi(self, dlgSelectPlaylist):
|
|
dlgSelectPlaylist.setObjectName("dlgSelectPlaylist")
|
|
dlgSelectPlaylist.resize(276, 150)
|
|
self.verticalLayout = QtWidgets.QVBoxLayout(dlgSelectPlaylist)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.lstPlaylists = QtWidgets.QListWidget(parent=dlgSelectPlaylist)
|
|
self.lstPlaylists.setObjectName("lstPlaylists")
|
|
self.verticalLayout.addWidget(self.lstPlaylists)
|
|
self.buttonBox = QtWidgets.QDialogButtonBox(parent=dlgSelectPlaylist)
|
|
self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
|
|
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
|
|
self.buttonBox.setObjectName("buttonBox")
|
|
self.verticalLayout.addWidget(self.buttonBox)
|
|
|
|
self.retranslateUi(dlgSelectPlaylist)
|
|
self.buttonBox.accepted.connect(dlgSelectPlaylist.accept) # type: ignore
|
|
self.buttonBox.rejected.connect(dlgSelectPlaylist.reject) # type: ignore
|
|
QtCore.QMetaObject.connectSlotsByName(dlgSelectPlaylist)
|
|
|
|
def retranslateUi(self, dlgSelectPlaylist):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
dlgSelectPlaylist.setWindowTitle(_translate("dlgSelectPlaylist", "Dialog"))
|