Added library template.

This commit is contained in:
The Wobbler 2024-12-22 20:52:49 +01:00
parent 8811ba7ab4
commit 2f0c01601d
3 changed files with 44 additions and 3 deletions

20
wobuzz/ui/library.py Normal file
View file

@ -0,0 +1,20 @@
#!/usr/bin/python3
from PyQt6.QtWidgets import QToolBox, QLabel
class Library(QToolBox):
def __init__(self, parent=None):
super().__init__(parent)
label = QLabel()
self.addItem(label, "Playlists")
label = QLabel()
self.addItem(label, "Genres")
label = QLabel()
self.addItem(label, "Albums")
label = QLabel()
self.addItem(label, "Artists")
label = QLabel()
self.addItem(label, "Tracks")