10 lines
267 B
Python
10 lines
267 B
Python
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)
|