mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-08-14 10:47:00 -07:00
qt refactoring
This commit is contained in:
parent
9afde06f50
commit
9ef7be4f3a
59 changed files with 632 additions and 890 deletions
13
xlib/qt/widgets/QXPopupWindow.py
Normal file
13
xlib/qt/widgets/QXPopupWindow.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from PyQt6.QtCore import *
|
||||
from PyQt6.QtGui import *
|
||||
from PyQt6.QtWidgets import *
|
||||
from .QXWindow import QXWindow
|
||||
|
||||
class QXPopupWindow(QXWindow):
|
||||
def __init__(self, **kwargs):
|
||||
"""
|
||||
represents top widget which has no parent
|
||||
"""
|
||||
super().__init__(**kwargs)
|
||||
self.setWindowFlags(Qt.WindowType.Popup)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue