from PyQt6.QtCore import * from PyQt6.QtGui import * from PyQt6.QtWidgets import * from .QXWindow import QXWindow class QXSplashWindow(QXWindow): def __init__(self, **kwargs): """ represents top widget which has no parent """ super().__init__(**kwargs) self.setWindowFlags(Qt.WindowType.SplashScreen)