35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
# Form implementation generated from reading ui file 'app/ui/main_window_playlist.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.8.1
|
|
#
|
|
# 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_PlaylistSection(object):
|
|
def setupUi(self, PlaylistSection):
|
|
PlaylistSection.setObjectName("PlaylistSection")
|
|
PlaylistSection.resize(1249, 499)
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout(PlaylistSection)
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.splitter = QtWidgets.QSplitter(parent=PlaylistSection)
|
|
self.splitter.setOrientation(QtCore.Qt.Orientation.Vertical)
|
|
self.splitter.setObjectName("splitter")
|
|
self.tabPlaylist = QtWidgets.QTabWidget(parent=self.splitter)
|
|
self.tabPlaylist.setDocumentMode(False)
|
|
self.tabPlaylist.setTabsClosable(True)
|
|
self.tabPlaylist.setMovable(True)
|
|
self.tabPlaylist.setObjectName("tabPlaylist")
|
|
self.horizontalLayout.addWidget(self.splitter)
|
|
|
|
self.retranslateUi(PlaylistSection)
|
|
self.tabPlaylist.setCurrentIndex(-1)
|
|
QtCore.QMetaObject.connectSlotsByName(PlaylistSection)
|
|
|
|
def retranslateUi(self, PlaylistSection):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
PlaylistSection.setWindowTitle(_translate("PlaylistSection", "Form"))
|