コード例 #1
0
ファイル: Container.py プロジェクト: illume/eyestabs
    def set_event_manager(self, manager):
        """C.set_event_manager (...) -> None

        Sets the event manager of the Container.

        Adds the Container to an event manager and causes its children
        to be added to the same, too.
        """
        BaseWidget.set_event_manager(self, manager)
        for child in self.children:
            child.set_event_manager(manager)
コード例 #2
0
ファイル: Bin.py プロジェクト: BGCX067/eyestabs-svn-to-git
    def set_event_manager (self, manager):
        """B.set_event_manager (...) -> None

        Sets the event manager of the Bin.

        Adds the Bin to an event manager and causes its child to be
        added to the same, too.
        """
        BaseWidget.set_event_manager (self, manager)
        if self.child:
            self.child.set_event_manager (manager)
コード例 #3
0
ファイル: Container.py プロジェクト: majere37/mm-x-ctf
    def set_event_manager(self, manager):
        """C.set_event_manager (...) -> None

        Sets the event manager of the Container.

        Adds the Container to an event manager and causes its children
        to be added to the same, too.
        """
        BaseWidget.set_event_manager(self, manager)
        for child in self.children:
            child.set_event_manager(manager)
コード例 #4
0
ファイル: Bin.py プロジェクト: illume/eyestabs
    def set_event_manager(self, manager):
        """B.set_event_manager (...) -> None

        Sets the event manager of the Bin.

        Adds the Bin to an event manager and causes its child to be
        added to the same, too.
        """
        BaseWidget.set_event_manager(self, manager)
        if self.child:
            self.child.set_event_manager(manager)