forked from Wobbl/Wobuzz
Added library template.
This commit is contained in:
parent
8811ba7ab4
commit
2f0c01601d
3 changed files with 44 additions and 3 deletions
20
wobuzz/ui/library.py
Normal file
20
wobuzz/ui/library.py
Normal 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")
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue