示例#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)