mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-08-20 13:33:25 -07:00
qt refactoring
This commit is contained in:
parent
9afde06f50
commit
9ef7be4f3a
59 changed files with 632 additions and 890 deletions
9
xlib/qt/widgets/QXWidgetVBox.py
Normal file
9
xlib/qt/widgets/QXWidgetVBox.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from PyQt6.QtGui import *
|
||||
from PyQt6.QtWidgets import *
|
||||
|
||||
from .QXWidget import QXWidget
|
||||
from .QXVBoxLayout import QXVBoxLayout
|
||||
|
||||
class QXWidgetVBox(QXWidget):
|
||||
def __init__(self, widgets=None, contents_margins=0, spacing=0, **kwargs):
|
||||
super().__init__(layout=QXVBoxLayout(widgets=widgets, contents_margins=contents_margins, spacing=spacing), **kwargs)
|
Loading…
Add table
Add a link
Reference in a new issue