pastabowl

mediaui

Nov 5th, 2025
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.45 KB | Source Code | 0 0
  1.  
  2. from PyQt6.QtWidgets import QWidget, QGridLayout
  3.  
  4.  
  5. class MediaWindow(QWidget):
  6.     def __init__(self):
  7.         super().__init__(None)
  8.  
  9.         self.setWindowTitle("Lyricist")
  10.         self.setMinimumSize(300, 400)
  11.  
  12.         self.setLayout(QGridLayout(self))
  13.  
  14.         self.layout().setColumnMinimumWidth(0, 220)
  15.         self.layout().setRowMinimumHeight(0, 220)
  16.  
  17.  
  18. class MetadataPanel(QWidget):
  19.     def __init__(self):
  20.         super().__init__()
  21.  
Advertisement
Add Comment
Please, Sign In to add comment