コード例 #1
0
    def show(self):
        global _instance
        if _instance:
            _instance.hide()
        _instance = self

        self._parent.block(True, self)
        InnerWindow.show(self)
        self.focus_set(True)
コード例 #2
0
    def show(self):
        global _instance
        if _instance:
            _instance.hide()
        _instance = self

        self._parent.block(True, self)
        InnerWindow.show(self)
        self.focus_set(True)
コード例 #3
0
ファイル: floater.py プロジェクト: Limsik/e17
    def show(self):
        global _instance
        if _instance:
            _instance.hide()
        _instance = self

        # only Wizard InnerWindows are to be on top of the window blocker
        self._parent.block(True, self)
        InnerWindow.show(self)
        self.focus_set(True)
コード例 #4
0
ファイル: floater.py プロジェクト: yihan5523/e17
    def show(self):
        global _instance
        if _instance:
            _instance.hide()
        _instance = self

        # only Wizard InnerWindows are to be on top of the window blocker
        self._parent.block(True, self)
        InnerWindow.show(self)
        self.focus_set(True)
コード例 #5
0
ファイル: popups.py プロジェクト: Limsik/e17
 def open(self):
     self._parent.block(True)
     InnerWindow.show(self)
コード例 #6
0
 def open(self):
     self._parent.block(True)
     InnerWindow.show(self)