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,15 +9,11 @@ from .QXWidget import QXWidget
|
|||
|
||||
|
||||
class QXWindow(QXWidget):
|
||||
"""
|
||||
represents top widget which has no parent
|
||||
"""
|
||||
|
||||
|
||||
def __init__(self, save_load_state=False,
|
||||
size_policy=None):
|
||||
|
||||
super().__init__(size_policy=size_policy)
|
||||
def __init__(self, save_load_state=False, **kwargs):
|
||||
"""
|
||||
represents top widget which has no parent
|
||||
"""
|
||||
super().__init__(**kwargs)
|
||||
self._save_load_state = save_load_state
|
||||
|
||||
#QXMainApplication.get_singleton().register_QXWindow(self)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue