forked from Wobbl/Wobuzz
Added "Track Control" gui.
This commit is contained in:
commit
b158a234fd
6 changed files with 91 additions and 0 deletions
17
wobuzz/ui/main_container.py
Normal file
17
wobuzz/ui/main_container.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtWidgets import QWidget, QGridLayout
|
||||
from ui.track_control import TrackControl
|
||||
|
||||
|
||||
class MainContainer(QWidget):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
|
||||
self.layout = QGridLayout()
|
||||
|
||||
self.track_control = TrackControl(self)
|
||||
self.layout.addWidget(self.track_control)
|
||||
|
||||
self.setLayout(self.layout)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue