move files into a package structure

This commit is contained in:
2022-02-06 15:55:27 +01:00
parent 111c11d5d4
commit 8bb4ca0563
11 changed files with 8 additions and 7 deletions

9
raven/ui/vbox.py Normal file
View File

@@ -0,0 +1,9 @@
from PySide6.QtWidgets import QWidget, QVBoxLayout
class VBox(QWidget):
def __init__(self, *widgets: QWidget):
super(VBox, self).__init__()
self.layout = QVBoxLayout(self)
for widget in widgets:
self.layout.addWidget(widget)