當前位置: 首頁>>代碼示例>>Python>>正文


Python EmitterGroup.connect方法代碼示例

本文整理匯總了Python中vispy.util.event.EmitterGroup.connect方法的典型用法代碼示例。如果您正苦於以下問題:Python EmitterGroup.connect方法的具體用法?Python EmitterGroup.connect怎麽用?Python EmitterGroup.connect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vispy.util.event.EmitterGroup的用法示例。


在下文中一共展示了EmitterGroup.connect方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_group_disconnect

# 需要導入模塊: from vispy.util.event import EmitterGroup [as 別名]
# 或者: from vispy.util.event.EmitterGroup import connect [as 別名]
    def test_group_disconnect(self):
        """EmitterGroup.disconnect"""
        grp = EmitterGroup(em1=Event)

        assert len(grp.em1.callbacks) == 0, grp.em1.callbacks
        grp.connect(self.record_event)
        assert len(grp.em1.callbacks) == 1
        grp.add(em2=Event)
        assert len(grp.em2.callbacks) == 1
        grp.disconnect()
        assert len(grp.em1.callbacks) == 0
        assert len(grp.em2.callbacks) == 0
開發者ID:LiloD,項目名稱:vispy,代碼行數:14,代碼來源:test_emitter_group.py

示例2: test_group_connect

# 需要導入模塊: from vispy.util.event import EmitterGroup [as 別名]
# 或者: from vispy.util.event.EmitterGroup import connect [as 別名]
 def test_group_connect(self):
     grp = EmitterGroup(source=self, em1=Event)
     grp.connect(self.record_event)
     self.result = None
     ev = grp.em1(test_key=1)
     self.assert_result(
         event=ev,
         source=self,
         sources=[
             self,
             self],
         test_key=1)
開發者ID:LiloD,項目名稱:vispy,代碼行數:14,代碼來源:test_emitter_group.py

示例3: test_group_block

# 需要導入模塊: from vispy.util.event import EmitterGroup [as 別名]
# 或者: from vispy.util.event.EmitterGroup import connect [as 別名]
    def test_group_block(self):
        """EmitterGroup.block_all"""
        grp = EmitterGroup(em1=Event, em2=Event)

        def cb(ev):
            self.result = 1
        grp.em1.connect(self.record_event)
        grp.em2.connect(self.record_event)
        grp.connect(cb)

        self.result = None
        grp.block_all()
        try:
            grp.em1()
            grp.em2()
            grp(type='test_event')
        finally:
            grp.unblock_all()
        assert self.result is None
開發者ID:LiloD,項目名稱:vispy,代碼行數:21,代碼來源:test_emitter_group.py


注:本文中的vispy.util.event.EmitterGroup.connect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。