forked from Wobbl/Wobuzz
Added "Track Control" gui.
This commit is contained in:
commit
b158a234fd
6 changed files with 91 additions and 0 deletions
26
wobuzz/ui/track_control.py
Normal file
26
wobuzz/ui/track_control.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtCore import Qt
|
||||
from PyQt6.QtGui import QIcon
|
||||
from PyQt6.QtWidgets import QToolBar, QSlider, QStyle
|
||||
|
||||
|
||||
class TrackControl(QToolBar):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
|
||||
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaSkipBackward)
|
||||
self.previous_button = self.addAction(icon, "Previous")
|
||||
|
||||
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaPlaybackStart)
|
||||
self.toggle_play_button = self.addAction(icon, "Play/Pause")
|
||||
|
||||
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaPlaybackStop)
|
||||
self.stop_button = self.addAction(icon, "Stop")
|
||||
|
||||
icon = QIcon.fromTheme(QIcon.ThemeIcon.MediaSkipForward)
|
||||
self.next_button = self.addAction(icon, "Next")
|
||||
|
||||
self.play_position_slider = QSlider(Qt.Orientation.Horizontal, self)
|
||||
self.addWidget(self.play_position_slider)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue