20 lines
599 B
Python
20 lines
599 B
Python
from PySide6.QtCore import Qt
|
|
from PySide6.QtGui import QFont
|
|
from PySide6.QtWidgets import QWidget, QLabel, QVBoxLayout
|
|
|
|
|
|
class EqualizerScreen(QWidget):
|
|
def __init__(self):
|
|
super().__init__()
|
|
root = QVBoxLayout(self)
|
|
root.setContentsMargins(0, 0, 0, 0)
|
|
root.setSpacing(0)
|
|
|
|
root.addStretch(1)
|
|
label = QLabel("Эквалайзер\n(в разработке)")
|
|
label.setObjectName("EqPlaceholder")
|
|
label.setAlignment(Qt.AlignCenter)
|
|
label.setFont(QFont("", 18, 700))
|
|
root.addWidget(label)
|
|
root.addStretch(1)
|