move files into a package structure
This commit is contained in:
9
raven/ui/hbox.py
Normal file
9
raven/ui/hbox.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from PySide6.QtWidgets import QWidget, QHBoxLayout
|
||||
|
||||
|
||||
class HBox(QWidget):
|
||||
def __init__(self, *widgets: QWidget):
|
||||
super(HBox, self).__init__()
|
||||
self.layout = QHBoxLayout(self)
|
||||
for widget in widgets:
|
||||
self.layout.addWidget(widget)
|
||||
Reference in New Issue
Block a user